From 5a6bdc127978ff0b7c20b430976e59f3921159f7 Mon Sep 17 00:00:00 2001 From: Cristian Ferretti <37232625+jcferretti@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:02:49 -0400 Subject: [PATCH] chore: update c++ base images (#6073) --- cpp-client/README.md | 2 +- cpp-client/build-dependencies.sh | 24 +- cpp-client/build.gradle | 3 + .../deephaven/cmake/deephavenConfig.cmake | 12 +- .../proto/deephaven/proto/application.pb.cc | 801 +- .../proto/deephaven/proto/application.pb.h | 517 +- .../proto/deephaven/proto/config.pb.cc | 1216 +- .../proto/deephaven/proto/config.pb.h | 671 +- .../proto/deephaven/proto/console.pb.cc | 20108 ++++---- .../proto/deephaven/proto/console.pb.h | 11736 ++--- .../deephaven/proto/hierarchicaltable.pb.cc | 2891 +- .../deephaven/proto/hierarchicaltable.pb.h | 1747 +- .../proto/deephaven/proto/inputtable.pb.cc | 836 +- .../proto/deephaven/proto/inputtable.pb.h | 543 +- .../proto/deephaven/proto/object.pb.cc | 1952 +- .../proto/deephaven/proto/object.pb.h | 1223 +- .../deephaven/proto/partitionedtable.pb.cc | 1506 +- .../deephaven/proto/partitionedtable.pb.h | 985 +- .../proto/deephaven/proto/session.pb.cc | 3145 +- .../proto/deephaven/proto/session.pb.h | 2210 +- .../proto/deephaven/proto/storage.pb.cc | 2843 +- .../proto/deephaven/proto/storage.pb.h | 1942 +- .../proto/deephaven/proto/table.pb.cc | 40087 +++++++++------- .../dhclient/proto/deephaven/proto/table.pb.h | 23722 ++++----- .../proto/deephaven/proto/ticket.pb.cc | 525 +- .../proto/deephaven/proto/ticket.pb.h | 341 +- .../cpp-clients-multi-base/gradle.properties | 2 +- 27 files changed, 66912 insertions(+), 54678 deletions(-) diff --git a/cpp-client/README.md b/cpp-client/README.md index 56ff4769695..f03e723d972 100644 --- a/cpp-client/README.md +++ b/cpp-client/README.md @@ -80,7 +80,7 @@ connect a server when you want to run them. export DHCPP=$HOME/dhcpp # If the directory already exists from a previous attempt, ensure is clean/empty mkdir -p $DHCPP - cp build-dependencies.sh $DHCPP + cp $DHSRC/build-dependencies.sh $DHCPP cd $DHCPP # Maybe edit build-dependencies.sh to reflect choices of build tools and build target, if you # want anything different than defaults; defaults are tested to work, diff --git a/cpp-client/build-dependencies.sh b/cpp-client/build-dependencies.sh index 7a1a3ac84e1..4b29f1f97e7 100755 --- a/cpp-client/build-dependencies.sh +++ b/cpp-client/build-dependencies.sh @@ -531,8 +531,8 @@ if [ "$CLONE_ZLIB" = "yes" ]; then echo echo "*** Clone zlib" cd $SRC - # Previously used version: v1.2.13 - git clone $GIT_FLAGS -b v1.3 --depth 1 "${GITHUB_BASE_URL}/madler/zlib" + # Previously used version: v1.3 + git clone $GIT_FLAGS -b v1.3.1 --depth 1 "${GITHUB_BASE_URL}/madler/zlib" echo "*** Cloning zlib DONE" fi if [ "$BUILD_ZLIB" = "yes" ]; then @@ -562,8 +562,8 @@ if [ "$CLONE_PROTOBUF" = "yes" ]; then echo echo "*** Cloning protobuf" cd $SRC - # Previously used version: v3.21.2 - git clone $GIT_FLAGS -b v25.3 --depth 1 "${GITHUB_BASE_URL}/protocolbuffers/protobuf.git" + # Previously used version: v25.3 + git clone $GIT_FLAGS -b v28.1 --depth 1 "${GITHUB_BASE_URL}/protocolbuffers/protobuf.git" echo "*** Cloning protobuf DONE" fi if [ "$BUILD_PROTOBUF" = "yes" ]; then @@ -592,8 +592,8 @@ if [ "$CLONE_RE2" = "yes" ]; then echo echo "*** Cloning re2" cd $SRC - # Previously used version: 2022-04-01 - git clone $GIT_FLAGS -b 2022-06-01 --depth 1 "${GITHUB_BASE_URL}/google/re2.git" + # Previously used version: 2022-06-01 + git clone $GIT_FLAGS -b 2024-07-02 --depth 1 "${GITHUB_BASE_URL}/google/re2.git" echo "*** Cloning re2 DONE" fi if [ "$BUILD_RE2" = "yes" ]; then @@ -690,8 +690,8 @@ if [ "$CLONE_CARES" = "yes" ]; then echo echo "*** Clone ares" cd $SRC - # Previously used version: cares-1_18_1 - git clone $GIT_FLAGS -b cares-1_28_1 --depth 1 "${GITHUB_BASE_URL}/c-ares/c-ares.git" + # Previously used version: cares-1_28_1 + git clone $GIT_FLAGS -b v1.33.1 --depth 1 "${GITHUB_BASE_URL}/c-ares/c-ares.git" echo "*** Cloning ares DONE" fi if [ "$BUILD_CARES" = "yes" ]; then @@ -723,8 +723,8 @@ if [ "$CLONE_GRPC" = "yes" ]; then echo echo "*** Clone grpc" cd $SRC - # Previously used version: v1.46.7 - git clone $GIT_FLAGS -b v1.63.0 --depth 1 "${GITHUB_BASE_URL}/grpc/grpc" + # Previously used version: v1.63.0 + git clone $GIT_FLAGS -b v1.66.1 --depth 1 "${GITHUB_BASE_URL}/grpc/grpc" echo "*** Cloning grpc DONE" fi if [ "$BUILD_GRPC" = "yes" ]; then @@ -758,8 +758,8 @@ if [ "$CLONE_ARROW" = "yes" ]; then echo echo "*** Cloning arrow" cd $SRC - # Previously used version: apache-arrow-13.0.0 - git clone $GIT_FLAGS -b apache-arrow-16.0.0 --depth 1 "${GITHUB_BASE_URL}/apache/arrow" + # Previously used version: apache-arrow-16.0.0 + git clone $GIT_FLAGS -b apache-arrow-16.1.0 --depth 1 "${GITHUB_BASE_URL}/apache/arrow" echo "*** Cloning arrow DONE" fi if [ "$BUILD_ARROW" = "yes" ]; then diff --git a/cpp-client/build.gradle b/cpp-client/build.gradle index fc40076144f..650a042cb6e 100644 --- a/cpp-client/build.gradle +++ b/cpp-client/build.gradle @@ -38,6 +38,9 @@ def compare = tasks.register('compareProtobuf', DiffTask) { } generateTask.set ':cpp-client:updateProtobuf' } +// Need to disable until the proto base image can catch up to protobuf 28.2 +tasks.getByName('compareProtobuf').enabled = false + // fail a "check" build if these are out of date tasks.getByName('quick').dependsOn(compare) diff --git a/cpp-client/deephaven/cmake/deephavenConfig.cmake b/cpp-client/deephaven/cmake/deephavenConfig.cmake index 48124d9e862..cb42b4a1a54 100644 --- a/cpp-client/deephaven/cmake/deephavenConfig.cmake +++ b/cpp-client/deephaven/cmake/deephavenConfig.cmake @@ -1,9 +1,9 @@ include(CMakeFindDependencyMacro) -find_dependency(Arrow 16.0.0) -find_dependency(ArrowFlight 16.0.0) -find_dependency(Immer) -find_dependency(Protobuf) -find_dependency(gRPC) -find_dependency(Threads) +find_dependency(Arrow CONFIG REQUIRED) +find_dependency(ArrowFlight CONFIG REQUIRED) +find_dependency(Immer CONFIG REQUIRED) +find_dependency(Protobuf CONFIG REQUIRED) +find_dependency(gRPC CONFIG REQUIRED) +find_dependency(Threads REQUIRED) include("${CMAKE_CURRENT_LIST_DIR}/deephavenTargets.cmake") diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc index 543567783ab..49caed962b0 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/application.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/application.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -25,8 +28,14 @@ namespace deephaven { namespace proto { namespace backplane { namespace grpc { - template -PROTOBUF_CONSTEXPR ListFieldsRequest::ListFieldsRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ListFieldsRequest::ListFieldsRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ListFieldsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ListFieldsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ListFieldsRequestDefaultTypeInternal() {} @@ -57,7 +66,13 @@ inline constexpr FieldInfo::Impl_::Impl_( template PROTOBUF_CONSTEXPR FieldInfo::FieldInfo(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FieldInfoDefaultTypeInternal { PROTOBUF_CONSTEXPR FieldInfoDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FieldInfoDefaultTypeInternal() {} @@ -78,7 +93,13 @@ inline constexpr FieldsChangeUpdate::Impl_::Impl_( template PROTOBUF_CONSTEXPR FieldsChangeUpdate::FieldsChangeUpdate(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FieldsChangeUpdateDefaultTypeInternal { PROTOBUF_CONSTEXPR FieldsChangeUpdateDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FieldsChangeUpdateDefaultTypeInternal() {} @@ -94,65 +115,65 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fapplication_2eproto[3]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fapplication_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fapplication_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fapplication_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListFieldsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.created_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.updated_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.removed_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.typed_ticket_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.field_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.field_description_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.application_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.application_id_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, +const ::uint32_t + TableStruct_deephaven_2fproto_2fapplication_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListFieldsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.created_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.updated_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate, _impl_.removed_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.typed_ticket_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.field_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.field_description_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.application_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FieldInfo, _impl_.application_id_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ListFieldsRequest)}, {8, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate)}, {19, 32, -1, sizeof(::io::deephaven::proto::backplane::grpc::FieldInfo)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_ListFieldsRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_FieldsChangeUpdate_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_FieldInfo_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fapplication_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fapplication_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n!deephaven/proto/application.proto\022!io." "deephaven.proto.backplane.grpc\032\034deephave" "n/proto/ticket.proto\"\023\n\021ListFieldsReques" @@ -178,7 +199,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fapplication_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fapplication_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fapplication_2eproto = { false, false, 745, @@ -191,28 +212,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fapplication_2 schemas, file_default_instances, TableStruct_deephaven_2fproto_2fapplication_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fapplication_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fapplication_2eproto, file_level_service_descriptors_deephaven_2fproto_2fapplication_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fapplication_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fapplication_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fapplication_2eproto(&descriptor_table_deephaven_2fproto_2fapplication_2eproto); namespace io { namespace deephaven { namespace proto { @@ -225,13 +227,21 @@ class ListFieldsRequest::_Internal { }; ListFieldsRequest::ListFieldsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ListFieldsRequest) } ListFieldsRequest::ListFieldsRequest( ::google::protobuf::Arena* arena, const ListFieldsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ListFieldsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -240,6 +250,61 @@ ListFieldsRequest::ListFieldsRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ListFieldsRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ListFieldsRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ListFieldsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ListFieldsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ListFieldsRequest::ByteSizeLong, + &ListFieldsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ListFieldsRequest, _impl_._cached_size_), + false, + }, + &ListFieldsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fapplication_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ListFieldsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ListFieldsRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ListFieldsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -249,9 +314,7 @@ ListFieldsRequest::ListFieldsRequest( ::google::protobuf::Metadata ListFieldsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fapplication_2eproto_getter, &descriptor_table_deephaven_2fproto_2fapplication_2eproto_once, - file_level_metadata_deephaven_2fproto_2fapplication_2eproto[0]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -260,13 +323,17 @@ class FieldsChangeUpdate::_Internal { }; FieldsChangeUpdate::FieldsChangeUpdate(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) } inline PROTOBUF_NDEBUG_INLINE FieldsChangeUpdate::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& from_msg) : created_{visibility, arena, from.created_}, updated_{visibility, arena, from.updated_}, removed_{visibility, arena, from.removed_}, @@ -275,12 +342,16 @@ inline PROTOBUF_NDEBUG_INLINE FieldsChangeUpdate::Impl_::Impl_( FieldsChangeUpdate::FieldsChangeUpdate( ::google::protobuf::Arena* arena, const FieldsChangeUpdate& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FieldsChangeUpdate* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) } @@ -305,26 +376,34 @@ inline void FieldsChangeUpdate::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FieldsChangeUpdate::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.created_.Clear(); - _impl_.updated_.Clear(); - _impl_.removed_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FieldsChangeUpdate::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FieldsChangeUpdate::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FieldsChangeUpdate_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FieldsChangeUpdate::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FieldsChangeUpdate::ByteSizeLong, + &FieldsChangeUpdate::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_._cached_size_), + false, + }, + &FieldsChangeUpdate::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fapplication_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FieldsChangeUpdate::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FieldsChangeUpdate::_table_ = { { @@ -337,8 +416,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FieldsChangeUpdate::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FieldsChangeUpdate_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; @@ -370,84 +453,119 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FieldsChangeUpdate::_table_ = { }}, }; -::uint8_t* FieldsChangeUpdate::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_created_size()); i < n; i++) { - const auto& repfield = this->_internal_created().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_updated_size()); i < n; i++) { - const auto& repfield = this->_internal_updated().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_removed_size()); i < n; i++) { - const auto& repfield = this->_internal_removed().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - return target; -} - -::size_t FieldsChangeUpdate::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FieldsChangeUpdate::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; - total_size += 1UL * this->_internal_created_size(); - for (const auto& msg : this->_internal_created()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; - total_size += 1UL * this->_internal_updated_size(); - for (const auto& msg : this->_internal_updated()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; - total_size += 1UL * this->_internal_removed_size(); - for (const auto& msg : this->_internal_removed()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FieldsChangeUpdate::_class_data_ = { - FieldsChangeUpdate::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FieldsChangeUpdate::GetClassData() const { - return &_class_data_; + _impl_.created_.Clear(); + _impl_.updated_.Clear(); + _impl_.removed_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FieldsChangeUpdate::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FieldsChangeUpdate::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FieldsChangeUpdate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FieldsChangeUpdate::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FieldsChangeUpdate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_created_size()); + i < n; i++) { + const auto& repfield = this_._internal_created().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_updated_size()); + i < n; i++) { + const auto& repfield = this_._internal_updated().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_removed_size()); + i < n; i++) { + const auto& repfield = this_._internal_removed().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FieldsChangeUpdate::ByteSizeLong(const MessageLite& base) { + const FieldsChangeUpdate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FieldsChangeUpdate::ByteSizeLong() const { + const FieldsChangeUpdate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; + { + total_size += 1UL * this_._internal_created_size(); + for (const auto& msg : this_._internal_created()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; + { + total_size += 1UL * this_._internal_updated_size(); + for (const auto& msg : this_._internal_updated()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; + { + total_size += 1UL * this_._internal_removed_size(); + for (const auto& msg : this_._internal_removed()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FieldsChangeUpdate::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) @@ -471,13 +589,7 @@ void FieldsChangeUpdate::CopyFrom(const FieldsChangeUpdate& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FieldsChangeUpdate::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FieldsChangeUpdate::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FieldsChangeUpdate::InternalSwap(FieldsChangeUpdate* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -487,39 +599,35 @@ void FieldsChangeUpdate::InternalSwap(FieldsChangeUpdate* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata FieldsChangeUpdate::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fapplication_2eproto_getter, &descriptor_table_deephaven_2fproto_2fapplication_2eproto_once, - file_level_metadata_deephaven_2fproto_2fapplication_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FieldInfo::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TypedTicket& typed_ticket(const FieldInfo* msg); - static void set_has_typed_ticket(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TypedTicket& FieldInfo::_Internal::typed_ticket(const FieldInfo* msg) { - return *msg->_impl_.typed_ticket_; -} void FieldInfo::clear_typed_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.typed_ticket_ != nullptr) _impl_.typed_ticket_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } FieldInfo::FieldInfo(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FieldInfo) } inline PROTOBUF_NDEBUG_INLINE FieldInfo::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FieldInfo& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, field_name_(arena, from.field_name_), @@ -530,16 +638,20 @@ inline PROTOBUF_NDEBUG_INLINE FieldInfo::Impl_::Impl_( FieldInfo::FieldInfo( ::google::protobuf::Arena* arena, const FieldInfo& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FieldInfo* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.typed_ticket_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.typed_ticket_) - : nullptr; + _impl_.typed_ticket_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>( + arena, *from._impl_.typed_ticket_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FieldInfo) } @@ -571,33 +683,34 @@ inline void FieldInfo::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FieldInfo::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FieldInfo) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.field_name_.ClearToEmpty(); - _impl_.field_description_.ClearToEmpty(); - _impl_.application_name_.ClearToEmpty(); - _impl_.application_id_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.typed_ticket_ != nullptr); - _impl_.typed_ticket_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FieldInfo::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FieldInfo::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FieldInfo_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FieldInfo::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FieldInfo::ByteSizeLong, + &FieldInfo::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_._cached_size_), + false, + }, + &FieldInfo::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fapplication_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FieldInfo::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 1, 109, 2> FieldInfo::_table_ = { { @@ -610,8 +723,12 @@ const ::_pbi::TcParseTable<3, 5, 1, 109, 2> FieldInfo::_table_ = { 5, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FieldInfo_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldInfo>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; @@ -661,115 +778,144 @@ const ::_pbi::TcParseTable<3, 5, 1, 109, 2> FieldInfo::_table_ = { }}, }; -::uint8_t* FieldInfo::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FieldInfo) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::typed_ticket(this), - _Internal::typed_ticket(this).GetCachedSize(), target, stream); - } - - // string field_name = 2; - if (!this->_internal_field_name().empty()) { - const std::string& _s = this->_internal_field_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.field_name"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // string field_description = 3; - if (!this->_internal_field_description().empty()) { - const std::string& _s = this->_internal_field_description(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.field_description"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // string application_name = 4; - if (!this->_internal_application_name().empty()) { - const std::string& _s = this->_internal_application_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.application_name"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - // string application_id = 5; - if (!this->_internal_application_id().empty()) { - const std::string& _s = this->_internal_application_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.application_id"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FieldInfo) - return target; -} - -::size_t FieldInfo::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FieldInfo) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FieldInfo::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FieldInfo) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string field_name = 2; - if (!this->_internal_field_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_field_name()); - } - - // string field_description = 3; - if (!this->_internal_field_description().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_field_description()); - } - - // string application_name = 4; - if (!this->_internal_application_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_application_name()); - } - - // string application_id = 5; - if (!this->_internal_application_id().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_application_id()); - } - - // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; + _impl_.field_name_.ClearToEmpty(); + _impl_.field_description_.ClearToEmpty(); + _impl_.application_name_.ClearToEmpty(); + _impl_.application_id_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.typed_ticket_); + ABSL_DCHECK(_impl_.typed_ticket_ != nullptr); + _impl_.typed_ticket_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FieldInfo::_class_data_ = { - FieldInfo::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FieldInfo::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FieldInfo::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FieldInfo::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FieldInfo& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FieldInfo::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FieldInfo& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FieldInfo) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.typed_ticket_, this_._impl_.typed_ticket_->GetCachedSize(), target, + stream); + } + + // string field_name = 2; + if (!this_._internal_field_name().empty()) { + const std::string& _s = this_._internal_field_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.field_name"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // string field_description = 3; + if (!this_._internal_field_description().empty()) { + const std::string& _s = this_._internal_field_description(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.field_description"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // string application_name = 4; + if (!this_._internal_application_name().empty()) { + const std::string& _s = this_._internal_application_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.application_name"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + // string application_id = 5; + if (!this_._internal_application_id().empty()) { + const std::string& _s = this_._internal_application_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FieldInfo.application_id"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FieldInfo) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FieldInfo::ByteSizeLong(const MessageLite& base) { + const FieldInfo& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FieldInfo::ByteSizeLong() const { + const FieldInfo& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FieldInfo) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string field_name = 2; + if (!this_._internal_field_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_field_name()); + } + // string field_description = 3; + if (!this_._internal_field_description().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_field_description()); + } + // string application_name = 4; + if (!this_._internal_application_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_application_name()); + } + // string application_id = 5; + if (!this_._internal_application_id().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_application_id()); + } + } + { + // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.typed_ticket_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FieldInfo::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FieldInfo) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -787,10 +933,17 @@ void FieldInfo::MergeImpl(::google::protobuf::Message& to_msg, const ::google::p if (!from._internal_application_id().empty()) { _this->_internal_set_application_id(from._internal_application_id()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_typed_ticket()->::io::deephaven::proto::backplane::grpc::TypedTicket::MergeFrom( - from._internal_typed_ticket()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.typed_ticket_ != nullptr); + if (_this->_impl_.typed_ticket_ == nullptr) { + _this->_impl_.typed_ticket_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.typed_ticket_); + } else { + _this->_impl_.typed_ticket_->MergeFrom(*from._impl_.typed_ticket_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -801,13 +954,7 @@ void FieldInfo::CopyFrom(const FieldInfo& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FieldInfo::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FieldInfo::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FieldInfo::InternalSwap(FieldInfo* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -822,9 +969,7 @@ void FieldInfo::InternalSwap(FieldInfo* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata FieldInfo::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fapplication_2eproto_getter, &descriptor_table_deephaven_2fproto_2fapplication_2eproto_once, - file_level_metadata_deephaven_2fproto_2fapplication_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -837,4 +982,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fapplication_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.h index f3f10a21de8..f3650a407a3 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/application.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fapplication_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fapplication_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -92,20 +86,17 @@ namespace grpc { // ------------------------------------------------------------------- -class ListFieldsRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListFieldsRequest) */ { +class ListFieldsRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListFieldsRequest) */ { public: inline ListFieldsRequest() : ListFieldsRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ListFieldsRequest(::google::protobuf::internal::ConstantInitialized); - - inline ListFieldsRequest(const ListFieldsRequest& from) - : ListFieldsRequest(nullptr, from) {} - ListFieldsRequest(ListFieldsRequest&& from) noexcept - : ListFieldsRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR ListFieldsRequest( + ::google::protobuf::internal::ConstantInitialized); + inline ListFieldsRequest(const ListFieldsRequest& from) : ListFieldsRequest(nullptr, from) {} + inline ListFieldsRequest(ListFieldsRequest&& from) noexcept + : ListFieldsRequest(nullptr, std::move(from)) {} inline ListFieldsRequest& operator=(const ListFieldsRequest& from) { CopyFrom(from); return *this; @@ -113,9 +104,9 @@ class ListFieldsRequest final : inline ListFieldsRequest& operator=(ListFieldsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -147,22 +138,17 @@ class ListFieldsRequest final : } static inline const ListFieldsRequest* internal_default_instance() { return reinterpret_cast( - &_ListFieldsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(ListFieldsRequest& a, ListFieldsRequest& b) { - a.Swap(&b); + &_ListFieldsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(ListFieldsRequest& a, ListFieldsRequest& b) { a.Swap(&b); } inline void Swap(ListFieldsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -176,8 +162,8 @@ class ListFieldsRequest final : // implements Message ---------------------------------------------- - ListFieldsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ListFieldsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const ListFieldsRequest& from) { @@ -187,27 +173,41 @@ class ListFieldsRequest final : void MergeFrom(const ListFieldsRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ListFieldsRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ListFieldsRequest"; } + + protected: explicit ListFieldsRequest(::google::protobuf::Arena* arena); ListFieldsRequest(::google::protobuf::Arena* arena, const ListFieldsRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + ListFieldsRequest(::google::protobuf::Arena* arena, ListFieldsRequest&& from) noexcept + : ListFieldsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ListFieldsRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ListFieldsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -216,33 +216,31 @@ class ListFieldsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ListFieldsRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fapplication_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FieldInfo final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FieldInfo) */ { +class FieldInfo final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FieldInfo) */ { public: inline FieldInfo() : FieldInfo(nullptr) {} - ~FieldInfo() override; - template - explicit PROTOBUF_CONSTEXPR FieldInfo(::google::protobuf::internal::ConstantInitialized); - - inline FieldInfo(const FieldInfo& from) - : FieldInfo(nullptr, from) {} - FieldInfo(FieldInfo&& from) noexcept - : FieldInfo() { - *this = ::std::move(from); - } - + ~FieldInfo() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FieldInfo( + ::google::protobuf::internal::ConstantInitialized); + + inline FieldInfo(const FieldInfo& from) : FieldInfo(nullptr, from) {} + inline FieldInfo(FieldInfo&& from) noexcept + : FieldInfo(nullptr, std::move(from)) {} inline FieldInfo& operator=(const FieldInfo& from) { CopyFrom(from); return *this; @@ -250,9 +248,9 @@ class FieldInfo final : inline FieldInfo& operator=(FieldInfo&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -284,22 +282,17 @@ class FieldInfo final : } static inline const FieldInfo* internal_default_instance() { return reinterpret_cast( - &_FieldInfo_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(FieldInfo& a, FieldInfo& b) { - a.Swap(&b); + &_FieldInfo_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(FieldInfo& a, FieldInfo& b) { a.Swap(&b); } inline void Swap(FieldInfo* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -313,52 +306,69 @@ class FieldInfo final : // implements Message ---------------------------------------------- - FieldInfo* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FieldInfo* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FieldInfo& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FieldInfo& from) { - FieldInfo::MergeImpl(*this, from); - } + void MergeFrom(const FieldInfo& from) { FieldInfo::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FieldInfo* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FieldInfo"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FieldInfo"; } + + protected: explicit FieldInfo(::google::protobuf::Arena* arena); FieldInfo(::google::protobuf::Arena* arena, const FieldInfo& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FieldInfo(::google::protobuf::Arena* arena, FieldInfo&& from) noexcept + : FieldInfo(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFieldNameFieldNumber = 2, kFieldDescriptionFieldNumber = 3, @@ -448,12 +458,15 @@ class FieldInfo final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FieldInfo) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 1, 109, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FieldInfo_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -461,13 +474,13 @@ class FieldInfo final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FieldInfo& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr field_name_; @@ -479,23 +492,21 @@ class FieldInfo final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fapplication_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FieldsChangeUpdate final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) */ { +class FieldsChangeUpdate final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) */ { public: inline FieldsChangeUpdate() : FieldsChangeUpdate(nullptr) {} - ~FieldsChangeUpdate() override; - template - explicit PROTOBUF_CONSTEXPR FieldsChangeUpdate(::google::protobuf::internal::ConstantInitialized); - - inline FieldsChangeUpdate(const FieldsChangeUpdate& from) - : FieldsChangeUpdate(nullptr, from) {} - FieldsChangeUpdate(FieldsChangeUpdate&& from) noexcept - : FieldsChangeUpdate() { - *this = ::std::move(from); - } - + ~FieldsChangeUpdate() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FieldsChangeUpdate( + ::google::protobuf::internal::ConstantInitialized); + + inline FieldsChangeUpdate(const FieldsChangeUpdate& from) : FieldsChangeUpdate(nullptr, from) {} + inline FieldsChangeUpdate(FieldsChangeUpdate&& from) noexcept + : FieldsChangeUpdate(nullptr, std::move(from)) {} inline FieldsChangeUpdate& operator=(const FieldsChangeUpdate& from) { CopyFrom(from); return *this; @@ -503,9 +514,9 @@ class FieldsChangeUpdate final : inline FieldsChangeUpdate& operator=(FieldsChangeUpdate&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -537,22 +548,17 @@ class FieldsChangeUpdate final : } static inline const FieldsChangeUpdate* internal_default_instance() { return reinterpret_cast( - &_FieldsChangeUpdate_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(FieldsChangeUpdate& a, FieldsChangeUpdate& b) { - a.Swap(&b); + &_FieldsChangeUpdate_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(FieldsChangeUpdate& a, FieldsChangeUpdate& b) { a.Swap(&b); } inline void Swap(FieldsChangeUpdate* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -566,52 +572,69 @@ class FieldsChangeUpdate final : // implements Message ---------------------------------------------- - FieldsChangeUpdate* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FieldsChangeUpdate* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FieldsChangeUpdate& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FieldsChangeUpdate& from) { - FieldsChangeUpdate::MergeImpl(*this, from); - } + void MergeFrom(const FieldsChangeUpdate& from) { FieldsChangeUpdate::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FieldsChangeUpdate* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FieldsChangeUpdate"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FieldsChangeUpdate"; } + + protected: explicit FieldsChangeUpdate(::google::protobuf::Arena* arena); FieldsChangeUpdate(::google::protobuf::Arena* arena, const FieldsChangeUpdate& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FieldsChangeUpdate(::google::protobuf::Arena* arena, FieldsChangeUpdate&& from) noexcept + : FieldsChangeUpdate(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kCreatedFieldNumber = 1, kUpdatedFieldNumber = 2, @@ -625,16 +648,15 @@ class FieldsChangeUpdate final : public: void clear_created() ; ::io::deephaven::proto::backplane::grpc::FieldInfo* mutable_created(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >* - mutable_created(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* mutable_created(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& _internal_created() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* _internal_mutable_created(); public: const ::io::deephaven::proto::backplane::grpc::FieldInfo& created(int index) const; ::io::deephaven::proto::backplane::grpc::FieldInfo* add_created(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >& - created() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& created() const; // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; int updated_size() const; private: @@ -643,16 +665,15 @@ class FieldsChangeUpdate final : public: void clear_updated() ; ::io::deephaven::proto::backplane::grpc::FieldInfo* mutable_updated(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >* - mutable_updated(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* mutable_updated(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& _internal_updated() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* _internal_mutable_updated(); public: const ::io::deephaven::proto::backplane::grpc::FieldInfo& updated(int index) const; ::io::deephaven::proto::backplane::grpc::FieldInfo* add_updated(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >& - updated() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& updated() const; // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; int removed_size() const; private: @@ -661,25 +682,27 @@ class FieldsChangeUpdate final : public: void clear_removed() ; ::io::deephaven::proto::backplane::grpc::FieldInfo* mutable_removed(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >* - mutable_removed(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* mutable_removed(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& _internal_removed() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* _internal_mutable_removed(); public: const ::io::deephaven::proto::backplane::grpc::FieldInfo& removed(int index) const; ::io::deephaven::proto::backplane::grpc::FieldInfo* add_removed(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo >& - removed() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& removed() const; // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FieldsChangeUpdate_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -687,13 +710,13 @@ class FieldsChangeUpdate final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FieldsChangeUpdate& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo > created_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo > updated_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::FieldInfo > removed_; @@ -732,7 +755,7 @@ inline int FieldsChangeUpdate::created_size() const { return _internal_created_size(); } inline void FieldsChangeUpdate::clear_created() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.created_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_created(int index) @@ -743,7 +766,7 @@ inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::m inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::mutable_created() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.created) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_created(); } inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::created(int index) const @@ -752,7 +775,7 @@ inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpd return _internal_created().Get(index); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_created() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::FieldInfo* _add = _internal_mutable_created()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.created) return _add; @@ -764,12 +787,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::_internal_created() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.created_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::_internal_mutable_created() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.created_; } @@ -781,7 +804,7 @@ inline int FieldsChangeUpdate::updated_size() const { return _internal_updated_size(); } inline void FieldsChangeUpdate::clear_updated() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.updated_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_updated(int index) @@ -792,7 +815,7 @@ inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::m inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::mutable_updated() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.updated) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_updated(); } inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::updated(int index) const @@ -801,7 +824,7 @@ inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpd return _internal_updated().Get(index); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_updated() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::FieldInfo* _add = _internal_mutable_updated()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.updated) return _add; @@ -813,12 +836,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::_internal_updated() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.updated_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::_internal_mutable_updated() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.updated_; } @@ -830,7 +853,7 @@ inline int FieldsChangeUpdate::removed_size() const { return _internal_removed_size(); } inline void FieldsChangeUpdate::clear_removed() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.removed_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_removed(int index) @@ -841,7 +864,7 @@ inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::m inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::mutable_removed() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.removed) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_removed(); } inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::removed(int index) const @@ -850,7 +873,7 @@ inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpd return _internal_removed().Get(index); } inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_removed() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::FieldInfo* _add = _internal_mutable_removed()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.removed) return _add; @@ -862,12 +885,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::_internal_removed() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.removed_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* FieldsChangeUpdate::_internal_mutable_removed() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.removed_; } @@ -882,7 +905,7 @@ inline bool FieldInfo::has_typed_ticket() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FieldInfo::_internal_typed_ticket() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TypedTicket* p = _impl_.typed_ticket_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TypedTicket_default_instance_); } @@ -891,7 +914,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FieldInfo::ty return _internal_typed_ticket(); } inline void FieldInfo::unsafe_arena_set_allocated_typed_ticket(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.typed_ticket_); } @@ -904,7 +927,7 @@ inline void FieldInfo::unsafe_arena_set_allocated_typed_ticket(::io::deephaven:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::release_typed_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.typed_ticket_; @@ -923,7 +946,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::unsafe_arena_release_typed_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) _impl_._has_bits_[0] &= ~0x00000001u; @@ -932,22 +955,22 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::_internal_mutable_typed_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.typed_ticket_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); _impl_.typed_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(p); } return _impl_.typed_ticket_; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::mutable_typed_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* _msg = _internal_mutable_typed_ticket(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) return _msg; } inline void FieldInfo::set_allocated_typed_ticket(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.typed_ticket_); } @@ -968,7 +991,7 @@ inline void FieldInfo::set_allocated_typed_ticket(::io::deephaven::proto::backpl // string field_name = 2; inline void FieldInfo::clear_field_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_name_.ClearToEmpty(); } inline const std::string& FieldInfo::field_name() const @@ -979,8 +1002,7 @@ inline const std::string& FieldInfo::field_name() const template inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_field_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FieldInfo.field_name) } @@ -990,26 +1012,24 @@ inline std::string* FieldInfo::mutable_field_name() ABSL_ATTRIBUTE_LIFETIME_BOUN return _s; } inline const std::string& FieldInfo::_internal_field_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.field_name_.Get(); } inline void FieldInfo::_internal_set_field_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_name_.Set(value, GetArena()); } inline std::string* FieldInfo::_internal_mutable_field_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.field_name_.Mutable( GetArena()); } inline std::string* FieldInfo::release_field_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.field_name) return _impl_.field_name_.Release(); } inline void FieldInfo::set_allocated_field_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.field_name_.IsDefault()) { @@ -1021,7 +1041,7 @@ inline void FieldInfo::set_allocated_field_name(std::string* value) { // string field_description = 3; inline void FieldInfo::clear_field_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_description_.ClearToEmpty(); } inline const std::string& FieldInfo::field_description() const @@ -1032,8 +1052,7 @@ inline const std::string& FieldInfo::field_description() const template inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_field_description(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_description_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FieldInfo.field_description) } @@ -1043,26 +1062,24 @@ inline std::string* FieldInfo::mutable_field_description() ABSL_ATTRIBUTE_LIFETI return _s; } inline const std::string& FieldInfo::_internal_field_description() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.field_description_.Get(); } inline void FieldInfo::_internal_set_field_description(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_description_.Set(value, GetArena()); } inline std::string* FieldInfo::_internal_mutable_field_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.field_description_.Mutable( GetArena()); } inline std::string* FieldInfo::release_field_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.field_description) return _impl_.field_description_.Release(); } inline void FieldInfo::set_allocated_field_description(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.field_description_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.field_description_.IsDefault()) { @@ -1074,7 +1091,7 @@ inline void FieldInfo::set_allocated_field_description(std::string* value) { // string application_name = 4; inline void FieldInfo::clear_application_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_name_.ClearToEmpty(); } inline const std::string& FieldInfo::application_name() const @@ -1085,8 +1102,7 @@ inline const std::string& FieldInfo::application_name() const template inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_application_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FieldInfo.application_name) } @@ -1096,26 +1112,24 @@ inline std::string* FieldInfo::mutable_application_name() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& FieldInfo::_internal_application_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.application_name_.Get(); } inline void FieldInfo::_internal_set_application_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_name_.Set(value, GetArena()); } inline std::string* FieldInfo::_internal_mutable_application_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.application_name_.Mutable( GetArena()); } inline std::string* FieldInfo::release_application_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.application_name) return _impl_.application_name_.Release(); } inline void FieldInfo::set_allocated_application_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.application_name_.IsDefault()) { @@ -1127,7 +1141,7 @@ inline void FieldInfo::set_allocated_application_name(std::string* value) { // string application_id = 5; inline void FieldInfo::clear_application_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_id_.ClearToEmpty(); } inline const std::string& FieldInfo::application_id() const @@ -1138,8 +1152,7 @@ inline const std::string& FieldInfo::application_id() const template inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_application_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FieldInfo.application_id) } @@ -1149,26 +1162,24 @@ inline std::string* FieldInfo::mutable_application_id() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& FieldInfo::_internal_application_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.application_id_.Get(); } inline void FieldInfo::_internal_set_application_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_id_.Set(value, GetArena()); } inline std::string* FieldInfo::_internal_mutable_application_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.application_id_.Mutable( GetArena()); } inline std::string* FieldInfo::release_application_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.application_id) return _impl_.application_id_.Release(); } inline void FieldInfo::set_allocated_application_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.application_id_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.application_id_.IsDefault()) { diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc index fc01830df49..904fec22960 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/config.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/config.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -25,8 +28,14 @@ namespace deephaven { namespace proto { namespace backplane { namespace grpc { - template -PROTOBUF_CONSTEXPR ConfigurationConstantsRequest::ConfigurationConstantsRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ConfigurationConstantsRequest::ConfigurationConstantsRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ConfigurationConstantsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ConfigurationConstantsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConfigurationConstantsRequestDefaultTypeInternal() {} @@ -46,7 +55,13 @@ inline constexpr ConfigValue::Impl_::Impl_( template PROTOBUF_CONSTEXPR ConfigValue::ConfigValue(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ConfigValueDefaultTypeInternal { PROTOBUF_CONSTEXPR ConfigValueDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConfigValueDefaultTypeInternal() {} @@ -57,8 +72,14 @@ struct ConfigValueDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConfigValueDefaultTypeInternal _ConfigValue_default_instance_; - template -PROTOBUF_CONSTEXPR AuthenticationConstantsRequest::AuthenticationConstantsRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AuthenticationConstantsRequest::AuthenticationConstantsRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AuthenticationConstantsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AuthenticationConstantsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AuthenticationConstantsRequestDefaultTypeInternal() {} @@ -69,8 +90,14 @@ struct AuthenticationConstantsRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AuthenticationConstantsRequestDefaultTypeInternal _AuthenticationConstantsRequest_default_instance_; - template -PROTOBUF_CONSTEXPR ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::MapEntry(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::MapEntry() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal { PROTOBUF_CONSTEXPR ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal() {} @@ -81,8 +108,14 @@ struct ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInter PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal _ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_; - template -PROTOBUF_CONSTEXPR AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::MapEntry(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::MapEntry() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal { PROTOBUF_CONSTEXPR AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal() {} @@ -101,7 +134,13 @@ inline constexpr ConfigurationConstantsResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR ConfigurationConstantsResponse::ConfigurationConstantsResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ConfigurationConstantsResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ConfigurationConstantsResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConfigurationConstantsResponseDefaultTypeInternal() {} @@ -120,7 +159,13 @@ inline constexpr AuthenticationConstantsResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR AuthenticationConstantsResponse::AuthenticationConstantsResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AuthenticationConstantsResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR AuthenticationConstantsResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AuthenticationConstantsResponseDefaultTypeInternal() {} @@ -136,85 +181,85 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fconfig_2eproto[7]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fconfig_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fconfig_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fconfig_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, key_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, value_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, _impl_.config_values_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, key_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, value_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, _impl_.config_values_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_.kind_), +const ::uint32_t + TableStruct_deephaven_2fproto_2fconfig_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, _impl_.config_values_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, _impl_.config_values_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_.kind_), }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest)}, {8, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest)}, {16, 26, -1, sizeof(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse)}, @@ -223,7 +268,6 @@ static const ::_pbi::MigrationSchema {49, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse)}, {58, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ConfigValue)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_AuthenticationConstantsRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_ConfigurationConstantsRequest_default_instance_._instance, @@ -233,7 +277,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_ConfigurationConstantsResponse_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_ConfigValue_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fconfig_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fconfig_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\034deephaven/proto/config.proto\022!io.deeph" "aven.proto.backplane.grpc\" \n\036Authenticat" "ionConstantsRequest\"\037\n\035ConfigurationCons" @@ -264,7 +309,7 @@ const char descriptor_table_protodef_deephaven_2fproto_2fconfig_2eproto[] PROTOB "o/configb\006proto3" }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fconfig_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconfig_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconfig_2eproto = { false, false, 1096, @@ -277,28 +322,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconfig_2eprot schemas, file_default_instances, TableStruct_deephaven_2fproto_2fconfig_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fconfig_2eproto, file_level_service_descriptors_deephaven_2fproto_2fconfig_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fconfig_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fconfig_2eproto(&descriptor_table_deephaven_2fproto_2fconfig_2eproto); namespace io { namespace deephaven { namespace proto { @@ -311,13 +337,21 @@ class AuthenticationConstantsRequest::_Internal { }; AuthenticationConstantsRequest::AuthenticationConstantsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest) } AuthenticationConstantsRequest::AuthenticationConstantsRequest( ::google::protobuf::Arena* arena, const AuthenticationConstantsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AuthenticationConstantsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -326,6 +360,61 @@ AuthenticationConstantsRequest::AuthenticationConstantsRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AuthenticationConstantsRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AuthenticationConstantsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AuthenticationConstantsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AuthenticationConstantsRequest::ByteSizeLong, + &AuthenticationConstantsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AuthenticationConstantsRequest, _impl_._cached_size_), + false, + }, + &AuthenticationConstantsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AuthenticationConstantsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AuthenticationConstantsRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -335,9 +424,7 @@ AuthenticationConstantsRequest::AuthenticationConstantsRequest( ::google::protobuf::Metadata AuthenticationConstantsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[0]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -346,13 +433,21 @@ class ConfigurationConstantsRequest::_Internal { }; ConfigurationConstantsRequest::ConfigurationConstantsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest) } ConfigurationConstantsRequest::ConfigurationConstantsRequest( ::google::protobuf::Arena* arena, const ConfigurationConstantsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ConfigurationConstantsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -361,6 +456,61 @@ ConfigurationConstantsRequest::ConfigurationConstantsRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ConfigurationConstantsRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ConfigurationConstantsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ConfigurationConstantsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ConfigurationConstantsRequest::ByteSizeLong, + &ConfigurationConstantsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ConfigurationConstantsRequest, _impl_._cached_size_), + false, + }, + &ConfigurationConstantsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ConfigurationConstantsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ConfigurationConstantsRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -370,20 +520,89 @@ ConfigurationConstantsRequest::ConfigurationConstantsRequest( ::google::protobuf::Metadata ConfigurationConstantsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[1]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== -AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse() {} -AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) - : SuperType(arena) {} -::google::protobuf::Metadata AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[2]); -} +#if defined(PROTOBUF_CUSTOM_VTABLE) + AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse() : SuperType(_class_data_.base()) {} + AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) + : SuperType(arena, _class_data_.base()) {} +#else // PROTOBUF_CUSTOM_VTABLE + AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse() : SuperType() {} + AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 + const ::google::protobuf::MessageLite::ClassDataFull + AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::MergeImpl, + #if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::ClearImpl, ::google::protobuf::Message::ByteSizeLongImpl, + ::google::protobuf::Message::_InternalSerializeImpl, + #endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._cached_size_), + false, + }, + &AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker + }; + const ::google::protobuf::MessageLite::ClassData* AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); + } +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<1, 2, 1, 95, 2> AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse::_table_ = { + { + PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._has_bits_), + 0, // no _extensions_ + 2, 8, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967292, // skipmap + offsetof(decltype(_table_), field_entries), + 2, // num_field_entries + 1, // num_aux_entries + offsetof(decltype(_table_), aux_entries), + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::DiscardEverythingFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // .io.deephaven.proto.backplane.grpc.ConfigValue value = 2; + {::_pbi::TcParser::FastMtS1, + {18, 0, 0, PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_)}}, + // string key = 1; + {::_pbi::TcParser::FastUS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // string key = 1; + {PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_), -1, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // .io.deephaven.proto.backplane.grpc.ConfigValue value = 2; + {PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_), _Internal::kHasBitsOffset + 0, 0, + (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, + }}, {{ + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigValue>()}, + }}, {{ + "\123\3\0\0\0\0\0\0" + "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.ConfigValuesEntry" + "key" + }}, +}; + // =================================================================== class AuthenticationConstantsResponse::_Internal { @@ -391,25 +610,33 @@ class AuthenticationConstantsResponse::_Internal { }; AuthenticationConstantsResponse::AuthenticationConstantsResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) } inline PROTOBUF_NDEBUG_INLINE AuthenticationConstantsResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse& from_msg) : config_values_{visibility, arena, from.config_values_}, _cached_size_{0} {} AuthenticationConstantsResponse::AuthenticationConstantsResponse( ::google::protobuf::Arena* arena, const AuthenticationConstantsResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AuthenticationConstantsResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) } @@ -432,24 +659,34 @@ inline void AuthenticationConstantsResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AuthenticationConstantsResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.config_values_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AuthenticationConstantsResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AuthenticationConstantsResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AuthenticationConstantsResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AuthenticationConstantsResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AuthenticationConstantsResponse::ByteSizeLong, + &AuthenticationConstantsResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse, _impl_._cached_size_), + false, + }, + &AuthenticationConstantsResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AuthenticationConstantsResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 2, 87, 2> AuthenticationConstantsResponse::_table_ = { { @@ -462,8 +699,12 @@ const ::_pbi::TcParseTable<0, 1, 2, 87, 2> AuthenticationConstantsResponse::_tab 1, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AuthenticationConstantsResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -485,76 +726,100 @@ const ::_pbi::TcParseTable<0, 1, 2, 87, 2> AuthenticationConstantsResponse::_tab }}, }; -::uint8_t* AuthenticationConstantsResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // map config_values = 1; - if (!_internal_config_values().empty()) { - using MapType = ::google::protobuf::Map; - using WireHelper = _pbi::MapEntryFuncs; - const auto& field = _internal_config_values(); - - if (stream->IsSerializationDeterministic() && field.size() > 1) { - for (const auto& entry : ::google::protobuf::internal::MapSorterPtr(field)) { - target = WireHelper::InternalSerialize( - 1, entry.first, entry.second, target, stream); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - entry.first.data(), static_cast(entry.first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values"); - } - } else { - for (const auto& entry : field) { - target = WireHelper::InternalSerialize( - 1, entry.first, entry.second, target, stream); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - entry.first.data(), static_cast(entry.first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values"); - } - } - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - return target; -} - -::size_t AuthenticationConstantsResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AuthenticationConstantsResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // map config_values = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_config_values_size()); - for (const auto& entry : _internal_config_values()) { - total_size += _pbi::MapEntryFuncs::ByteSizeLong(entry.first, entry.second); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AuthenticationConstantsResponse::_class_data_ = { - AuthenticationConstantsResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AuthenticationConstantsResponse::GetClassData() const { - return &_class_data_; + _impl_.config_values_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AuthenticationConstantsResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AuthenticationConstantsResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AuthenticationConstantsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AuthenticationConstantsResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AuthenticationConstantsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // map config_values = 1; + if (!this_._internal_config_values().empty()) { + using MapType = ::google::protobuf::Map; + using WireHelper = _pbi::MapEntryFuncs; + const auto& field = this_._internal_config_values(); + + if (stream->IsSerializationDeterministic() && field.size() > 1) { + for (const auto& entry : ::google::protobuf::internal::MapSorterPtr(field)) { + target = WireHelper::InternalSerialize( + 1, entry.first, entry.second, target, stream); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + entry.first.data(), static_cast(entry.first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values"); + } + } else { + for (const auto& entry : field) { + target = WireHelper::InternalSerialize( + 1, entry.first, entry.second, target, stream); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + entry.first.data(), static_cast(entry.first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values"); + } + } + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AuthenticationConstantsResponse::ByteSizeLong(const MessageLite& base) { + const AuthenticationConstantsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AuthenticationConstantsResponse::ByteSizeLong() const { + const AuthenticationConstantsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // map config_values = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_config_values_size()); + for (const auto& entry : this_._internal_config_values()) { + total_size += _pbi::MapEntryFuncs::ByteSizeLong(entry.first, entry.second); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AuthenticationConstantsResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) @@ -573,13 +838,7 @@ void AuthenticationConstantsResponse::CopyFrom(const AuthenticationConstantsResp MergeFrom(from); } -PROTOBUF_NOINLINE bool AuthenticationConstantsResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AuthenticationConstantsResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AuthenticationConstantsResponse::InternalSwap(AuthenticationConstantsResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -587,20 +846,89 @@ void AuthenticationConstantsResponse::InternalSwap(AuthenticationConstantsRespon } ::google::protobuf::Metadata AuthenticationConstantsResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== -ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse() {} -ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) - : SuperType(arena) {} -::google::protobuf::Metadata ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[4]); -} +#if defined(PROTOBUF_CUSTOM_VTABLE) + ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse() : SuperType(_class_data_.base()) {} + ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) + : SuperType(arena, _class_data_.base()) {} +#else // PROTOBUF_CUSTOM_VTABLE + ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse() : SuperType() {} + ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 + const ::google::protobuf::MessageLite::ClassDataFull + ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::MergeImpl, + #if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::ClearImpl, ::google::protobuf::Message::ByteSizeLongImpl, + ::google::protobuf::Message::_InternalSerializeImpl, + #endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._cached_size_), + false, + }, + &ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker + }; + const ::google::protobuf::MessageLite::ClassData* ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); + } +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<1, 2, 1, 94, 2> ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse::_table_ = { + { + PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_._has_bits_), + 0, // no _extensions_ + 2, 8, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967292, // skipmap + offsetof(decltype(_table_), field_entries), + 2, // num_field_entries + 1, // num_aux_entries + offsetof(decltype(_table_), aux_entries), + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::DiscardEverythingFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // .io.deephaven.proto.backplane.grpc.ConfigValue value = 2; + {::_pbi::TcParser::FastMtS1, + {18, 0, 0, PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_)}}, + // string key = 1; + {::_pbi::TcParser::FastUS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // string key = 1; + {PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.key_), -1, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // .io.deephaven.proto.backplane.grpc.ConfigValue value = 2; + {PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, _impl_.value_), _Internal::kHasBitsOffset + 0, 0, + (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, + }}, {{ + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigValue>()}, + }}, {{ + "\122\3\0\0\0\0\0\0" + "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.ConfigValuesEntry" + "key" + }}, +}; + // =================================================================== class ConfigurationConstantsResponse::_Internal { @@ -608,25 +936,33 @@ class ConfigurationConstantsResponse::_Internal { }; ConfigurationConstantsResponse::ConfigurationConstantsResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) } inline PROTOBUF_NDEBUG_INLINE ConfigurationConstantsResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse& from_msg) : config_values_{visibility, arena, from.config_values_}, _cached_size_{0} {} ConfigurationConstantsResponse::ConfigurationConstantsResponse( ::google::protobuf::Arena* arena, const ConfigurationConstantsResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ConfigurationConstantsResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) } @@ -649,24 +985,34 @@ inline void ConfigurationConstantsResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ConfigurationConstantsResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.config_values_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ConfigurationConstantsResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ConfigurationConstantsResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ConfigurationConstantsResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ConfigurationConstantsResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ConfigurationConstantsResponse::ByteSizeLong, + &ConfigurationConstantsResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse, _impl_._cached_size_), + false, + }, + &ConfigurationConstantsResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ConfigurationConstantsResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 2, 86, 2> ConfigurationConstantsResponse::_table_ = { { @@ -679,8 +1025,12 @@ const ::_pbi::TcParseTable<0, 1, 2, 86, 2> ConfigurationConstantsResponse::_tabl 1, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ConfigurationConstantsResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -702,76 +1052,100 @@ const ::_pbi::TcParseTable<0, 1, 2, 86, 2> ConfigurationConstantsResponse::_tabl }}, }; -::uint8_t* ConfigurationConstantsResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // map config_values = 1; - if (!_internal_config_values().empty()) { - using MapType = ::google::protobuf::Map; - using WireHelper = _pbi::MapEntryFuncs; - const auto& field = _internal_config_values(); - - if (stream->IsSerializationDeterministic() && field.size() > 1) { - for (const auto& entry : ::google::protobuf::internal::MapSorterPtr(field)) { - target = WireHelper::InternalSerialize( - 1, entry.first, entry.second, target, stream); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - entry.first.data(), static_cast(entry.first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values"); - } - } else { - for (const auto& entry : field) { - target = WireHelper::InternalSerialize( - 1, entry.first, entry.second, target, stream); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - entry.first.data(), static_cast(entry.first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values"); - } - } - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - return target; -} - -::size_t ConfigurationConstantsResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ConfigurationConstantsResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // map config_values = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_config_values_size()); - for (const auto& entry : _internal_config_values()) { - total_size += _pbi::MapEntryFuncs::ByteSizeLong(entry.first, entry.second); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ConfigurationConstantsResponse::_class_data_ = { - ConfigurationConstantsResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ConfigurationConstantsResponse::GetClassData() const { - return &_class_data_; + _impl_.config_values_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ConfigurationConstantsResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ConfigurationConstantsResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ConfigurationConstantsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ConfigurationConstantsResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ConfigurationConstantsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // map config_values = 1; + if (!this_._internal_config_values().empty()) { + using MapType = ::google::protobuf::Map; + using WireHelper = _pbi::MapEntryFuncs; + const auto& field = this_._internal_config_values(); + + if (stream->IsSerializationDeterministic() && field.size() > 1) { + for (const auto& entry : ::google::protobuf::internal::MapSorterPtr(field)) { + target = WireHelper::InternalSerialize( + 1, entry.first, entry.second, target, stream); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + entry.first.data(), static_cast(entry.first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values"); + } + } else { + for (const auto& entry : field) { + target = WireHelper::InternalSerialize( + 1, entry.first, entry.second, target, stream); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + entry.first.data(), static_cast(entry.first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values"); + } + } + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ConfigurationConstantsResponse::ByteSizeLong(const MessageLite& base) { + const ConfigurationConstantsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ConfigurationConstantsResponse::ByteSizeLong() const { + const ConfigurationConstantsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // map config_values = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_config_values_size()); + for (const auto& entry : this_._internal_config_values()) { + total_size += _pbi::MapEntryFuncs::ByteSizeLong(entry.first, entry.second); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ConfigurationConstantsResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) @@ -790,13 +1164,7 @@ void ConfigurationConstantsResponse::CopyFrom(const ConfigurationConstantsRespon MergeFrom(from); } -PROTOBUF_NOINLINE bool ConfigurationConstantsResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ConfigurationConstantsResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ConfigurationConstantsResponse::InternalSwap(ConfigurationConstantsResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -804,26 +1172,28 @@ void ConfigurationConstantsResponse::InternalSwap(ConfigurationConstantsResponse } ::google::protobuf::Metadata ConfigurationConstantsResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[5]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ConfigValue::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_._oneof_case_); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConfigValue, _impl_._oneof_case_); }; ConfigValue::ConfigValue(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ConfigValue) } inline PROTOBUF_NDEBUG_INLINE ConfigValue::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ConfigValue& from_msg) : kind_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -831,12 +1201,16 @@ inline PROTOBUF_NDEBUG_INLINE ConfigValue::Impl_::Impl_( ConfigValue::ConfigValue( ::google::protobuf::Arena* arena, const ConfigValue& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ConfigValue* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (kind_case()) { case KIND_NOT_SET: break; @@ -872,7 +1246,7 @@ inline void ConfigValue::SharedDtor() { void ConfigValue::clear_kind() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.ConfigValue) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (kind_case()) { case kStringValue: { _impl_.kind_.string_value_.Destroy(); @@ -886,24 +1260,34 @@ void ConfigValue::clear_kind() { } -PROTOBUF_NOINLINE void ConfigValue::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConfigValue) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_kind(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ConfigValue::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ConfigValue::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ConfigValue_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ConfigValue::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ConfigValue::ByteSizeLong, + &ConfigValue::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ConfigValue, _impl_._cached_size_), + false, + }, + &ConfigValue::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconfig_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ConfigValue::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 66, 2> ConfigValue::_table_ = { { @@ -916,8 +1300,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 66, 2> ConfigValue::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_ConfigValue_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConfigValue>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -935,75 +1323,107 @@ const ::_pbi::TcParseTable<0, 1, 0, 66, 2> ConfigValue::_table_ = { }}, }; -::uint8_t* ConfigValue::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConfigValue) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string string_value = 3; - if (kind_case() == kStringValue) { - const std::string& _s = this->_internal_string_value(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigValue.string_value"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConfigValue) - return target; -} - -::size_t ConfigValue::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConfigValue) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ConfigValue::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConfigValue) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (kind_case()) { - // string string_value = 3; - case kStringValue: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_string_value()); - break; - } - case KIND_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ConfigValue::_class_data_ = { - ConfigValue::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ConfigValue::GetClassData() const { - return &_class_data_; + clear_kind(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ConfigValue::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ConfigValue::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ConfigValue& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ConfigValue::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ConfigValue& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConfigValue) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string string_value = 3; + if (this_.kind_case() == kStringValue) { + const std::string& _s = this_._internal_string_value(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ConfigValue.string_value"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConfigValue) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ConfigValue::ByteSizeLong(const MessageLite& base) { + const ConfigValue& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ConfigValue::ByteSizeLong() const { + const ConfigValue& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConfigValue) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.kind_case()) { + // string string_value = 3; + case kStringValue: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_string_value()); + break; + } + case KIND_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ConfigValue::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ConfigValue) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.kind_case()) { - case kStringValue: { - _this->_internal_set_string_value(from._internal_string_value()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_kind(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case KIND_NOT_SET: { - break; + + switch (oneof_from_case) { + case kStringValue: { + if (oneof_needs_init) { + _this->_impl_.kind_.string_value_.InitDefault(); + } + _this->_impl_.kind_.string_value_.Set(from._internal_string_value(), arena); + break; + } + case KIND_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -1016,13 +1436,7 @@ void ConfigValue::CopyFrom(const ConfigValue& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ConfigValue::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ConfigValue::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ConfigValue::InternalSwap(ConfigValue* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1031,9 +1445,7 @@ void ConfigValue::InternalSwap(ConfigValue* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ConfigValue::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconfig_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconfig_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconfig_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -1046,4 +1458,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fconfig_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.h index 609b9fec12f..4ef69288dce 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/config.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconfig_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconfig_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -106,20 +100,17 @@ namespace grpc { // ------------------------------------------------------------------- -class ConfigurationConstantsRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest) */ { +class ConfigurationConstantsRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest) */ { public: inline ConfigurationConstantsRequest() : ConfigurationConstantsRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ConfigurationConstantsRequest(::google::protobuf::internal::ConstantInitialized); - - inline ConfigurationConstantsRequest(const ConfigurationConstantsRequest& from) - : ConfigurationConstantsRequest(nullptr, from) {} - ConfigurationConstantsRequest(ConfigurationConstantsRequest&& from) noexcept - : ConfigurationConstantsRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR ConfigurationConstantsRequest( + ::google::protobuf::internal::ConstantInitialized); + inline ConfigurationConstantsRequest(const ConfigurationConstantsRequest& from) : ConfigurationConstantsRequest(nullptr, from) {} + inline ConfigurationConstantsRequest(ConfigurationConstantsRequest&& from) noexcept + : ConfigurationConstantsRequest(nullptr, std::move(from)) {} inline ConfigurationConstantsRequest& operator=(const ConfigurationConstantsRequest& from) { CopyFrom(from); return *this; @@ -127,9 +118,9 @@ class ConfigurationConstantsRequest final : inline ConfigurationConstantsRequest& operator=(ConfigurationConstantsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -161,22 +152,17 @@ class ConfigurationConstantsRequest final : } static inline const ConfigurationConstantsRequest* internal_default_instance() { return reinterpret_cast( - &_ConfigurationConstantsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(ConfigurationConstantsRequest& a, ConfigurationConstantsRequest& b) { - a.Swap(&b); + &_ConfigurationConstantsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(ConfigurationConstantsRequest& a, ConfigurationConstantsRequest& b) { a.Swap(&b); } inline void Swap(ConfigurationConstantsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -190,8 +176,8 @@ class ConfigurationConstantsRequest final : // implements Message ---------------------------------------------- - ConfigurationConstantsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ConfigurationConstantsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const ConfigurationConstantsRequest& from) { @@ -201,27 +187,41 @@ class ConfigurationConstantsRequest final : void MergeFrom(const ConfigurationConstantsRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest"; } + + protected: explicit ConfigurationConstantsRequest(::google::protobuf::Arena* arena); ConfigurationConstantsRequest(::google::protobuf::Arena* arena, const ConfigurationConstantsRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + ConfigurationConstantsRequest(::google::protobuf::Arena* arena, ConfigurationConstantsRequest&& from) noexcept + : ConfigurationConstantsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ConfigurationConstantsRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ConfigurationConstantsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -230,33 +230,31 @@ class ConfigurationConstantsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ConfigurationConstantsRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ConfigValue final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigValue) */ { +class ConfigValue final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigValue) */ { public: inline ConfigValue() : ConfigValue(nullptr) {} - ~ConfigValue() override; - template - explicit PROTOBUF_CONSTEXPR ConfigValue(::google::protobuf::internal::ConstantInitialized); - - inline ConfigValue(const ConfigValue& from) - : ConfigValue(nullptr, from) {} - ConfigValue(ConfigValue&& from) noexcept - : ConfigValue() { - *this = ::std::move(from); - } + ~ConfigValue() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ConfigValue( + ::google::protobuf::internal::ConstantInitialized); + inline ConfigValue(const ConfigValue& from) : ConfigValue(nullptr, from) {} + inline ConfigValue(ConfigValue&& from) noexcept + : ConfigValue(nullptr, std::move(from)) {} inline ConfigValue& operator=(const ConfigValue& from) { CopyFrom(from); return *this; @@ -264,9 +262,9 @@ class ConfigValue final : inline ConfigValue& operator=(ConfigValue&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -300,25 +298,19 @@ class ConfigValue final : kStringValue = 3, KIND_NOT_SET = 0, }; - static inline const ConfigValue* internal_default_instance() { return reinterpret_cast( - &_ConfigValue_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(ConfigValue& a, ConfigValue& b) { - a.Swap(&b); + &_ConfigValue_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(ConfigValue& a, ConfigValue& b) { a.Swap(&b); } inline void Swap(ConfigValue* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -332,52 +324,69 @@ class ConfigValue final : // implements Message ---------------------------------------------- - ConfigValue* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ConfigValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ConfigValue& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ConfigValue& from) { - ConfigValue::MergeImpl(*this, from); - } + void MergeFrom(const ConfigValue& from) { ConfigValue::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ConfigValue* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ConfigValue"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ConfigValue"; } + + protected: explicit ConfigValue(::google::protobuf::Arena* arena); ConfigValue(::google::protobuf::Arena* arena, const ConfigValue& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ConfigValue(::google::protobuf::Arena* arena, ConfigValue&& from) noexcept + : ConfigValue(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kStringValueFieldNumber = 3, }; @@ -404,15 +413,17 @@ class ConfigValue final : private: class _Internal; void set_has_string_value(); - inline bool has_kind() const; inline void clear_has_kind(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 66, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ConfigValue_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -420,41 +431,38 @@ class ConfigValue final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ConfigValue& from_msg); union KindUnion { constexpr KindUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::google::protobuf::internal::ArenaStringPtr string_value_; } kind_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AuthenticationConstantsRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest) */ { +class AuthenticationConstantsRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest) */ { public: inline AuthenticationConstantsRequest() : AuthenticationConstantsRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AuthenticationConstantsRequest(::google::protobuf::internal::ConstantInitialized); - - inline AuthenticationConstantsRequest(const AuthenticationConstantsRequest& from) - : AuthenticationConstantsRequest(nullptr, from) {} - AuthenticationConstantsRequest(AuthenticationConstantsRequest&& from) noexcept - : AuthenticationConstantsRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AuthenticationConstantsRequest( + ::google::protobuf::internal::ConstantInitialized); + inline AuthenticationConstantsRequest(const AuthenticationConstantsRequest& from) : AuthenticationConstantsRequest(nullptr, from) {} + inline AuthenticationConstantsRequest(AuthenticationConstantsRequest&& from) noexcept + : AuthenticationConstantsRequest(nullptr, std::move(from)) {} inline AuthenticationConstantsRequest& operator=(const AuthenticationConstantsRequest& from) { CopyFrom(from); return *this; @@ -462,9 +470,9 @@ class AuthenticationConstantsRequest final : inline AuthenticationConstantsRequest& operator=(AuthenticationConstantsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -496,22 +504,17 @@ class AuthenticationConstantsRequest final : } static inline const AuthenticationConstantsRequest* internal_default_instance() { return reinterpret_cast( - &_AuthenticationConstantsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(AuthenticationConstantsRequest& a, AuthenticationConstantsRequest& b) { - a.Swap(&b); + &_AuthenticationConstantsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(AuthenticationConstantsRequest& a, AuthenticationConstantsRequest& b) { a.Swap(&b); } inline void Swap(AuthenticationConstantsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -525,8 +528,8 @@ class AuthenticationConstantsRequest final : // implements Message ---------------------------------------------- - AuthenticationConstantsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AuthenticationConstantsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AuthenticationConstantsRequest& from) { @@ -536,27 +539,41 @@ class AuthenticationConstantsRequest final : void MergeFrom(const AuthenticationConstantsRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest"; } + + protected: explicit AuthenticationConstantsRequest(::google::protobuf::Arena* arena); AuthenticationConstantsRequest(::google::protobuf::Arena* arena, const AuthenticationConstantsRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AuthenticationConstantsRequest(::google::protobuf::Arena* arena, AuthenticationConstantsRequest&& from) noexcept + : AuthenticationConstantsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AuthenticationConstantsRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AuthenticationConstantsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -565,17 +582,18 @@ class AuthenticationConstantsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AuthenticationConstantsRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- class ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse final : public ::google::protobuf::internal::MapEntry< @@ -596,11 +614,17 @@ class ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse final return reinterpret_cast( &_ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_); } - static bool ValidateKey(std::string* s) { - return ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(s->data(), static_cast(s->size()), ::google::protobuf::internal::WireFormatLite::PARSE, "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.ConfigValuesEntry.key"); - } - static bool ValidateValue(void*) { return true; } - ::google::protobuf::Metadata GetMetadata() const final; + + + private: + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 1, 2, 1, + 94, 2> + _table_; + + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; }; // ------------------------------------------------------------------- @@ -624,30 +648,33 @@ class AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse final return reinterpret_cast( &_AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_); } - static bool ValidateKey(std::string* s) { - return ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(s->data(), static_cast(s->size()), ::google::protobuf::internal::WireFormatLite::PARSE, "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.ConfigValuesEntry.key"); - } - static bool ValidateValue(void*) { return true; } - ::google::protobuf::Metadata GetMetadata() const final; + + + private: + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 1, 2, 1, + 95, 2> + _table_; + + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; }; // ------------------------------------------------------------------- -class ConfigurationConstantsResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) */ { +class ConfigurationConstantsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) */ { public: inline ConfigurationConstantsResponse() : ConfigurationConstantsResponse(nullptr) {} - ~ConfigurationConstantsResponse() override; - template - explicit PROTOBUF_CONSTEXPR ConfigurationConstantsResponse(::google::protobuf::internal::ConstantInitialized); - - inline ConfigurationConstantsResponse(const ConfigurationConstantsResponse& from) - : ConfigurationConstantsResponse(nullptr, from) {} - ConfigurationConstantsResponse(ConfigurationConstantsResponse&& from) noexcept - : ConfigurationConstantsResponse() { - *this = ::std::move(from); - } + ~ConfigurationConstantsResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ConfigurationConstantsResponse( + ::google::protobuf::internal::ConstantInitialized); + inline ConfigurationConstantsResponse(const ConfigurationConstantsResponse& from) : ConfigurationConstantsResponse(nullptr, from) {} + inline ConfigurationConstantsResponse(ConfigurationConstantsResponse&& from) noexcept + : ConfigurationConstantsResponse(nullptr, std::move(from)) {} inline ConfigurationConstantsResponse& operator=(const ConfigurationConstantsResponse& from) { CopyFrom(from); return *this; @@ -655,9 +682,9 @@ class ConfigurationConstantsResponse final : inline ConfigurationConstantsResponse& operator=(ConfigurationConstantsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -689,22 +716,17 @@ class ConfigurationConstantsResponse final : } static inline const ConfigurationConstantsResponse* internal_default_instance() { return reinterpret_cast( - &_ConfigurationConstantsResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(ConfigurationConstantsResponse& a, ConfigurationConstantsResponse& b) { - a.Swap(&b); + &_ConfigurationConstantsResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(ConfigurationConstantsResponse& a, ConfigurationConstantsResponse& b) { a.Swap(&b); } inline void Swap(ConfigurationConstantsResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -718,53 +740,69 @@ class ConfigurationConstantsResponse final : // implements Message ---------------------------------------------- - ConfigurationConstantsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ConfigurationConstantsResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ConfigurationConstantsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ConfigurationConstantsResponse& from) { - ConfigurationConstantsResponse::MergeImpl(*this, from); - } + void MergeFrom(const ConfigurationConstantsResponse& from) { ConfigurationConstantsResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ConfigurationConstantsResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse"; } + + protected: explicit ConfigurationConstantsResponse(::google::protobuf::Arena* arena); ConfigurationConstantsResponse(::google::protobuf::Arena* arena, const ConfigurationConstantsResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ConfigurationConstantsResponse(::google::protobuf::Arena* arena, ConfigurationConstantsResponse&& from) noexcept + : ConfigurationConstantsResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - // accessors ------------------------------------------------------- - enum : int { kConfigValuesFieldNumber = 1, }; @@ -786,12 +824,15 @@ class ConfigurationConstantsResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 2, 86, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ConfigurationConstantsResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -799,13 +840,13 @@ class ConfigurationConstantsResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ConfigurationConstantsResponse& from_msg); ::google::protobuf::internal::MapField @@ -815,23 +856,21 @@ class ConfigurationConstantsResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AuthenticationConstantsResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) */ { +class AuthenticationConstantsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) */ { public: inline AuthenticationConstantsResponse() : AuthenticationConstantsResponse(nullptr) {} - ~AuthenticationConstantsResponse() override; - template - explicit PROTOBUF_CONSTEXPR AuthenticationConstantsResponse(::google::protobuf::internal::ConstantInitialized); - - inline AuthenticationConstantsResponse(const AuthenticationConstantsResponse& from) - : AuthenticationConstantsResponse(nullptr, from) {} - AuthenticationConstantsResponse(AuthenticationConstantsResponse&& from) noexcept - : AuthenticationConstantsResponse() { - *this = ::std::move(from); - } + ~AuthenticationConstantsResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AuthenticationConstantsResponse( + ::google::protobuf::internal::ConstantInitialized); + inline AuthenticationConstantsResponse(const AuthenticationConstantsResponse& from) : AuthenticationConstantsResponse(nullptr, from) {} + inline AuthenticationConstantsResponse(AuthenticationConstantsResponse&& from) noexcept + : AuthenticationConstantsResponse(nullptr, std::move(from)) {} inline AuthenticationConstantsResponse& operator=(const AuthenticationConstantsResponse& from) { CopyFrom(from); return *this; @@ -839,9 +878,9 @@ class AuthenticationConstantsResponse final : inline AuthenticationConstantsResponse& operator=(AuthenticationConstantsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -873,22 +912,17 @@ class AuthenticationConstantsResponse final : } static inline const AuthenticationConstantsResponse* internal_default_instance() { return reinterpret_cast( - &_AuthenticationConstantsResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(AuthenticationConstantsResponse& a, AuthenticationConstantsResponse& b) { - a.Swap(&b); + &_AuthenticationConstantsResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(AuthenticationConstantsResponse& a, AuthenticationConstantsResponse& b) { a.Swap(&b); } inline void Swap(AuthenticationConstantsResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -902,53 +936,69 @@ class AuthenticationConstantsResponse final : // implements Message ---------------------------------------------- - AuthenticationConstantsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AuthenticationConstantsResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AuthenticationConstantsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AuthenticationConstantsResponse& from) { - AuthenticationConstantsResponse::MergeImpl(*this, from); - } + void MergeFrom(const AuthenticationConstantsResponse& from) { AuthenticationConstantsResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AuthenticationConstantsResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse"; } + + protected: explicit AuthenticationConstantsResponse(::google::protobuf::Arena* arena); AuthenticationConstantsResponse(::google::protobuf::Arena* arena, const AuthenticationConstantsResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AuthenticationConstantsResponse(::google::protobuf::Arena* arena, AuthenticationConstantsResponse&& from) noexcept + : AuthenticationConstantsResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - // accessors ------------------------------------------------------- - enum : int { kConfigValuesFieldNumber = 1, }; @@ -970,12 +1020,15 @@ class AuthenticationConstantsResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 2, 87, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AuthenticationConstantsResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -983,13 +1036,13 @@ class AuthenticationConstantsResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AuthenticationConstantsResponse& from_msg); ::google::protobuf::internal::MapField @@ -1035,11 +1088,11 @@ inline int AuthenticationConstantsResponse::config_values_size() const { return _internal_config_values_size(); } inline void AuthenticationConstantsResponse::clear_config_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.config_values_.Clear(); } inline const ::google::protobuf::Map& AuthenticationConstantsResponse::_internal_config_values() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.config_values_.GetMap(); } inline const ::google::protobuf::Map& AuthenticationConstantsResponse::config_values() const ABSL_ATTRIBUTE_LIFETIME_BOUND { @@ -1047,7 +1100,7 @@ inline const ::google::protobuf::Map* AuthenticationConstantsResponse::_internal_mutable_config_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.config_values_.MutableMap(); } inline ::google::protobuf::Map* AuthenticationConstantsResponse::mutable_config_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { @@ -1069,11 +1122,11 @@ inline int ConfigurationConstantsResponse::config_values_size() const { return _internal_config_values_size(); } inline void ConfigurationConstantsResponse::clear_config_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.config_values_.Clear(); } inline const ::google::protobuf::Map& ConfigurationConstantsResponse::_internal_config_values() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.config_values_.GetMap(); } inline const ::google::protobuf::Map& ConfigurationConstantsResponse::config_values() const ABSL_ATTRIBUTE_LIFETIME_BOUND { @@ -1081,7 +1134,7 @@ inline const ::google::protobuf::Map* ConfigurationConstantsResponse::_internal_mutable_config_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.config_values_.MutableMap(); } inline ::google::protobuf::Map* ConfigurationConstantsResponse::mutable_config_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { @@ -1101,7 +1154,7 @@ inline void ConfigValue::set_has_string_value() { _impl_._oneof_case_[0] = kStringValue; } inline void ConfigValue::clear_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() == kStringValue) { _impl_.kind_.string_value_.Destroy(); clear_has_kind(); @@ -1115,7 +1168,7 @@ inline const std::string& ConfigValue::string_value() const template inline PROTOBUF_ALWAYS_INLINE void ConfigValue::set_string_value(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() != kStringValue) { clear_kind(); @@ -1131,14 +1184,14 @@ inline std::string* ConfigValue::mutable_string_value() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& ConfigValue::_internal_string_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (kind_case() != kStringValue) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.kind_.string_value_.Get(); } inline void ConfigValue::_internal_set_string_value(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() != kStringValue) { clear_kind(); @@ -1148,7 +1201,7 @@ inline void ConfigValue::_internal_set_string_value(const std::string& value) { _impl_.kind_.string_value_.Set(value, GetArena()); } inline std::string* ConfigValue::_internal_mutable_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() != kStringValue) { clear_kind(); @@ -1158,7 +1211,7 @@ inline std::string* ConfigValue::_internal_mutable_string_value() { return _impl_.kind_.string_value_.Mutable( GetArena()); } inline std::string* ConfigValue::release_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) if (kind_case() != kStringValue) { return nullptr; @@ -1167,7 +1220,7 @@ inline std::string* ConfigValue::release_string_value() { return _impl_.kind_.string_value_.Release(); } inline void ConfigValue::set_allocated_string_value(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_kind()) { clear_kind(); } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc index 25f5b8fd23a..9fa1ddf18eb 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/console.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/console.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -37,7 +40,13 @@ inline constexpr VersionedTextDocumentIdentifier::Impl_::Impl_( template PROTOBUF_CONSTEXPR VersionedTextDocumentIdentifier::VersionedTextDocumentIdentifier(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct VersionedTextDocumentIdentifierDefaultTypeInternal { PROTOBUF_CONSTEXPR VersionedTextDocumentIdentifierDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~VersionedTextDocumentIdentifierDefaultTypeInternal() {} @@ -65,7 +74,13 @@ inline constexpr TextDocumentItem::Impl_::Impl_( template PROTOBUF_CONSTEXPR TextDocumentItem::TextDocumentItem(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TextDocumentItemDefaultTypeInternal { PROTOBUF_CONSTEXPR TextDocumentItemDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TextDocumentItemDefaultTypeInternal() {} @@ -85,7 +100,13 @@ inline constexpr Position::Impl_::Impl_( template PROTOBUF_CONSTEXPR Position::Position(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct PositionDefaultTypeInternal { PROTOBUF_CONSTEXPR PositionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PositionDefaultTypeInternal() {} @@ -109,7 +130,13 @@ inline constexpr MarkupContent::Impl_::Impl_( template PROTOBUF_CONSTEXPR MarkupContent::MarkupContent(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MarkupContentDefaultTypeInternal { PROTOBUF_CONSTEXPR MarkupContentDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MarkupContentDefaultTypeInternal() {} @@ -129,7 +156,13 @@ inline constexpr LogSubscriptionRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR LogSubscriptionRequest::LogSubscriptionRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct LogSubscriptionRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR LogSubscriptionRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~LogSubscriptionRequestDefaultTypeInternal() {} @@ -154,7 +187,13 @@ inline constexpr LogSubscriptionData::Impl_::Impl_( template PROTOBUF_CONSTEXPR LogSubscriptionData::LogSubscriptionData(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct LogSubscriptionDataDefaultTypeInternal { PROTOBUF_CONSTEXPR LogSubscriptionDataDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~LogSubscriptionDataDefaultTypeInternal() {} @@ -175,7 +214,13 @@ inline constexpr GetHeapInfoResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetHeapInfoResponse::GetHeapInfoResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetHeapInfoResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetHeapInfoResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetHeapInfoResponseDefaultTypeInternal() {} @@ -186,8 +231,14 @@ struct GetHeapInfoResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetHeapInfoResponseDefaultTypeInternal _GetHeapInfoResponse_default_instance_; - template -PROTOBUF_CONSTEXPR GetHeapInfoRequest::GetHeapInfoRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR GetHeapInfoRequest::GetHeapInfoRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct GetHeapInfoRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetHeapInfoRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetHeapInfoRequestDefaultTypeInternal() {} @@ -206,7 +257,13 @@ inline constexpr GetConsoleTypesResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetConsoleTypesResponse::GetConsoleTypesResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetConsoleTypesResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetConsoleTypesResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetConsoleTypesResponseDefaultTypeInternal() {} @@ -217,8 +274,14 @@ struct GetConsoleTypesResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetConsoleTypesResponseDefaultTypeInternal _GetConsoleTypesResponse_default_instance_; - template -PROTOBUF_CONSTEXPR GetConsoleTypesRequest::GetConsoleTypesRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR GetConsoleTypesRequest::GetConsoleTypesRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct GetConsoleTypesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetConsoleTypesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetConsoleTypesRequestDefaultTypeInternal() {} @@ -241,7 +304,13 @@ inline constexpr FigureDescriptor_StringMapWithDefault::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_StringMapWithDefault::FigureDescriptor_StringMapWithDefault(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_StringMapWithDefaultDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_StringMapWithDefaultDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_StringMapWithDefaultDefaultTypeInternal() {} @@ -262,7 +331,13 @@ inline constexpr FigureDescriptor_OneClickDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_OneClickDescriptor::FigureDescriptor_OneClickDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_OneClickDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_OneClickDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_OneClickDescriptorDefaultTypeInternal() {} @@ -288,7 +363,13 @@ inline constexpr FigureDescriptor_MultiSeriesSourceDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesSourceDescriptor::FigureDescriptor_MultiSeriesSourceDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal() {} @@ -309,7 +390,13 @@ inline constexpr FigureDescriptor_DoubleMapWithDefault::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_DoubleMapWithDefault::FigureDescriptor_DoubleMapWithDefault(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal() {} @@ -330,7 +417,13 @@ inline constexpr FigureDescriptor_BusinessCalendarDescriptor_LocalDate::Impl_::I template PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_LocalDate::FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal() {} @@ -354,7 +447,13 @@ inline constexpr FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::Imp template PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal() {} @@ -375,7 +474,13 @@ inline constexpr FigureDescriptor_BoolMapWithDefault::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_BoolMapWithDefault::FigureDescriptor_BoolMapWithDefault(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal() {} @@ -396,7 +501,13 @@ inline constexpr Diagnostic_CodeDescription::Impl_::Impl_( template PROTOBUF_CONSTEXPR Diagnostic_CodeDescription::Diagnostic_CodeDescription(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct Diagnostic_CodeDescriptionDefaultTypeInternal { PROTOBUF_CONSTEXPR Diagnostic_CodeDescriptionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~Diagnostic_CodeDescriptionDefaultTypeInternal() {} @@ -418,7 +529,13 @@ inline constexpr CompletionContext::Impl_::Impl_( template PROTOBUF_CONSTEXPR CompletionContext::CompletionContext(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CompletionContextDefaultTypeInternal { PROTOBUF_CONSTEXPR CompletionContextDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CompletionContextDefaultTypeInternal() {} @@ -429,8 +546,14 @@ struct CompletionContextDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CompletionContextDefaultTypeInternal _CompletionContext_default_instance_; - template -PROTOBUF_CONSTEXPR CancelCommandResponse::CancelCommandResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CancelCommandResponse::CancelCommandResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CancelCommandResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR CancelCommandResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CancelCommandResponseDefaultTypeInternal() {} @@ -441,8 +564,14 @@ struct CancelCommandResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelCommandResponseDefaultTypeInternal _CancelCommandResponse_default_instance_; - template -PROTOBUF_CONSTEXPR CancelAutoCompleteResponse::CancelAutoCompleteResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CancelAutoCompleteResponse::CancelAutoCompleteResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CancelAutoCompleteResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR CancelAutoCompleteResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CancelAutoCompleteResponseDefaultTypeInternal() {} @@ -453,8 +582,14 @@ struct CancelAutoCompleteResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelAutoCompleteResponseDefaultTypeInternal _CancelAutoCompleteResponse_default_instance_; - template -PROTOBUF_CONSTEXPR BrowserNextResponse::BrowserNextResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR BrowserNextResponse::BrowserNextResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct BrowserNextResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR BrowserNextResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BrowserNextResponseDefaultTypeInternal() {} @@ -465,8 +600,14 @@ struct BrowserNextResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BrowserNextResponseDefaultTypeInternal _BrowserNextResponse_default_instance_; - template -PROTOBUF_CONSTEXPR BindTableToVariableResponse::BindTableToVariableResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR BindTableToVariableResponse::BindTableToVariableResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct BindTableToVariableResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR BindTableToVariableResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BindTableToVariableResponseDefaultTypeInternal() {} @@ -485,7 +626,13 @@ inline constexpr StartConsoleResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR StartConsoleResponse::StartConsoleResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct StartConsoleResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR StartConsoleResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~StartConsoleResponseDefaultTypeInternal() {} @@ -507,7 +654,13 @@ inline constexpr StartConsoleRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR StartConsoleRequest::StartConsoleRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct StartConsoleRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR StartConsoleRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~StartConsoleRequestDefaultTypeInternal() {} @@ -529,7 +682,13 @@ inline constexpr ParameterInformation::Impl_::Impl_( template PROTOBUF_CONSTEXPR ParameterInformation::ParameterInformation(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ParameterInformationDefaultTypeInternal { PROTOBUF_CONSTEXPR ParameterInformationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ParameterInformationDefaultTypeInternal() {} @@ -549,7 +708,13 @@ inline constexpr OpenDocumentRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR OpenDocumentRequest::OpenDocumentRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct OpenDocumentRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR OpenDocumentRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~OpenDocumentRequestDefaultTypeInternal() {} @@ -569,7 +734,13 @@ inline constexpr GetHoverRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetHoverRequest::GetHoverRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetHoverRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetHoverRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetHoverRequestDefaultTypeInternal() {} @@ -594,7 +765,13 @@ inline constexpr GetDiagnosticRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetDiagnosticRequest::GetDiagnosticRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetDiagnosticRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetDiagnosticRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetDiagnosticRequestDefaultTypeInternal() {} @@ -617,7 +794,13 @@ inline constexpr GetCompletionItemsRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetCompletionItemsRequest::GetCompletionItemsRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetCompletionItemsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetCompletionItemsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetCompletionItemsRequestDefaultTypeInternal() {} @@ -648,7 +831,13 @@ inline constexpr FigureDescriptor_SourceDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_SourceDescriptor::FigureDescriptor_SourceDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_SourceDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_SourceDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_SourceDescriptorDefaultTypeInternal() {} @@ -682,7 +871,13 @@ inline constexpr FigureDescriptor_MultiSeriesDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesDescriptor::FigureDescriptor_MultiSeriesDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal() {} @@ -702,7 +897,13 @@ inline constexpr FigureDescriptor_BusinessCalendarDescriptor_Holiday::Impl_::Imp template PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_Holiday::FigureDescriptor_BusinessCalendarDescriptor_Holiday(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal() {} @@ -724,7 +925,13 @@ inline constexpr ExecuteCommandRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExecuteCommandRequest::ExecuteCommandRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExecuteCommandRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ExecuteCommandRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExecuteCommandRequestDefaultTypeInternal() {} @@ -744,7 +951,13 @@ inline constexpr DocumentRange::Impl_::Impl_( template PROTOBUF_CONSTEXPR DocumentRange::DocumentRange(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct DocumentRangeDefaultTypeInternal { PROTOBUF_CONSTEXPR DocumentRangeDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DocumentRangeDefaultTypeInternal() {} @@ -764,7 +977,13 @@ inline constexpr CloseDocumentRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CloseDocumentRequest::CloseDocumentRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CloseDocumentRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CloseDocumentRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CloseDocumentRequestDefaultTypeInternal() {} @@ -784,7 +1003,13 @@ inline constexpr CancelCommandRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CancelCommandRequest::CancelCommandRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CancelCommandRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CancelCommandRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CancelCommandRequestDefaultTypeInternal() {} @@ -804,7 +1029,13 @@ inline constexpr CancelAutoCompleteRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CancelAutoCompleteRequest::CancelAutoCompleteRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CancelAutoCompleteRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CancelAutoCompleteRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CancelAutoCompleteRequestDefaultTypeInternal() {} @@ -827,7 +1058,13 @@ inline constexpr BindTableToVariableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR BindTableToVariableRequest::BindTableToVariableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct BindTableToVariableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR BindTableToVariableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BindTableToVariableRequestDefaultTypeInternal() {} @@ -849,7 +1086,13 @@ inline constexpr TextEdit::Impl_::Impl_( template PROTOBUF_CONSTEXPR TextEdit::TextEdit(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TextEditDefaultTypeInternal { PROTOBUF_CONSTEXPR TextEditDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TextEditDefaultTypeInternal() {} @@ -873,7 +1116,13 @@ inline constexpr SignatureInformation::Impl_::Impl_( template PROTOBUF_CONSTEXPR SignatureInformation::SignatureInformation(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SignatureInformationDefaultTypeInternal { PROTOBUF_CONSTEXPR SignatureInformationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SignatureInformationDefaultTypeInternal() {} @@ -893,7 +1142,13 @@ inline constexpr GetHoverResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetHoverResponse::GetHoverResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetHoverResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetHoverResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetHoverResponseDefaultTypeInternal() {} @@ -941,7 +1196,13 @@ inline constexpr FigureDescriptor_SeriesDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_SeriesDescriptor::FigureDescriptor_SeriesDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_SeriesDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_SeriesDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_SeriesDescriptorDefaultTypeInternal() {} @@ -969,7 +1230,13 @@ inline constexpr FigureDescriptor_BusinessCalendarDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor::FigureDescriptor_BusinessCalendarDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal() {} @@ -1004,7 +1271,13 @@ inline constexpr Diagnostic::Impl_::Impl_( template PROTOBUF_CONSTEXPR Diagnostic::Diagnostic(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct DiagnosticDefaultTypeInternal { PROTOBUF_CONSTEXPR DiagnosticDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DiagnosticDefaultTypeInternal() {} @@ -1027,7 +1300,13 @@ inline constexpr ChangeDocumentRequest_TextDocumentContentChangeEvent::Impl_::Im template PROTOBUF_CONSTEXPR ChangeDocumentRequest_TextDocumentContentChangeEvent::ChangeDocumentRequest_TextDocumentContentChangeEvent(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal { PROTOBUF_CONSTEXPR ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal() {} @@ -1048,7 +1327,13 @@ inline constexpr GetSignatureHelpResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetSignatureHelpResponse::GetSignatureHelpResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetSignatureHelpResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetSignatureHelpResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetSignatureHelpResponseDefaultTypeInternal() {} @@ -1073,7 +1358,13 @@ inline constexpr GetPullDiagnosticResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetPullDiagnosticResponse::GetPullDiagnosticResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetPullDiagnosticResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetPullDiagnosticResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetPullDiagnosticResponseDefaultTypeInternal() {} @@ -1096,7 +1387,13 @@ inline constexpr GetPublishDiagnosticResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetPublishDiagnosticResponse::GetPublishDiagnosticResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetPublishDiagnosticResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetPublishDiagnosticResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetPublishDiagnosticResponseDefaultTypeInternal() {} @@ -1147,7 +1444,13 @@ inline constexpr FigureDescriptor_AxisDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_AxisDescriptor::FigureDescriptor_AxisDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_AxisDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_AxisDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_AxisDescriptorDefaultTypeInternal() {} @@ -1187,7 +1490,13 @@ inline constexpr CompletionItem::Impl_::Impl_( template PROTOBUF_CONSTEXPR CompletionItem::CompletionItem(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CompletionItemDefaultTypeInternal { PROTOBUF_CONSTEXPR CompletionItemDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CompletionItemDefaultTypeInternal() {} @@ -1208,7 +1517,13 @@ inline constexpr ChangeDocumentRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ChangeDocumentRequest::ChangeDocumentRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ChangeDocumentRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ChangeDocumentRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ChangeDocumentRequestDefaultTypeInternal() {} @@ -1232,7 +1547,13 @@ inline constexpr SignatureHelpContext::Impl_::Impl_( template PROTOBUF_CONSTEXPR SignatureHelpContext::SignatureHelpContext(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SignatureHelpContextDefaultTypeInternal { PROTOBUF_CONSTEXPR SignatureHelpContextDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SignatureHelpContextDefaultTypeInternal() {} @@ -1253,7 +1574,13 @@ inline constexpr GetCompletionItemsResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetCompletionItemsResponse::GetCompletionItemsResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetCompletionItemsResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR GetCompletionItemsResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetCompletionItemsResponseDefaultTypeInternal() {} @@ -1296,7 +1623,13 @@ inline constexpr FigureDescriptor_ChartDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor_ChartDescriptor::FigureDescriptor_ChartDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptor_ChartDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptor_ChartDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptor_ChartDescriptorDefaultTypeInternal() {} @@ -1318,7 +1651,13 @@ inline constexpr ExecuteCommandResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExecuteCommandResponse::ExecuteCommandResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExecuteCommandResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ExecuteCommandResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExecuteCommandResponseDefaultTypeInternal() {} @@ -1339,7 +1678,13 @@ inline constexpr GetSignatureHelpRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetSignatureHelpRequest::GetSignatureHelpRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetSignatureHelpRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetSignatureHelpRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetSignatureHelpRequestDefaultTypeInternal() {} @@ -1371,7 +1716,13 @@ inline constexpr FigureDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR FigureDescriptor::FigureDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FigureDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR FigureDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FigureDescriptorDefaultTypeInternal() {} @@ -1393,7 +1744,13 @@ inline constexpr AutoCompleteResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR AutoCompleteResponse::AutoCompleteResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AutoCompleteResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR AutoCompleteResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AutoCompleteResponseDefaultTypeInternal() {} @@ -1415,7 +1772,13 @@ inline constexpr AutoCompleteRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AutoCompleteRequest::AutoCompleteRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AutoCompleteRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AutoCompleteRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AutoCompleteRequestDefaultTypeInternal() {} @@ -1432,913 +1795,913 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fconsole_2eproto[60]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[9]; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fconsole_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fconsole_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, _impl_.console_types_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_.session_type_), - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _impl_.result_id_), - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.max_memory_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.total_memory_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.free_memory_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _impl_.last_seen_log_timestamp_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _impl_.levels_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.micros_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.log_level_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.message_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_.code_), - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_.error_message_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_.changes_), - ~0u, - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.variable_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.table_id_), - 0, - ~0u, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_.command_id_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_.request_id_), - 0, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.request_id_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.request_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.request_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.success_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.response_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_.text_document_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.uri_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.language_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.version_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.text_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_.text_document_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.text_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.text_document_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.content_changes_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_.start_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_.end_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _impl_.uri_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _impl_.version_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _impl_.line_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _impl_.character_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _impl_.kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _impl_.value_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.console_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.context_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.text_document_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.position_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.request_id_), - 0, - 1, - 2, - 3, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _impl_.trigger_kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _impl_.trigger_character_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.items_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.request_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.success_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.start_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.length_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.detail_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.deprecated_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.preselect_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.text_edit_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.sort_text_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.filter_text_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.insert_text_format_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.additional_text_edits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.commit_characters_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.documentation_), - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_.range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_.text_), - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.context_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.text_document_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.position_), - 0, - 1, - 2, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.trigger_kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.trigger_character_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.is_retrigger_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.active_signature_help_), - ~0u, - 0, - ~0u, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.signatures_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.active_signature_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.active_parameter_), - ~0u, - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.documentation_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.parameters_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.active_parameter_), - ~0u, - 0, - ~0u, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_.label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_.documentation_), - ~0u, - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_.text_document_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_.position_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_.contents_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_.range_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.text_document_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.identifier_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.previous_result_id_), - 2, - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.items_), - ~0u, - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.uri_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.version_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.diagnostics_), - ~0u, - 0, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription, _impl_.href_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.severity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.code_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.code_description_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.source_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.message_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.tags_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.data_), - 3, - ~0u, - 0, - 4, - 1, - ~0u, - ~0u, - 2, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.colspan_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.rowspan_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.series_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.multi_series_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.axes_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.chart_type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_font_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.show_legend_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.legend_font_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.legend_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.is3d_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.row_), - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.plot_style_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.lines_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shapes_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.gradient_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.line_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.point_label_format_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.x_tool_tip_pattern_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.y_tool_tip_pattern_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_size_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.data_sources_), - ~0u, - ~0u, - 3, - 4, - ~0u, - ~0u, - 0, - 1, - 2, - ~0u, - 5, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.line_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.lines_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.points_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.gradient_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_format_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.x_tool_tip_pattern_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.y_tool_tip_pattern_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_size_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_shape_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.data_sources_), - ~0u, - ~0u, - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.default_string_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.keys_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.values_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.default_double_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.keys_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.values_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.default_bool_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.keys_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.values_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.format_type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.position_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.log_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.label_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.label_font_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.ticks_font_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.format_pattern_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.min_range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.max_range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.minor_ticks_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.major_ticks_visible_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.minor_tick_count_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.gap_between_major_ticks_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.major_tick_locations_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.tick_label_angle_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.invert_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.is_time_axis_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.business_calendar_descriptor_), - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 2, - ~0u, - ~0u, - ~0u, - ~0u, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.open_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.close_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.date_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.business_periods_), - 0, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.month_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.time_zone_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_days_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_periods_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.holidays_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.axis_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.axis_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.column_type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.one_click_), - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.columns_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.column_types_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.require_all_filters_to_display_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_font_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_color_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.update_interval_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.cols_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.rows_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.charts_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.errors_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, +const ::uint32_t + TableStruct_deephaven_2fproto_2fconsole_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, _impl_.console_types_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, _impl_.session_type_), + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, _impl_.result_id_), + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.max_memory_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.total_memory_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, _impl_.free_memory_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _impl_.last_seen_log_timestamp_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, _impl_.levels_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.micros_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.log_level_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData, _impl_.message_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, _impl_.code_), + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_.error_message_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, _impl_.changes_), + ~0u, + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.variable_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, _impl_.table_id_), + 0, + ~0u, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, _impl_.command_id_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, _impl_.request_id_), + 0, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.request_id_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_.request_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.request_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.success_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_.response_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest, _impl_.text_document_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.uri_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.language_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.version_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem, _impl_.text_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest, _impl_.text_document_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.text_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.text_document_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest, _impl_.content_changes_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_.start_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::DocumentRange, _impl_.end_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _impl_.uri_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier, _impl_.version_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _impl_.line_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Position, _impl_.character_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _impl_.kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::MarkupContent, _impl_.value_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.console_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.context_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.text_document_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.position_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest, _impl_.request_id_), + 0, + 1, + 2, + 3, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _impl_.trigger_kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionContext, _impl_.trigger_character_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.items_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.request_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse, _impl_.success_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.start_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.length_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.detail_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.deprecated_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.preselect_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.text_edit_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.sort_text_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.filter_text_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.insert_text_format_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.additional_text_edits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.commit_characters_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::CompletionItem, _impl_.documentation_), + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_.range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::TextEdit, _impl_.text_), + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.context_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.text_document_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest, _impl_.position_), + 0, + 1, + 2, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.trigger_kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.trigger_character_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.is_retrigger_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext, _impl_.active_signature_help_), + ~0u, + 0, + ~0u, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.signatures_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.active_signature_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse, _impl_.active_parameter_), + ~0u, + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.documentation_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.parameters_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::SignatureInformation, _impl_.active_parameter_), + ~0u, + 0, + ~0u, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_.label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::ParameterInformation, _impl_.documentation_), + ~0u, + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_.text_document_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest, _impl_.position_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_.contents_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse, _impl_.range_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.text_document_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.identifier_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest, _impl_.previous_result_id_), + 2, + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse, _impl_.items_), + ~0u, + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.uri_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.version_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse, _impl_.diagnostics_), + ~0u, + 0, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription, _impl_.href_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.severity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.code_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.code_description_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.source_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.message_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.tags_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::Diagnostic, _impl_.data_), + 3, + ~0u, + 0, + 4, + 1, + ~0u, + ~0u, + 2, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.colspan_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.rowspan_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.series_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.multi_series_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.axes_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.chart_type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_font_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.title_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.show_legend_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.legend_font_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.legend_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.is3d_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor, _impl_.row_), + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.plot_style_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.lines_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shapes_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.gradient_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.line_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.point_label_format_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.x_tool_tip_pattern_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.y_tool_tip_pattern_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_size_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.shape_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor, _impl_.data_sources_), + ~0u, + ~0u, + 3, + 4, + ~0u, + ~0u, + 0, + 1, + 2, + ~0u, + 5, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.line_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.lines_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.points_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.gradient_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_format_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.x_tool_tip_pattern_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.y_tool_tip_pattern_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_size_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.point_shape_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor, _impl_.data_sources_), + ~0u, + ~0u, + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.default_string_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.keys_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault, _impl_.values_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.default_double_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.keys_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault, _impl_.values_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.default_bool_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.keys_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault, _impl_.values_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.format_type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.position_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.log_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.label_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.label_font_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.ticks_font_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.format_pattern_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.min_range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.max_range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.minor_ticks_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.major_ticks_visible_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.minor_tick_count_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.gap_between_major_ticks_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.major_tick_locations_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.tick_label_angle_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.invert_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.is_time_axis_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor, _impl_.business_calendar_descriptor_), + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 2, + ~0u, + ~0u, + ~0u, + ~0u, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.open_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.close_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.date_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.business_periods_), + 0, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.month_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.time_zone_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_days_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_periods_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor, _impl_.holidays_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.axis_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.axis_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.column_type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor, _impl_.one_click_), + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.columns_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.column_types_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor, _impl_.require_all_filters_to_display_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_font_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.title_color_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.update_interval_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.cols_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.rows_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.charts_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor, _impl_.errors_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest)}, {8, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse)}, {17, 27, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest)}, @@ -2400,7 +2763,6 @@ static const ::_pbi::MigrationSchema {862, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor)}, {873, 889, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::script::grpc::_GetConsoleTypesRequest_default_instance_._instance, &::io::deephaven::proto::backplane::script::grpc::_GetConsoleTypesResponse_default_instance_._instance, @@ -2463,7 +2825,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_OneClickDescriptor_default_instance_._instance, &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fconsole_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fconsole_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\035deephaven/proto/console.proto\022(io.deep" "haven.proto.backplane.script.grpc\032\034deeph" "aven/proto/ticket.proto\032!deephaven/proto" @@ -2867,7 +3230,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fconsole_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconsole_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconsole_2eproto = { false, false, 15824, @@ -2880,28 +3243,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconsole_2epro schemas, file_default_instances, TableStruct_deephaven_2fproto_2fconsole_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto, file_level_service_descriptors_deephaven_2fproto_2fconsole_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fconsole_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fconsole_2eproto(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); namespace io { namespace deephaven { namespace proto { @@ -3143,13 +3487,21 @@ class GetConsoleTypesRequest::_Internal { }; GetConsoleTypesRequest::GetConsoleTypesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest) } GetConsoleTypesRequest::GetConsoleTypesRequest( ::google::protobuf::Arena* arena, const GetConsoleTypesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetConsoleTypesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -3158,6 +3510,61 @@ GetConsoleTypesRequest::GetConsoleTypesRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetConsoleTypesRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_GetConsoleTypesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetConsoleTypesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &GetConsoleTypesRequest::ByteSizeLong, + &GetConsoleTypesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetConsoleTypesRequest, _impl_._cached_size_), + false, + }, + &GetConsoleTypesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetConsoleTypesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> GetConsoleTypesRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -3167,9 +3574,7 @@ GetConsoleTypesRequest::GetConsoleTypesRequest( ::google::protobuf::Metadata GetConsoleTypesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[0]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -3178,25 +3583,33 @@ class GetConsoleTypesResponse::_Internal { }; GetConsoleTypesResponse::GetConsoleTypesResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) } inline PROTOBUF_NDEBUG_INLINE GetConsoleTypesResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse& from_msg) : console_types_{visibility, arena, from.console_types_}, _cached_size_{0} {} GetConsoleTypesResponse::GetConsoleTypesResponse( ::google::protobuf::Arena* arena, const GetConsoleTypesResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetConsoleTypesResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) } @@ -3219,24 +3632,34 @@ inline void GetConsoleTypesResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetConsoleTypesResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.console_types_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetConsoleTypesResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetConsoleTypesResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetConsoleTypesResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetConsoleTypesResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetConsoleTypesResponse::ByteSizeLong, + &GetConsoleTypesResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetConsoleTypesResponse, _impl_._cached_size_), + false, + }, + &GetConsoleTypesResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetConsoleTypesResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 86, 2> GetConsoleTypesResponse::_table_ = { { @@ -3249,8 +3672,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 86, 2> GetConsoleTypesResponse::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_GetConsoleTypesResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string console_types = 1; {::_pbi::TcParser::FastUR1, @@ -3270,56 +3697,80 @@ const ::_pbi::TcParseTable<0, 1, 0, 86, 2> GetConsoleTypesResponse::_table_ = { }}, }; -::uint8_t* GetConsoleTypesResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated string console_types = 1; - for (int i = 0, n = this->_internal_console_types_size(); i < n; ++i) { - const auto& s = this->_internal_console_types().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types"); - target = stream->WriteString(1, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - return target; -} - -::size_t GetConsoleTypesResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetConsoleTypesResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string console_types = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_console_types().size()); - for (int i = 0, n = _internal_console_types().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_console_types().Get(i)); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetConsoleTypesResponse::_class_data_ = { - GetConsoleTypesResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetConsoleTypesResponse::GetClassData() const { - return &_class_data_; + _impl_.console_types_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetConsoleTypesResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetConsoleTypesResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetConsoleTypesResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetConsoleTypesResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetConsoleTypesResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated string console_types = 1; + for (int i = 0, n = this_._internal_console_types_size(); i < n; ++i) { + const auto& s = this_._internal_console_types().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types"); + target = stream->WriteString(1, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetConsoleTypesResponse::ByteSizeLong(const MessageLite& base) { + const GetConsoleTypesResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetConsoleTypesResponse::ByteSizeLong() const { + const GetConsoleTypesResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string console_types = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_console_types().size()); + for (int i = 0, n = this_._internal_console_types().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_console_types().Get(i)); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetConsoleTypesResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) @@ -3338,13 +3789,7 @@ void GetConsoleTypesResponse::CopyFrom(const GetConsoleTypesResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetConsoleTypesResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetConsoleTypesResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetConsoleTypesResponse::InternalSwap(GetConsoleTypesResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -3352,39 +3797,35 @@ void GetConsoleTypesResponse::InternalSwap(GetConsoleTypesResponse* PROTOBUF_RES } ::google::protobuf::Metadata GetConsoleTypesResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class StartConsoleRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const StartConsoleRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleRequest::_Internal::result_id(const StartConsoleRequest* msg) { - return *msg->_impl_.result_id_; -} void StartConsoleRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } StartConsoleRequest::StartConsoleRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) } inline PROTOBUF_NDEBUG_INLINE StartConsoleRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, session_type_(arena, from.session_type_) {} @@ -3392,16 +3833,20 @@ inline PROTOBUF_NDEBUG_INLINE StartConsoleRequest::Impl_::Impl_( StartConsoleRequest::StartConsoleRequest( ::google::protobuf::Arena* arena, const StartConsoleRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE StartConsoleRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) } @@ -3427,30 +3872,34 @@ inline void StartConsoleRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void StartConsoleRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.session_type_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* StartConsoleRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + StartConsoleRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_StartConsoleRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &StartConsoleRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &StartConsoleRequest::ByteSizeLong, + &StartConsoleRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_._cached_size_), + false, + }, + &StartConsoleRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* StartConsoleRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 81, 2> StartConsoleRequest::_table_ = { { @@ -3463,8 +3912,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 81, 2> StartConsoleRequest::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_StartConsoleRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string session_type = 2; {::_pbi::TcParser::FastUS1, @@ -3490,73 +3943,102 @@ const ::_pbi::TcParseTable<1, 2, 1, 81, 2> StartConsoleRequest::_table_ = { }}, }; -::uint8_t* StartConsoleRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // string session_type = 2; - if (!this->_internal_session_type().empty()) { - const std::string& _s = this->_internal_session_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - return target; -} - -::size_t StartConsoleRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void StartConsoleRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string session_type = 2; - if (!this->_internal_session_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_session_type()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + _impl_.session_type_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData StartConsoleRequest::_class_data_ = { - StartConsoleRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* StartConsoleRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void StartConsoleRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* StartConsoleRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const StartConsoleRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* StartConsoleRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const StartConsoleRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // string session_type = 2; + if (!this_._internal_session_type().empty()) { + const std::string& _s = this_._internal_session_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t StartConsoleRequest::ByteSizeLong(const MessageLite& base) { + const StartConsoleRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t StartConsoleRequest::ByteSizeLong() const { + const StartConsoleRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string session_type = 2; + if (!this_._internal_session_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_session_type()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void StartConsoleRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -3565,10 +4047,17 @@ void StartConsoleRequest::MergeImpl(::google::protobuf::Message& to_msg, const : if (!from._internal_session_type().empty()) { _this->_internal_set_session_type(from._internal_session_type()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -3579,13 +4068,7 @@ void StartConsoleRequest::CopyFrom(const StartConsoleRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool StartConsoleRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* StartConsoleRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void StartConsoleRequest::InternalSwap(StartConsoleRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -3597,55 +4080,55 @@ void StartConsoleRequest::InternalSwap(StartConsoleRequest* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata StartConsoleRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class StartConsoleResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const StartConsoleResponse* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleResponse::_Internal::result_id(const StartConsoleResponse* msg) { - return *msg->_impl_.result_id_; -} void StartConsoleResponse::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } StartConsoleResponse::StartConsoleResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) } inline PROTOBUF_NDEBUG_INLINE StartConsoleResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} StartConsoleResponse::StartConsoleResponse( ::google::protobuf::Arena* arena, const StartConsoleResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE StartConsoleResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) } @@ -3669,29 +4152,34 @@ inline void StartConsoleResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void StartConsoleResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* StartConsoleResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + StartConsoleResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_StartConsoleResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &StartConsoleResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &StartConsoleResponse::ByteSizeLong, + &StartConsoleResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_._cached_size_), + false, + }, + &StartConsoleResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* StartConsoleResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StartConsoleResponse::_table_ = { { @@ -3704,8 +4192,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StartConsoleResponse::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_StartConsoleResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; {::_pbi::TcParser::FastMtS1, @@ -3722,68 +4214,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StartConsoleResponse::_table_ = { }}, }; -::uint8_t* StartConsoleResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - return target; -} - -::size_t StartConsoleResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void StartConsoleResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData StartConsoleResponse::_class_data_ = { - StartConsoleResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* StartConsoleResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void StartConsoleResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* StartConsoleResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const StartConsoleResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* StartConsoleResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const StartConsoleResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t StartConsoleResponse::ByteSizeLong(const MessageLite& base) { + const StartConsoleResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t StartConsoleResponse::ByteSizeLong() const { + const StartConsoleResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void StartConsoleResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -3794,13 +4319,7 @@ void StartConsoleResponse::CopyFrom(const StartConsoleResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool StartConsoleResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* StartConsoleResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void StartConsoleResponse::InternalSwap(StartConsoleResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -3809,9 +4328,7 @@ void StartConsoleResponse::InternalSwap(StartConsoleResponse* PROTOBUF_RESTRICT } ::google::protobuf::Metadata StartConsoleResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -3820,13 +4337,21 @@ class GetHeapInfoRequest::_Internal { }; GetHeapInfoRequest::GetHeapInfoRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest) } GetHeapInfoRequest::GetHeapInfoRequest( ::google::protobuf::Arena* arena, const GetHeapInfoRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetHeapInfoRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -3835,6 +4360,61 @@ GetHeapInfoRequest::GetHeapInfoRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetHeapInfoRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_GetHeapInfoRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetHeapInfoRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &GetHeapInfoRequest::ByteSizeLong, + &GetHeapInfoRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetHeapInfoRequest, _impl_._cached_size_), + false, + }, + &GetHeapInfoRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetHeapInfoRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> GetHeapInfoRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -3844,9 +4424,7 @@ GetHeapInfoRequest::GetHeapInfoRequest( ::google::protobuf::Metadata GetHeapInfoRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[4]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -3855,7 +4433,11 @@ class GetHeapInfoResponse::_Internal { }; GetHeapInfoResponse::GetHeapInfoResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) } @@ -3888,26 +4470,34 @@ inline void GetHeapInfoResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetHeapInfoResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.max_memory_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.free_memory_) - - reinterpret_cast(&_impl_.max_memory_)) + sizeof(_impl_.free_memory_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetHeapInfoResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetHeapInfoResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetHeapInfoResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetHeapInfoResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetHeapInfoResponse::ByteSizeLong, + &GetHeapInfoResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_._cached_size_), + false, + }, + &GetHeapInfoResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetHeapInfoResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 0, 2> GetHeapInfoResponse::_table_ = { { @@ -3920,8 +4510,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 0, 2> GetHeapInfoResponse::_table_ = { 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_GetHeapInfoResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // int64 max_memory = 1 [jstype = JS_STRING]; @@ -3951,81 +4545,101 @@ const ::_pbi::TcParseTable<2, 3, 0, 0, 2> GetHeapInfoResponse::_table_ = { }}, }; -::uint8_t* GetHeapInfoResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) +PROTOBUF_NOINLINE void GetHeapInfoResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int64 max_memory = 1 [jstype = JS_STRING]; - if (this->_internal_max_memory() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<1>( - stream, this->_internal_max_memory(), target); - } + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - // int64 total_memory = 2 [jstype = JS_STRING]; - if (this->_internal_total_memory() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<2>( - stream, this->_internal_total_memory(), target); - } + ::memset(&_impl_.max_memory_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.free_memory_) - + reinterpret_cast(&_impl_.max_memory_)) + sizeof(_impl_.free_memory_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} - // int64 free_memory = 3 [jstype = JS_STRING]; - if (this->_internal_free_memory() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<3>( - stream, this->_internal_free_memory(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) - return target; -} - -::size_t GetHeapInfoResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // int64 max_memory = 1 [jstype = JS_STRING]; - if (this->_internal_max_memory() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_max_memory()); - } - - // int64 total_memory = 2 [jstype = JS_STRING]; - if (this->_internal_total_memory() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_total_memory()); - } - - // int64 free_memory = 3 [jstype = JS_STRING]; - if (this->_internal_free_memory() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_free_memory()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetHeapInfoResponse::_class_data_ = { - GetHeapInfoResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetHeapInfoResponse::GetClassData() const { - return &_class_data_; -} - -void GetHeapInfoResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetHeapInfoResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetHeapInfoResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetHeapInfoResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetHeapInfoResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int64 max_memory = 1 [jstype = JS_STRING]; + if (this_._internal_max_memory() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<1>( + stream, this_._internal_max_memory(), target); + } + + // int64 total_memory = 2 [jstype = JS_STRING]; + if (this_._internal_total_memory() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<2>( + stream, this_._internal_total_memory(), target); + } + + // int64 free_memory = 3 [jstype = JS_STRING]; + if (this_._internal_free_memory() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<3>( + stream, this_._internal_free_memory(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetHeapInfoResponse::ByteSizeLong(const MessageLite& base) { + const GetHeapInfoResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetHeapInfoResponse::ByteSizeLong() const { + const GetHeapInfoResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // int64 max_memory = 1 [jstype = JS_STRING]; + if (this_._internal_max_memory() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_max_memory()); + } + // int64 total_memory = 2 [jstype = JS_STRING]; + if (this_._internal_total_memory() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_total_memory()); + } + // int64 free_memory = 3 [jstype = JS_STRING]; + if (this_._internal_free_memory() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_free_memory()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetHeapInfoResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) @@ -4034,13 +4648,13 @@ void GetHeapInfoResponse::MergeImpl(::google::protobuf::Message& to_msg, const : (void) cached_has_bits; if (from._internal_max_memory() != 0) { - _this->_internal_set_max_memory(from._internal_max_memory()); + _this->_impl_.max_memory_ = from._impl_.max_memory_; } if (from._internal_total_memory() != 0) { - _this->_internal_set_total_memory(from._internal_total_memory()); + _this->_impl_.total_memory_ = from._impl_.total_memory_; } if (from._internal_free_memory() != 0) { - _this->_internal_set_free_memory(from._internal_free_memory()); + _this->_impl_.free_memory_ = from._impl_.free_memory_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -4052,13 +4666,7 @@ void GetHeapInfoResponse::CopyFrom(const GetHeapInfoResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetHeapInfoResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetHeapInfoResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetHeapInfoResponse::InternalSwap(GetHeapInfoResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -4071,9 +4679,7 @@ void GetHeapInfoResponse::InternalSwap(GetHeapInfoResponse* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata GetHeapInfoResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[5]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -4082,25 +4688,33 @@ class LogSubscriptionRequest::_Internal { }; LogSubscriptionRequest::LogSubscriptionRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) } inline PROTOBUF_NDEBUG_INLINE LogSubscriptionRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& from_msg) : levels_{visibility, arena, from.levels_}, _cached_size_{0} {} LogSubscriptionRequest::LogSubscriptionRequest( ::google::protobuf::Arena* arena, const LogSubscriptionRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE LogSubscriptionRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.last_seen_log_timestamp_ = from._impl_.last_seen_log_timestamp_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) @@ -4125,25 +4739,34 @@ inline void LogSubscriptionRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void LogSubscriptionRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.levels_.Clear(); - _impl_.last_seen_log_timestamp_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* LogSubscriptionRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + LogSubscriptionRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_LogSubscriptionRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &LogSubscriptionRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &LogSubscriptionRequest::ByteSizeLong, + &LogSubscriptionRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(LogSubscriptionRequest, _impl_._cached_size_), + false, + }, + &LogSubscriptionRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* LogSubscriptionRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 78, 2> LogSubscriptionRequest::_table_ = { { @@ -4156,8 +4779,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 78, 2> LogSubscriptionRequest::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_LogSubscriptionRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string levels = 2; {::_pbi::TcParser::FastUR1, @@ -4183,69 +4810,95 @@ const ::_pbi::TcParseTable<1, 2, 0, 78, 2> LogSubscriptionRequest::_table_ = { }}, }; -::uint8_t* LogSubscriptionRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; - if (this->_internal_last_seen_log_timestamp() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<1>( - stream, this->_internal_last_seen_log_timestamp(), target); - } - - // repeated string levels = 2; - for (int i = 0, n = this->_internal_levels_size(); i < n; ++i) { - const auto& s = this->_internal_levels().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels"); - target = stream->WriteString(2, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - return target; -} - -::size_t LogSubscriptionRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void LogSubscriptionRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string levels = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_levels().size()); - for (int i = 0, n = _internal_levels().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_levels().Get(i)); - } - // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; - if (this->_internal_last_seen_log_timestamp() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_last_seen_log_timestamp()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData LogSubscriptionRequest::_class_data_ = { - LogSubscriptionRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* LogSubscriptionRequest::GetClassData() const { - return &_class_data_; + _impl_.levels_.Clear(); + _impl_.last_seen_log_timestamp_ = ::int64_t{0}; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void LogSubscriptionRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* LogSubscriptionRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const LogSubscriptionRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* LogSubscriptionRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const LogSubscriptionRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; + if (this_._internal_last_seen_log_timestamp() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<1>( + stream, this_._internal_last_seen_log_timestamp(), target); + } + + // repeated string levels = 2; + for (int i = 0, n = this_._internal_levels_size(); i < n; ++i) { + const auto& s = this_._internal_levels().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels"); + target = stream->WriteString(2, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t LogSubscriptionRequest::ByteSizeLong(const MessageLite& base) { + const LogSubscriptionRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t LogSubscriptionRequest::ByteSizeLong() const { + const LogSubscriptionRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string levels = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_levels().size()); + for (int i = 0, n = this_._internal_levels().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_levels().Get(i)); + } + } + } + { + // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; + if (this_._internal_last_seen_log_timestamp() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_last_seen_log_timestamp()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void LogSubscriptionRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) @@ -4255,7 +4908,7 @@ void LogSubscriptionRequest::MergeImpl(::google::protobuf::Message& to_msg, cons _this->_internal_mutable_levels()->MergeFrom(from._internal_levels()); if (from._internal_last_seen_log_timestamp() != 0) { - _this->_internal_set_last_seen_log_timestamp(from._internal_last_seen_log_timestamp()); + _this->_impl_.last_seen_log_timestamp_ = from._impl_.last_seen_log_timestamp_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -4267,13 +4920,7 @@ void LogSubscriptionRequest::CopyFrom(const LogSubscriptionRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool LogSubscriptionRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* LogSubscriptionRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void LogSubscriptionRequest::InternalSwap(LogSubscriptionRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -4282,9 +4929,7 @@ void LogSubscriptionRequest::InternalSwap(LogSubscriptionRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata LogSubscriptionRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -4293,13 +4938,17 @@ class LogSubscriptionData::_Internal { }; LogSubscriptionData::LogSubscriptionData(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) } inline PROTOBUF_NDEBUG_INLINE LogSubscriptionData::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData& from_msg) : log_level_(arena, from.log_level_), message_(arena, from.message_), _cached_size_{0} {} @@ -4307,12 +4956,16 @@ inline PROTOBUF_NDEBUG_INLINE LogSubscriptionData::Impl_::Impl_( LogSubscriptionData::LogSubscriptionData( ::google::protobuf::Arena* arena, const LogSubscriptionData& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE LogSubscriptionData* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.micros_ = from._impl_.micros_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) @@ -4340,26 +4993,34 @@ inline void LogSubscriptionData::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void LogSubscriptionData::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.log_level_.ClearToEmpty(); - _impl_.message_.ClearToEmpty(); - _impl_.micros_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* LogSubscriptionData::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + LogSubscriptionData::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_LogSubscriptionData_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &LogSubscriptionData::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &LogSubscriptionData::ByteSizeLong, + &LogSubscriptionData::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_._cached_size_), + false, + }, + &LogSubscriptionData::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* LogSubscriptionData::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 85, 2> LogSubscriptionData::_table_ = { { @@ -4372,8 +5033,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 85, 2> LogSubscriptionData::_table_ = { 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_LogSubscriptionData_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // int64 micros = 1 [jstype = JS_STRING]; @@ -4407,83 +5072,103 @@ const ::_pbi::TcParseTable<2, 3, 0, 85, 2> LogSubscriptionData::_table_ = { }}, }; -::uint8_t* LogSubscriptionData::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int64 micros = 1 [jstype = JS_STRING]; - if (this->_internal_micros() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<1>( - stream, this->_internal_micros(), target); - } - - // string log_level = 2; - if (!this->_internal_log_level().empty()) { - const std::string& _s = this->_internal_log_level(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // string message = 3; - if (!this->_internal_message().empty()) { - const std::string& _s = this->_internal_message(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - return target; -} - -::size_t LogSubscriptionData::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void LogSubscriptionData::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string log_level = 2; - if (!this->_internal_log_level().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_log_level()); - } - - // string message = 3; - if (!this->_internal_message().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_message()); - } - - // int64 micros = 1 [jstype = JS_STRING]; - if (this->_internal_micros() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_micros()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData LogSubscriptionData::_class_data_ = { - LogSubscriptionData::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* LogSubscriptionData::GetClassData() const { - return &_class_data_; + _impl_.log_level_.ClearToEmpty(); + _impl_.message_.ClearToEmpty(); + _impl_.micros_ = ::int64_t{0}; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void LogSubscriptionData::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* LogSubscriptionData::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const LogSubscriptionData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* LogSubscriptionData::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const LogSubscriptionData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int64 micros = 1 [jstype = JS_STRING]; + if (this_._internal_micros() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<1>( + stream, this_._internal_micros(), target); + } + + // string log_level = 2; + if (!this_._internal_log_level().empty()) { + const std::string& _s = this_._internal_log_level(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // string message = 3; + if (!this_._internal_message().empty()) { + const std::string& _s = this_._internal_message(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t LogSubscriptionData::ByteSizeLong(const MessageLite& base) { + const LogSubscriptionData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t LogSubscriptionData::ByteSizeLong() const { + const LogSubscriptionData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string log_level = 2; + if (!this_._internal_log_level().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_log_level()); + } + // string message = 3; + if (!this_._internal_message().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_message()); + } + // int64 micros = 1 [jstype = JS_STRING]; + if (this_._internal_micros() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_micros()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void LogSubscriptionData::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) @@ -4498,7 +5183,7 @@ void LogSubscriptionData::MergeImpl(::google::protobuf::Message& to_msg, const : _this->_internal_set_message(from._internal_message()); } if (from._internal_micros() != 0) { - _this->_internal_set_micros(from._internal_micros()); + _this->_impl_.micros_ = from._impl_.micros_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -4510,13 +5195,7 @@ void LogSubscriptionData::CopyFrom(const LogSubscriptionData& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool LogSubscriptionData::IsInitialized() const { - return true; -} -::_pbi::CachedSize* LogSubscriptionData::AccessCachedSize() const { - return &_impl_._cached_size_; -} void LogSubscriptionData::InternalSwap(LogSubscriptionData* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -4528,39 +5207,35 @@ void LogSubscriptionData::InternalSwap(LogSubscriptionData* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata LogSubscriptionData::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[7]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExecuteCommandRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const ExecuteCommandRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ExecuteCommandRequest::_Internal::console_id(const ExecuteCommandRequest* msg) { - return *msg->_impl_.console_id_; -} void ExecuteCommandRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ExecuteCommandRequest::ExecuteCommandRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) } inline PROTOBUF_NDEBUG_INLINE ExecuteCommandRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, code_(arena, from.code_) {} @@ -4568,16 +5243,20 @@ inline PROTOBUF_NDEBUG_INLINE ExecuteCommandRequest::Impl_::Impl_( ExecuteCommandRequest::ExecuteCommandRequest( ::google::protobuf::Arena* arena, const ExecuteCommandRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExecuteCommandRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) } @@ -4603,30 +5282,34 @@ inline void ExecuteCommandRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExecuteCommandRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.code_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExecuteCommandRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExecuteCommandRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExecuteCommandRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExecuteCommandRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExecuteCommandRequest::ByteSizeLong, + &ExecuteCommandRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_._cached_size_), + false, + }, + &ExecuteCommandRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExecuteCommandRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 2, 1, 75, 2> ExecuteCommandRequest::_table_ = { { @@ -4639,8 +5322,12 @@ const ::_pbi::TcParseTable<2, 2, 1, 75, 2> ExecuteCommandRequest::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExecuteCommandRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; @@ -4668,73 +5355,102 @@ const ::_pbi::TcParseTable<2, 2, 1, 75, 2> ExecuteCommandRequest::_table_ = { }}, }; -::uint8_t* ExecuteCommandRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // string code = 3; - if (!this->_internal_code().empty()) { - const std::string& _s = this->_internal_code(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - return target; -} - -::size_t ExecuteCommandRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExecuteCommandRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string code = 3; - if (!this->_internal_code().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_code()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + _impl_.code_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExecuteCommandRequest::_class_data_ = { - ExecuteCommandRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExecuteCommandRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExecuteCommandRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExecuteCommandRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExecuteCommandRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExecuteCommandRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExecuteCommandRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // string code = 3; + if (!this_._internal_code().empty()) { + const std::string& _s = this_._internal_code(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExecuteCommandRequest::ByteSizeLong(const MessageLite& base) { + const ExecuteCommandRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExecuteCommandRequest::ByteSizeLong() const { + const ExecuteCommandRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string code = 3; + if (!this_._internal_code().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_code()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExecuteCommandRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -4743,10 +5459,17 @@ void ExecuteCommandRequest::MergeImpl(::google::protobuf::Message& to_msg, const if (!from._internal_code().empty()) { _this->_internal_set_code(from._internal_code()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -4757,13 +5480,7 @@ void ExecuteCommandRequest::CopyFrom(const ExecuteCommandRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ExecuteCommandRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExecuteCommandRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExecuteCommandRequest::InternalSwap(ExecuteCommandRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -4775,39 +5492,35 @@ void ExecuteCommandRequest::InternalSwap(ExecuteCommandRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata ExecuteCommandRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[8]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExecuteCommandResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& changes(const ExecuteCommandResponse* msg); - static void set_has_changes(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& ExecuteCommandResponse::_Internal::changes(const ExecuteCommandResponse* msg) { - return *msg->_impl_.changes_; -} void ExecuteCommandResponse::clear_changes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.changes_ != nullptr) _impl_.changes_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ExecuteCommandResponse::ExecuteCommandResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) } inline PROTOBUF_NDEBUG_INLINE ExecuteCommandResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, error_message_(arena, from.error_message_) {} @@ -4815,16 +5528,20 @@ inline PROTOBUF_NDEBUG_INLINE ExecuteCommandResponse::Impl_::Impl_( ExecuteCommandResponse::ExecuteCommandResponse( ::google::protobuf::Arena* arena, const ExecuteCommandResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExecuteCommandResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.changes_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>(arena, *from._impl_.changes_) - : nullptr; + _impl_.changes_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>( + arena, *from._impl_.changes_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) } @@ -4850,30 +5567,34 @@ inline void ExecuteCommandResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExecuteCommandResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.error_message_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.changes_ != nullptr); - _impl_.changes_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExecuteCommandResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExecuteCommandResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExecuteCommandResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExecuteCommandResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExecuteCommandResponse::ByteSizeLong, + &ExecuteCommandResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_._cached_size_), + false, + }, + &ExecuteCommandResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExecuteCommandResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 85, 2> ExecuteCommandResponse::_table_ = { { @@ -4886,8 +5607,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 85, 2> ExecuteCommandResponse::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExecuteCommandResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; {::_pbi::TcParser::FastMtS1, @@ -4913,73 +5638,102 @@ const ::_pbi::TcParseTable<1, 2, 1, 85, 2> ExecuteCommandResponse::_table_ = { }}, }; -::uint8_t* ExecuteCommandResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string error_message = 1; - if (!this->_internal_error_message().empty()) { - const std::string& _s = this->_internal_error_message(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::changes(this), - _Internal::changes(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - return target; -} - -::size_t ExecuteCommandResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExecuteCommandResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string error_message = 1; - if (!this->_internal_error_message().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_error_message()); - } - - // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; + _impl_.error_message_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.changes_); + ABSL_DCHECK(_impl_.changes_ != nullptr); + _impl_.changes_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExecuteCommandResponse::_class_data_ = { - ExecuteCommandResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExecuteCommandResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExecuteCommandResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExecuteCommandResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExecuteCommandResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExecuteCommandResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExecuteCommandResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string error_message = 1; + if (!this_._internal_error_message().empty()) { + const std::string& _s = this_._internal_error_message(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.changes_, this_._impl_.changes_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExecuteCommandResponse::ByteSizeLong(const MessageLite& base) { + const ExecuteCommandResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExecuteCommandResponse::ByteSizeLong() const { + const ExecuteCommandResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string error_message = 1; + if (!this_._internal_error_message().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_error_message()); + } + } + { + // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.changes_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExecuteCommandResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -4988,10 +5742,17 @@ void ExecuteCommandResponse::MergeImpl(::google::protobuf::Message& to_msg, cons if (!from._internal_error_message().empty()) { _this->_internal_set_error_message(from._internal_error_message()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_changes()->::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate::MergeFrom( - from._internal_changes()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.changes_ != nullptr); + if (_this->_impl_.changes_ == nullptr) { + _this->_impl_.changes_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>(arena, *from._impl_.changes_); + } else { + _this->_impl_.changes_->MergeFrom(*from._impl_.changes_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -5002,13 +5763,7 @@ void ExecuteCommandResponse::CopyFrom(const ExecuteCommandResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ExecuteCommandResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExecuteCommandResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExecuteCommandResponse::InternalSwap(ExecuteCommandResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -5020,51 +5775,40 @@ void ExecuteCommandResponse::InternalSwap(ExecuteCommandResponse* PROTOBUF_RESTR } ::google::protobuf::Metadata ExecuteCommandResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[9]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class BindTableToVariableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const BindTableToVariableRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& table_id(const BindTableToVariableRequest* msg); - static void set_has_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_Internal::console_id(const BindTableToVariableRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_Internal::table_id(const BindTableToVariableRequest* msg) { - return *msg->_impl_.table_id_; -} void BindTableToVariableRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void BindTableToVariableRequest::clear_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_id_ != nullptr) _impl_.table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } BindTableToVariableRequest::BindTableToVariableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) } inline PROTOBUF_NDEBUG_INLINE BindTableToVariableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, variable_name_(arena, from.variable_name_) {} @@ -5072,19 +5816,23 @@ inline PROTOBUF_NDEBUG_INLINE BindTableToVariableRequest::Impl_::Impl_( BindTableToVariableRequest::BindTableToVariableRequest( ::google::protobuf::Arena* arena, const BindTableToVariableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BindTableToVariableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_id_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.table_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) } @@ -5116,36 +5864,34 @@ inline void BindTableToVariableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void BindTableToVariableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.variable_name_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.table_id_ != nullptr); - _impl_.table_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* BindTableToVariableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BindTableToVariableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_BindTableToVariableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BindTableToVariableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &BindTableToVariableRequest::ByteSizeLong, + &BindTableToVariableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_._cached_size_), + false, + }, + &BindTableToVariableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BindTableToVariableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 89, 2> BindTableToVariableRequest::_table_ = { { @@ -5158,8 +5904,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 89, 2> BindTableToVariableRequest::_table_ = 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_BindTableToVariableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; {::_pbi::TcParser::FastMtS1, @@ -5193,88 +5943,119 @@ const ::_pbi::TcParseTable<2, 3, 2, 89, 2> BindTableToVariableRequest::_table_ = }}, }; -::uint8_t* BindTableToVariableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // string variable_name = 3; - if (!this->_internal_variable_name().empty()) { - const std::string& _s = this->_internal_variable_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::table_id(this), - _Internal::table_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - return target; -} - -::size_t BindTableToVariableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void BindTableToVariableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string variable_name = 3; - if (!this->_internal_variable_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_variable_name()); - } - + _impl_.variable_name_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); - } - - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); + } if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.table_id_); + ABSL_DCHECK(_impl_.table_id_ != nullptr); + _impl_.table_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData BindTableToVariableRequest::_class_data_ = { - BindTableToVariableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* BindTableToVariableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void BindTableToVariableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* BindTableToVariableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const BindTableToVariableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* BindTableToVariableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const BindTableToVariableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // string variable_name = 3; + if (!this_._internal_variable_name().empty()) { + const std::string& _s = this_._internal_variable_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.table_id_, this_._impl_.table_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t BindTableToVariableRequest::ByteSizeLong(const MessageLite& base) { + const BindTableToVariableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t BindTableToVariableRequest::ByteSizeLong() const { + const BindTableToVariableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string variable_name = 3; + if (!this_._internal_variable_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_variable_name()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.table_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void BindTableToVariableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -5286,14 +6067,25 @@ void BindTableToVariableRequest::MergeImpl(::google::protobuf::Message& to_msg, cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_table_id()); + ABSL_DCHECK(from._impl_.table_id_ != nullptr); + if (_this->_impl_.table_id_ == nullptr) { + _this->_impl_.table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_id_); + } else { + _this->_impl_.table_id_->MergeFrom(*from._impl_.table_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -5304,13 +6096,7 @@ void BindTableToVariableRequest::CopyFrom(const BindTableToVariableRequest& from MergeFrom(from); } -PROTOBUF_NOINLINE bool BindTableToVariableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* BindTableToVariableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void BindTableToVariableRequest::InternalSwap(BindTableToVariableRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -5327,9 +6113,7 @@ void BindTableToVariableRequest::InternalSwap(BindTableToVariableRequest* PROTOB } ::google::protobuf::Metadata BindTableToVariableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[10]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -5338,13 +6122,21 @@ class BindTableToVariableResponse::_Internal { }; BindTableToVariableResponse::BindTableToVariableResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse) } BindTableToVariableResponse::BindTableToVariableResponse( ::google::protobuf::Arena* arena, const BindTableToVariableResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BindTableToVariableResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -5353,6 +6145,61 @@ BindTableToVariableResponse::BindTableToVariableResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BindTableToVariableResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_BindTableToVariableResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BindTableToVariableResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &BindTableToVariableResponse::ByteSizeLong, + &BindTableToVariableResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BindTableToVariableResponse, _impl_._cached_size_), + false, + }, + &BindTableToVariableResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BindTableToVariableResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> BindTableToVariableResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -5362,70 +6209,63 @@ BindTableToVariableResponse::BindTableToVariableResponse( ::google::protobuf::Metadata BindTableToVariableResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[11]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CancelCommandRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const CancelCommandRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& command_id(const CancelCommandRequest* msg); - static void set_has_command_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_Internal::console_id(const CancelCommandRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_Internal::command_id(const CancelCommandRequest* msg) { - return *msg->_impl_.command_id_; -} void CancelCommandRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void CancelCommandRequest::clear_command_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.command_id_ != nullptr) _impl_.command_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } CancelCommandRequest::CancelCommandRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) } inline PROTOBUF_NDEBUG_INLINE CancelCommandRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} CancelCommandRequest::CancelCommandRequest( ::google::protobuf::Arena* arena, const CancelCommandRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CancelCommandRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.command_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.command_id_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.command_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.command_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) } @@ -5455,35 +6295,34 @@ inline void CancelCommandRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CancelCommandRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.command_id_ != nullptr); - _impl_.command_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CancelCommandRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CancelCommandRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CancelCommandRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CancelCommandRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CancelCommandRequest::ByteSizeLong, + &CancelCommandRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_._cached_size_), + false, + }, + &CancelCommandRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CancelCommandRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CancelCommandRequest::_table_ = { { @@ -5496,8 +6335,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CancelCommandRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CancelCommandRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; {::_pbi::TcParser::FastMtS1, @@ -5521,74 +6364,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CancelCommandRequest::_table_ = { }}, }; -::uint8_t* CancelCommandRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::command_id(this), - _Internal::command_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - return target; -} - -::size_t CancelCommandRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CancelCommandRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.command_id_); + ABSL_DCHECK(_impl_.command_id_ != nullptr); + _impl_.command_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CancelCommandRequest::_class_data_ = { - CancelCommandRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CancelCommandRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CancelCommandRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CancelCommandRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CancelCommandRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CancelCommandRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CancelCommandRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.command_id_, this_._impl_.command_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CancelCommandRequest::ByteSizeLong(const MessageLite& base) { + const CancelCommandRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CancelCommandRequest::ByteSizeLong() const { + const CancelCommandRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.command_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CancelCommandRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -5597,14 +6469,25 @@ void CancelCommandRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_command_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_command_id()); + ABSL_DCHECK(from._impl_.command_id_ != nullptr); + if (_this->_impl_.command_id_ == nullptr) { + _this->_impl_.command_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.command_id_); + } else { + _this->_impl_.command_id_->MergeFrom(*from._impl_.command_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -5615,13 +6498,7 @@ void CancelCommandRequest::CopyFrom(const CancelCommandRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CancelCommandRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CancelCommandRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CancelCommandRequest::InternalSwap(CancelCommandRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -5635,9 +6512,7 @@ void CancelCommandRequest::InternalSwap(CancelCommandRequest* PROTOBUF_RESTRICT } ::google::protobuf::Metadata CancelCommandRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[12]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -5646,13 +6521,21 @@ class CancelCommandResponse::_Internal { }; CancelCommandResponse::CancelCommandResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CancelCommandResponse) } CancelCommandResponse::CancelCommandResponse( ::google::protobuf::Arena* arena, const CancelCommandResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CancelCommandResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -5661,6 +6544,61 @@ CancelCommandResponse::CancelCommandResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CancelCommandResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CancelCommandResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CancelCommandResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CancelCommandResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CancelCommandResponse::ByteSizeLong, + &CancelCommandResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CancelCommandResponse, _impl_._cached_size_), + false, + }, + &CancelCommandResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CancelCommandResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CancelCommandResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -5670,55 +6608,55 @@ CancelCommandResponse::CancelCommandResponse( ::google::protobuf::Metadata CancelCommandResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[13]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CancelAutoCompleteRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const CancelAutoCompleteRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& CancelAutoCompleteRequest::_Internal::console_id(const CancelAutoCompleteRequest* msg) { - return *msg->_impl_.console_id_; -} void CancelAutoCompleteRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } CancelAutoCompleteRequest::CancelAutoCompleteRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) } inline PROTOBUF_NDEBUG_INLINE CancelAutoCompleteRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} CancelAutoCompleteRequest::CancelAutoCompleteRequest( ::google::protobuf::Arena* arena, const CancelAutoCompleteRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CancelAutoCompleteRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; _impl_.request_id_ = from._impl_.request_id_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) @@ -5748,30 +6686,34 @@ inline void CancelAutoCompleteRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CancelAutoCompleteRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - _impl_.request_id_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CancelAutoCompleteRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CancelAutoCompleteRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CancelAutoCompleteRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CancelAutoCompleteRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CancelAutoCompleteRequest::ByteSizeLong, + &CancelAutoCompleteRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_._cached_size_), + false, + }, + &CancelAutoCompleteRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CancelAutoCompleteRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 0, 2> CancelAutoCompleteRequest::_table_ = { { @@ -5784,8 +6726,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> CancelAutoCompleteRequest::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CancelAutoCompleteRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // int32 request_id = 2; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CancelAutoCompleteRequest, _impl_.request_id_), 63>(), @@ -5808,84 +6754,120 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> CancelAutoCompleteRequest::_table_ = { }}, }; -::uint8_t* CancelAutoCompleteRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // int32 request_id = 2; - if (this->_internal_request_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_request_id(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - return target; -} - -::size_t CancelAutoCompleteRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CancelAutoCompleteRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); - } - - // int32 request_id = 2; - if (this->_internal_request_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_request_id()); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CancelAutoCompleteRequest::_class_data_ = { - CancelAutoCompleteRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CancelAutoCompleteRequest::GetClassData() const { - return &_class_data_; + _impl_.request_id_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CancelAutoCompleteRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CancelAutoCompleteRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CancelAutoCompleteRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CancelAutoCompleteRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CancelAutoCompleteRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // int32 request_id = 2; + if (this_._internal_request_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_request_id(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CancelAutoCompleteRequest::ByteSizeLong(const MessageLite& base) { + const CancelAutoCompleteRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CancelAutoCompleteRequest::ByteSizeLong() const { + const CancelAutoCompleteRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + } + { + // int32 request_id = 2; + if (this_._internal_request_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_request_id()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CancelAutoCompleteRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (from._internal_request_id() != 0) { - _this->_internal_set_request_id(from._internal_request_id()); + _this->_impl_.request_id_ = from._impl_.request_id_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -5896,13 +6878,7 @@ void CancelAutoCompleteRequest::CopyFrom(const CancelAutoCompleteRequest& from) MergeFrom(from); } -PROTOBUF_NOINLINE bool CancelAutoCompleteRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CancelAutoCompleteRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CancelAutoCompleteRequest::InternalSwap(CancelAutoCompleteRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -5916,9 +6892,7 @@ void CancelAutoCompleteRequest::InternalSwap(CancelAutoCompleteRequest* PROTOBUF } ::google::protobuf::Metadata CancelAutoCompleteRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[14]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -5927,13 +6901,21 @@ class CancelAutoCompleteResponse::_Internal { }; CancelAutoCompleteResponse::CancelAutoCompleteResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse) } CancelAutoCompleteResponse::CancelAutoCompleteResponse( ::google::protobuf::Arena* arena, const CancelAutoCompleteResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CancelAutoCompleteResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -5942,6 +6924,61 @@ CancelAutoCompleteResponse::CancelAutoCompleteResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CancelAutoCompleteResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CancelAutoCompleteResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CancelAutoCompleteResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CancelAutoCompleteResponse::ByteSizeLong, + &CancelAutoCompleteResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CancelAutoCompleteResponse, _impl_._cached_size_), + false, + }, + &CancelAutoCompleteResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CancelAutoCompleteResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CancelAutoCompleteResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -5951,58 +6988,22 @@ CancelAutoCompleteResponse::CancelAutoCompleteResponse( ::google::protobuf::Metadata CancelAutoCompleteResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[15]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AutoCompleteRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_._has_bits_); + 8 * PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_._has_bits_); static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const AutoCompleteRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& open_document(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& change_document(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& get_completion_items(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& get_signature_help(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& get_hover(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& get_diagnostic(const AutoCompleteRequest* msg); - static const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& close_document(const AutoCompleteRequest* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AutoCompleteRequest::_Internal::console_id(const AutoCompleteRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& AutoCompleteRequest::_Internal::open_document(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.open_document_; -} -const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& AutoCompleteRequest::_Internal::change_document(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.change_document_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& AutoCompleteRequest::_Internal::get_completion_items(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.get_completion_items_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& AutoCompleteRequest::_Internal::get_signature_help(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.get_signature_help_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& AutoCompleteRequest::_Internal::get_hover(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.get_hover_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& AutoCompleteRequest::_Internal::get_diagnostic(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.get_diagnostic_; -} -const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& AutoCompleteRequest::_Internal::close_document(const AutoCompleteRequest* msg) { - return *msg->_impl_.request_.close_document_; -} void AutoCompleteRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -6098,13 +7099,17 @@ void AutoCompleteRequest::set_allocated_close_document(::io::deephaven::proto::b // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) } AutoCompleteRequest::AutoCompleteRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) } inline PROTOBUF_NDEBUG_INLINE AutoCompleteRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, request_{}, @@ -6113,40 +7118,44 @@ inline PROTOBUF_NDEBUG_INLINE AutoCompleteRequest::Impl_::Impl_( AutoCompleteRequest::AutoCompleteRequest( ::google::protobuf::Arena* arena, const AutoCompleteRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AutoCompleteRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; _impl_.request_id_ = from._impl_.request_id_; switch (request_case()) { case REQUEST_NOT_SET: break; case kOpenDocument: - _impl_.request_.open_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(arena, *from._impl_.request_.open_document_); + _impl_.request_.open_document_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(arena, *from._impl_.request_.open_document_); break; case kChangeDocument: - _impl_.request_.change_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(arena, *from._impl_.request_.change_document_); + _impl_.request_.change_document_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(arena, *from._impl_.request_.change_document_); break; case kGetCompletionItems: - _impl_.request_.get_completion_items_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(arena, *from._impl_.request_.get_completion_items_); + _impl_.request_.get_completion_items_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(arena, *from._impl_.request_.get_completion_items_); break; case kGetSignatureHelp: - _impl_.request_.get_signature_help_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(arena, *from._impl_.request_.get_signature_help_); + _impl_.request_.get_signature_help_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(arena, *from._impl_.request_.get_signature_help_); break; case kGetHover: - _impl_.request_.get_hover_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(arena, *from._impl_.request_.get_hover_); + _impl_.request_.get_hover_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(arena, *from._impl_.request_.get_hover_); break; case kGetDiagnostic: - _impl_.request_.get_diagnostic_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(arena, *from._impl_.request_.get_diagnostic_); + _impl_.request_.get_diagnostic_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(arena, *from._impl_.request_.get_diagnostic_); break; case kCloseDocument: - _impl_.request_.close_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(arena, *from._impl_.request_.close_document_); + _impl_.request_.close_document_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(arena, *from._impl_.request_.close_document_); break; } @@ -6184,47 +7193,61 @@ inline void AutoCompleteRequest::SharedDtor() { void AutoCompleteRequest::clear_request() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (request_case()) { case kOpenDocument: { if (GetArena() == nullptr) { delete _impl_.request_.open_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.open_document_); } break; } case kChangeDocument: { if (GetArena() == nullptr) { delete _impl_.request_.change_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.change_document_); } break; } case kGetCompletionItems: { if (GetArena() == nullptr) { delete _impl_.request_.get_completion_items_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_completion_items_); } break; } case kGetSignatureHelp: { if (GetArena() == nullptr) { delete _impl_.request_.get_signature_help_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_signature_help_); } break; } case kGetHover: { if (GetArena() == nullptr) { delete _impl_.request_.get_hover_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_hover_); } break; } case kGetDiagnostic: { if (GetArena() == nullptr) { delete _impl_.request_.get_diagnostic_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_diagnostic_); } break; } case kCloseDocument: { if (GetArena() == nullptr) { delete _impl_.request_.close_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.close_document_); } break; } @@ -6236,31 +7259,34 @@ void AutoCompleteRequest::clear_request() { } -PROTOBUF_NOINLINE void AutoCompleteRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - _impl_.request_id_ = 0; - clear_request(); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AutoCompleteRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AutoCompleteRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AutoCompleteRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AutoCompleteRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AutoCompleteRequest::ByteSizeLong, + &AutoCompleteRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_._cached_size_), + false, + }, + &AutoCompleteRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AutoCompleteRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 9, 8, 0, 2> AutoCompleteRequest::_table_ = { { @@ -6273,8 +7299,12 @@ const ::_pbi::TcParseTable<1, 9, 8, 0, 2> AutoCompleteRequest::_table_ = { 9, // num_field_entries 8, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AutoCompleteRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // int32 request_id = 6; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(AutoCompleteRequest, _impl_.request_id_), 63>(), @@ -6325,219 +7355,294 @@ const ::_pbi::TcParseTable<1, 9, 8, 0, 2> AutoCompleteRequest::_table_ = { }}, }; -::uint8_t* AutoCompleteRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) +PROTOBUF_NOINLINE void AutoCompleteRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - switch (request_case()) { - case kOpenDocument: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::open_document(this), - _Internal::open_document(this).GetCachedSize(), target, stream); - break; - } - case kChangeDocument: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::change_document(this), - _Internal::change_document(this).GetCachedSize(), target, stream); - break; - } - case kGetCompletionItems: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::get_completion_items(this), - _Internal::get_completion_items(this).GetCachedSize(), target, stream); - break; - } - case kCloseDocument: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::close_document(this), - _Internal::close_document(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } + _impl_.request_id_ = 0; + clear_request(); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} - // int32 request_id = 6; - if (this->_internal_request_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<6>( - stream, this->_internal_request_id(), target); - } +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AutoCompleteRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AutoCompleteRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AutoCompleteRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AutoCompleteRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.request_case()) { + case kOpenDocument: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.request_.open_document_, this_._impl_.request_.open_document_->GetCachedSize(), target, + stream); + break; + } + case kChangeDocument: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.request_.change_document_, this_._impl_.request_.change_document_->GetCachedSize(), target, + stream); + break; + } + case kGetCompletionItems: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.request_.get_completion_items_, this_._impl_.request_.get_completion_items_->GetCachedSize(), target, + stream); + break; + } + case kCloseDocument: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.request_.close_document_, this_._impl_.request_.close_document_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // int32 request_id = 6; + if (this_._internal_request_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<6>( + stream, this_._internal_request_id(), target); + } + + switch (this_.request_case()) { + case kGetSignatureHelp: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.request_.get_signature_help_, this_._impl_.request_.get_signature_help_->GetCachedSize(), target, + stream); + break; + } + case kGetHover: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.request_.get_hover_, this_._impl_.request_.get_hover_->GetCachedSize(), target, + stream); + break; + } + case kGetDiagnostic: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.request_.get_diagnostic_, this_._impl_.request_.get_diagnostic_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AutoCompleteRequest::ByteSizeLong(const MessageLite& base) { + const AutoCompleteRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AutoCompleteRequest::ByteSizeLong() const { + const AutoCompleteRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + } + { + // int32 request_id = 6; + if (this_._internal_request_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_request_id()); + } + } + switch (this_.request_case()) { + // .io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest open_document = 1; + case kOpenDocument: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.open_document_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest change_document = 2; + case kChangeDocument: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.change_document_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest get_completion_items = 3; + case kGetCompletionItems: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.get_completion_items_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest get_signature_help = 7; + case kGetSignatureHelp: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.get_signature_help_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetHoverRequest get_hover = 8; + case kGetHover: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.get_hover_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest get_diagnostic = 9; + case kGetDiagnostic: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.get_diagnostic_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest close_document = 4; + case kCloseDocument: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.request_.close_document_); + break; + } + case REQUEST_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AutoCompleteRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; - switch (request_case()) { - case kGetSignatureHelp: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::get_signature_help(this), - _Internal::get_signature_help(this).GetCachedSize(), target, stream); - break; - } - case kGetHover: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::get_hover(this), - _Internal::get_hover(this).GetCachedSize(), target, stream); - break; - } - case kGetDiagnostic: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::get_diagnostic(this), - _Internal::get_diagnostic(this).GetCachedSize(), target, stream); - break; + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - return target; -} - -::size_t AutoCompleteRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); - } - - // int32 request_id = 6; - if (this->_internal_request_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_request_id()); - } - - switch (request_case()) { - // .io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest open_document = 1; - case kOpenDocument: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.open_document_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest change_document = 2; - case kChangeDocument: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.change_document_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest get_completion_items = 3; - case kGetCompletionItems: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.get_completion_items_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest get_signature_help = 7; - case kGetSignatureHelp: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.get_signature_help_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetHoverRequest get_hover = 8; - case kGetHover: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.get_hover_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest get_diagnostic = 9; - case kGetDiagnostic: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.get_diagnostic_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest close_document = 4; - case kCloseDocument: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.request_.close_document_); - break; - } - case REQUEST_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AutoCompleteRequest::_class_data_ = { - AutoCompleteRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AutoCompleteRequest::GetClassData() const { - return &_class_data_; -} - -void AutoCompleteRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); } if (from._internal_request_id() != 0) { - _this->_internal_set_request_id(from._internal_request_id()); - } - switch (from.request_case()) { - case kOpenDocument: { - _this->_internal_mutable_open_document()->::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest::MergeFrom( - from._internal_open_document()); - break; - } - case kChangeDocument: { - _this->_internal_mutable_change_document()->::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest::MergeFrom( - from._internal_change_document()); - break; - } - case kGetCompletionItems: { - _this->_internal_mutable_get_completion_items()->::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest::MergeFrom( - from._internal_get_completion_items()); - break; - } - case kGetSignatureHelp: { - _this->_internal_mutable_get_signature_help()->::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest::MergeFrom( - from._internal_get_signature_help()); - break; - } - case kGetHover: { - _this->_internal_mutable_get_hover()->::io::deephaven::proto::backplane::script::grpc::GetHoverRequest::MergeFrom( - from._internal_get_hover()); - break; - } - case kGetDiagnostic: { - _this->_internal_mutable_get_diagnostic()->::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest::MergeFrom( - from._internal_get_diagnostic()); - break; - } - case kCloseDocument: { - _this->_internal_mutable_close_document()->::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest::MergeFrom( - from._internal_close_document()); - break; + _this->_impl_.request_id_ = from._impl_.request_id_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_request(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case REQUEST_NOT_SET: { - break; + + switch (oneof_from_case) { + case kOpenDocument: { + if (oneof_needs_init) { + _this->_impl_.request_.open_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(arena, *from._impl_.request_.open_document_); + } else { + _this->_impl_.request_.open_document_->MergeFrom(from._internal_open_document()); + } + break; + } + case kChangeDocument: { + if (oneof_needs_init) { + _this->_impl_.request_.change_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(arena, *from._impl_.request_.change_document_); + } else { + _this->_impl_.request_.change_document_->MergeFrom(from._internal_change_document()); + } + break; + } + case kGetCompletionItems: { + if (oneof_needs_init) { + _this->_impl_.request_.get_completion_items_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(arena, *from._impl_.request_.get_completion_items_); + } else { + _this->_impl_.request_.get_completion_items_->MergeFrom(from._internal_get_completion_items()); + } + break; + } + case kGetSignatureHelp: { + if (oneof_needs_init) { + _this->_impl_.request_.get_signature_help_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(arena, *from._impl_.request_.get_signature_help_); + } else { + _this->_impl_.request_.get_signature_help_->MergeFrom(from._internal_get_signature_help()); + } + break; + } + case kGetHover: { + if (oneof_needs_init) { + _this->_impl_.request_.get_hover_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(arena, *from._impl_.request_.get_hover_); + } else { + _this->_impl_.request_.get_hover_->MergeFrom(from._internal_get_hover()); + } + break; + } + case kGetDiagnostic: { + if (oneof_needs_init) { + _this->_impl_.request_.get_diagnostic_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(arena, *from._impl_.request_.get_diagnostic_); + } else { + _this->_impl_.request_.get_diagnostic_->MergeFrom(from._internal_get_diagnostic()); + } + break; + } + case kCloseDocument: { + if (oneof_needs_init) { + _this->_impl_.request_.close_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(arena, *from._impl_.request_.close_document_); + } else { + _this->_impl_.request_.close_document_->MergeFrom(from._internal_close_document()); + } + break; + } + case REQUEST_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -6550,13 +7655,7 @@ void AutoCompleteRequest::CopyFrom(const AutoCompleteRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AutoCompleteRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AutoCompleteRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AutoCompleteRequest::InternalSwap(AutoCompleteRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -6572,38 +7671,16 @@ void AutoCompleteRequest::InternalSwap(AutoCompleteRequest* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata AutoCompleteRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[16]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AutoCompleteResponse::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& completion_items(const AutoCompleteResponse* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& signatures(const AutoCompleteResponse* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& hover(const AutoCompleteResponse* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& diagnostic(const AutoCompleteResponse* msg); - static const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& diagnostic_publish(const AutoCompleteResponse* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& AutoCompleteResponse::_Internal::completion_items(const AutoCompleteResponse* msg) { - return *msg->_impl_.response_.completion_items_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& AutoCompleteResponse::_Internal::signatures(const AutoCompleteResponse* msg) { - return *msg->_impl_.response_.signatures_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& AutoCompleteResponse::_Internal::hover(const AutoCompleteResponse* msg) { - return *msg->_impl_.response_.hover_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& AutoCompleteResponse::_Internal::diagnostic(const AutoCompleteResponse* msg) { - return *msg->_impl_.response_.diagnostic_; -} -const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& AutoCompleteResponse::_Internal::diagnostic_publish(const AutoCompleteResponse* msg) { - return *msg->_impl_.response_.diagnostic_publish_; -} void AutoCompleteResponse::set_allocated_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* completion_items) { ::google::protobuf::Arena* message_arena = GetArena(); clear_response(); @@ -6670,13 +7747,17 @@ void AutoCompleteResponse::set_allocated_diagnostic_publish(::io::deephaven::pro // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) } AutoCompleteResponse::AutoCompleteResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) } inline PROTOBUF_NDEBUG_INLINE AutoCompleteResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse& from_msg) : response_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -6684,12 +7765,16 @@ inline PROTOBUF_NDEBUG_INLINE AutoCompleteResponse::Impl_::Impl_( AutoCompleteResponse::AutoCompleteResponse( ::google::protobuf::Arena* arena, const AutoCompleteResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AutoCompleteResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, request_id_), reinterpret_cast(&from._impl_) + @@ -6701,19 +7786,19 @@ AutoCompleteResponse::AutoCompleteResponse( case RESPONSE_NOT_SET: break; case kCompletionItems: - _impl_.response_.completion_items_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(arena, *from._impl_.response_.completion_items_); + _impl_.response_.completion_items_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(arena, *from._impl_.response_.completion_items_); break; case kSignatures: - _impl_.response_.signatures_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.response_.signatures_); + _impl_.response_.signatures_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.response_.signatures_); break; case kHover: - _impl_.response_.hover_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(arena, *from._impl_.response_.hover_); + _impl_.response_.hover_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(arena, *from._impl_.response_.hover_); break; case kDiagnostic: - _impl_.response_.diagnostic_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_); + _impl_.response_.diagnostic_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_); break; case kDiagnosticPublish: - _impl_.response_.diagnostic_publish_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_publish_); + _impl_.response_.diagnostic_publish_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_publish_); break; } @@ -6750,35 +7835,45 @@ inline void AutoCompleteResponse::SharedDtor() { void AutoCompleteResponse::clear_response() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (response_case()) { case kCompletionItems: { if (GetArena() == nullptr) { delete _impl_.response_.completion_items_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.completion_items_); } break; } case kSignatures: { if (GetArena() == nullptr) { delete _impl_.response_.signatures_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.signatures_); } break; } case kHover: { if (GetArena() == nullptr) { delete _impl_.response_.hover_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.hover_); } break; } case kDiagnostic: { if (GetArena() == nullptr) { delete _impl_.response_.diagnostic_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.diagnostic_); } break; } case kDiagnosticPublish: { if (GetArena() == nullptr) { delete _impl_.response_.diagnostic_publish_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.diagnostic_publish_); } break; } @@ -6790,27 +7885,34 @@ void AutoCompleteResponse::clear_response() { } -PROTOBUF_NOINLINE void AutoCompleteResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.request_id_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.success_) - - reinterpret_cast(&_impl_.request_id_)) + sizeof(_impl_.success_)); - clear_response(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AutoCompleteResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AutoCompleteResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AutoCompleteResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AutoCompleteResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AutoCompleteResponse::ByteSizeLong, + &AutoCompleteResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_._cached_size_), + false, + }, + &AutoCompleteResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AutoCompleteResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 7, 5, 0, 2> AutoCompleteResponse::_table_ = { { @@ -6823,8 +7925,12 @@ const ::_pbi::TcParseTable<1, 7, 5, 0, 2> AutoCompleteResponse::_table_ = { 7, // num_field_entries 5, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AutoCompleteResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // int32 request_id = 2; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(AutoCompleteResponse, _impl_.request_id_), 63>(), @@ -6866,178 +7972,231 @@ const ::_pbi::TcParseTable<1, 7, 5, 0, 2> AutoCompleteResponse::_table_ = { }}, }; -::uint8_t* AutoCompleteResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; - if (response_case() == kCompletionItems) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::completion_items(this), - _Internal::completion_items(this).GetCachedSize(), target, stream); - } - - // int32 request_id = 2; - if (this->_internal_request_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_request_id(), target); - } - - // bool success = 3; - if (this->_internal_success() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_success(), target); - } - - switch (response_case()) { - case kSignatures: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::signatures(this), - _Internal::signatures(this).GetCachedSize(), target, stream); - break; - } - case kHover: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::hover(this), - _Internal::hover(this).GetCachedSize(), target, stream); - break; - } - case kDiagnostic: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::diagnostic(this), - _Internal::diagnostic(this).GetCachedSize(), target, stream); - break; - } - case kDiagnosticPublish: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::diagnostic_publish(this), - _Internal::diagnostic_publish(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - return target; -} - -::size_t AutoCompleteResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AutoCompleteResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // int32 request_id = 2; - if (this->_internal_request_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_request_id()); - } - - // bool success = 3; - if (this->_internal_success() != 0) { - total_size += 2; - } - - switch (response_case()) { - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; - case kCompletionItems: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.response_.completion_items_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse signatures = 4; - case kSignatures: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.response_.signatures_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetHoverResponse hover = 5; - case kHover: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.response_.hover_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse diagnostic = 6; - case kDiagnostic: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.response_.diagnostic_); - break; - } - // .io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse diagnostic_publish = 7; - case kDiagnosticPublish: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.response_.diagnostic_publish_); - break; - } - case RESPONSE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AutoCompleteResponse::_class_data_ = { - AutoCompleteResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AutoCompleteResponse::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.request_id_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.success_) - + reinterpret_cast(&_impl_.request_id_)) + sizeof(_impl_.success_)); + clear_response(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AutoCompleteResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AutoCompleteResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AutoCompleteResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AutoCompleteResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AutoCompleteResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; + if (this_.response_case() == kCompletionItems) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.response_.completion_items_, this_._impl_.response_.completion_items_->GetCachedSize(), target, + stream); + } + + // int32 request_id = 2; + if (this_._internal_request_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_request_id(), target); + } + + // bool success = 3; + if (this_._internal_success() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_success(), target); + } + + switch (this_.response_case()) { + case kSignatures: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.response_.signatures_, this_._impl_.response_.signatures_->GetCachedSize(), target, + stream); + break; + } + case kHover: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.response_.hover_, this_._impl_.response_.hover_->GetCachedSize(), target, + stream); + break; + } + case kDiagnostic: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.response_.diagnostic_, this_._impl_.response_.diagnostic_->GetCachedSize(), target, + stream); + break; + } + case kDiagnosticPublish: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.response_.diagnostic_publish_, this_._impl_.response_.diagnostic_publish_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AutoCompleteResponse::ByteSizeLong(const MessageLite& base) { + const AutoCompleteResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AutoCompleteResponse::ByteSizeLong() const { + const AutoCompleteResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // int32 request_id = 2; + if (this_._internal_request_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_request_id()); + } + // bool success = 3; + if (this_._internal_success() != 0) { + total_size += 2; + } + } + switch (this_.response_case()) { + // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; + case kCompletionItems: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.response_.completion_items_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse signatures = 4; + case kSignatures: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.response_.signatures_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetHoverResponse hover = 5; + case kHover: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.response_.hover_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse diagnostic = 6; + case kDiagnostic: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.response_.diagnostic_); + break; + } + // .io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse diagnostic_publish = 7; + case kDiagnosticPublish: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.response_.diagnostic_publish_); + break; + } + case RESPONSE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AutoCompleteResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; if (from._internal_request_id() != 0) { - _this->_internal_set_request_id(from._internal_request_id()); + _this->_impl_.request_id_ = from._impl_.request_id_; } if (from._internal_success() != 0) { - _this->_internal_set_success(from._internal_success()); - } - switch (from.response_case()) { - case kCompletionItems: { - _this->_internal_mutable_completion_items()->::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse::MergeFrom( - from._internal_completion_items()); - break; - } - case kSignatures: { - _this->_internal_mutable_signatures()->::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse::MergeFrom( - from._internal_signatures()); - break; - } - case kHover: { - _this->_internal_mutable_hover()->::io::deephaven::proto::backplane::script::grpc::GetHoverResponse::MergeFrom( - from._internal_hover()); - break; - } - case kDiagnostic: { - _this->_internal_mutable_diagnostic()->::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse::MergeFrom( - from._internal_diagnostic()); - break; - } - case kDiagnosticPublish: { - _this->_internal_mutable_diagnostic_publish()->::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse::MergeFrom( - from._internal_diagnostic_publish()); - break; + _this->_impl_.success_ = from._impl_.success_; + } + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_response(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case RESPONSE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kCompletionItems: { + if (oneof_needs_init) { + _this->_impl_.response_.completion_items_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(arena, *from._impl_.response_.completion_items_); + } else { + _this->_impl_.response_.completion_items_->MergeFrom(from._internal_completion_items()); + } + break; + } + case kSignatures: { + if (oneof_needs_init) { + _this->_impl_.response_.signatures_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.response_.signatures_); + } else { + _this->_impl_.response_.signatures_->MergeFrom(from._internal_signatures()); + } + break; + } + case kHover: { + if (oneof_needs_init) { + _this->_impl_.response_.hover_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(arena, *from._impl_.response_.hover_); + } else { + _this->_impl_.response_.hover_->MergeFrom(from._internal_hover()); + } + break; + } + case kDiagnostic: { + if (oneof_needs_init) { + _this->_impl_.response_.diagnostic_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_); + } else { + _this->_impl_.response_.diagnostic_->MergeFrom(from._internal_diagnostic()); + } + break; + } + case kDiagnosticPublish: { + if (oneof_needs_init) { + _this->_impl_.response_.diagnostic_publish_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_publish_); + } else { + _this->_impl_.response_.diagnostic_publish_->MergeFrom(from._internal_diagnostic_publish()); + } + break; + } + case RESPONSE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -7050,13 +8209,7 @@ void AutoCompleteResponse::CopyFrom(const AutoCompleteResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AutoCompleteResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AutoCompleteResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AutoCompleteResponse::InternalSwap(AutoCompleteResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -7071,9 +8224,7 @@ void AutoCompleteResponse::InternalSwap(AutoCompleteResponse* PROTOBUF_RESTRICT } ::google::protobuf::Metadata AutoCompleteResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[17]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -7082,13 +8233,21 @@ class BrowserNextResponse::_Internal { }; BrowserNextResponse::BrowserNextResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.BrowserNextResponse) } BrowserNextResponse::BrowserNextResponse( ::google::protobuf::Arena* arena, const BrowserNextResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BrowserNextResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -7097,6 +8256,61 @@ BrowserNextResponse::BrowserNextResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.BrowserNextResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BrowserNextResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_BrowserNextResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BrowserNextResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &BrowserNextResponse::ByteSizeLong, + &BrowserNextResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BrowserNextResponse, _impl_._cached_size_), + false, + }, + &BrowserNextResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BrowserNextResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> BrowserNextResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -7106,65 +8320,58 @@ BrowserNextResponse::BrowserNextResponse( ::google::protobuf::Metadata BrowserNextResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[18]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class OpenDocumentRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const OpenDocumentRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& text_document(const OpenDocumentRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& OpenDocumentRequest::_Internal::console_id(const OpenDocumentRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& OpenDocumentRequest::_Internal::text_document(const OpenDocumentRequest* msg) { - return *msg->_impl_.text_document_; -} void OpenDocumentRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } OpenDocumentRequest::OpenDocumentRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) } inline PROTOBUF_NDEBUG_INLINE OpenDocumentRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} OpenDocumentRequest::OpenDocumentRequest( ::google::protobuf::Arena* arena, const OpenDocumentRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE OpenDocumentRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.text_document_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>(arena, *from._impl_.text_document_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>( + arena, *from._impl_.text_document_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) } @@ -7194,35 +8401,34 @@ inline void OpenDocumentRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void OpenDocumentRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* OpenDocumentRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + OpenDocumentRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_OpenDocumentRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &OpenDocumentRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &OpenDocumentRequest::ByteSizeLong, + &OpenDocumentRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_._cached_size_), + false, + }, + &OpenDocumentRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* OpenDocumentRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> OpenDocumentRequest::_table_ = { { @@ -7235,8 +8441,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> OpenDocumentRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_OpenDocumentRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; {::_pbi::TcParser::FastMtS1, @@ -7260,74 +8470,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> OpenDocumentRequest::_table_ = { }}, }; -::uint8_t* OpenDocumentRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - return target; -} - -::size_t OpenDocumentRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void OpenDocumentRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData OpenDocumentRequest::_class_data_ = { - OpenDocumentRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* OpenDocumentRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void OpenDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* OpenDocumentRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const OpenDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* OpenDocumentRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const OpenDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t OpenDocumentRequest::ByteSizeLong(const MessageLite& base) { + const OpenDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t OpenDocumentRequest::ByteSizeLong() const { + const OpenDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void OpenDocumentRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -7336,14 +8575,25 @@ void OpenDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const : cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::TextDocumentItem::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -7354,13 +8604,7 @@ void OpenDocumentRequest::CopyFrom(const OpenDocumentRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool OpenDocumentRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* OpenDocumentRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void OpenDocumentRequest::InternalSwap(OpenDocumentRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -7374,9 +8618,7 @@ void OpenDocumentRequest::InternalSwap(OpenDocumentRequest* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata OpenDocumentRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[19]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -7385,13 +8627,17 @@ class TextDocumentItem::_Internal { }; TextDocumentItem::TextDocumentItem(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) } inline PROTOBUF_NDEBUG_INLINE TextDocumentItem::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& from_msg) : uri_(arena, from.uri_), language_id_(arena, from.language_id_), text_(arena, from.text_), @@ -7400,12 +8646,16 @@ inline PROTOBUF_NDEBUG_INLINE TextDocumentItem::Impl_::Impl_( TextDocumentItem::TextDocumentItem( ::google::protobuf::Arena* arena, const TextDocumentItem& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TextDocumentItem* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.version_ = from._impl_.version_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) @@ -7435,27 +8685,34 @@ inline void TextDocumentItem::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TextDocumentItem::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.uri_.ClearToEmpty(); - _impl_.language_id_.ClearToEmpty(); - _impl_.text_.ClearToEmpty(); - _impl_.version_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TextDocumentItem::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TextDocumentItem::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TextDocumentItem_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TextDocumentItem::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TextDocumentItem::ByteSizeLong, + &TextDocumentItem::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_._cached_size_), + false, + }, + &TextDocumentItem::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TextDocumentItem::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 0, 84, 2> TextDocumentItem::_table_ = { { @@ -7468,8 +8725,12 @@ const ::_pbi::TcParseTable<2, 4, 0, 84, 2> TextDocumentItem::_table_ = { 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_TextDocumentItem_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string text = 4; {::_pbi::TcParser::FastUS1, @@ -7509,97 +8770,117 @@ const ::_pbi::TcParseTable<2, 4, 0, 84, 2> TextDocumentItem::_table_ = { }}, }; -::uint8_t* TextDocumentItem::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string uri = 1; - if (!this->_internal_uri().empty()) { - const std::string& _s = this->_internal_uri(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string language_id = 2; - if (!this->_internal_language_id().empty()) { - const std::string& _s = this->_internal_language_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // int32 version = 3; - if (this->_internal_version() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_version(), target); - } - - // string text = 4; - if (!this->_internal_text().empty()) { - const std::string& _s = this->_internal_text(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - return target; -} - -::size_t TextDocumentItem::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TextDocumentItem::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string uri = 1; - if (!this->_internal_uri().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_uri()); - } - - // string language_id = 2; - if (!this->_internal_language_id().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_language_id()); - } - - // string text = 4; - if (!this->_internal_text().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_text()); - } - - // int32 version = 3; - if (this->_internal_version() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_version()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TextDocumentItem::_class_data_ = { - TextDocumentItem::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TextDocumentItem::GetClassData() const { - return &_class_data_; + _impl_.uri_.ClearToEmpty(); + _impl_.language_id_.ClearToEmpty(); + _impl_.text_.ClearToEmpty(); + _impl_.version_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TextDocumentItem::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TextDocumentItem::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TextDocumentItem& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TextDocumentItem::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TextDocumentItem& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string uri = 1; + if (!this_._internal_uri().empty()) { + const std::string& _s = this_._internal_uri(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string language_id = 2; + if (!this_._internal_language_id().empty()) { + const std::string& _s = this_._internal_language_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // int32 version = 3; + if (this_._internal_version() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_version(), target); + } + + // string text = 4; + if (!this_._internal_text().empty()) { + const std::string& _s = this_._internal_text(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TextDocumentItem::ByteSizeLong(const MessageLite& base) { + const TextDocumentItem& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TextDocumentItem::ByteSizeLong() const { + const TextDocumentItem& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string uri = 1; + if (!this_._internal_uri().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_uri()); + } + // string language_id = 2; + if (!this_._internal_language_id().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_language_id()); + } + // string text = 4; + if (!this_._internal_text().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_text()); + } + // int32 version = 3; + if (this_._internal_version() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_version()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TextDocumentItem::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) @@ -7617,7 +8898,7 @@ void TextDocumentItem::MergeImpl(::google::protobuf::Message& to_msg, const ::go _this->_internal_set_text(from._internal_text()); } if (from._internal_version() != 0) { - _this->_internal_set_version(from._internal_version()); + _this->_impl_.version_ = from._impl_.version_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -7629,13 +8910,7 @@ void TextDocumentItem::CopyFrom(const TextDocumentItem& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TextDocumentItem::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TextDocumentItem::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TextDocumentItem::InternalSwap(TextDocumentItem* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -7648,65 +8923,58 @@ void TextDocumentItem::InternalSwap(TextDocumentItem* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TextDocumentItem::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[20]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CloseDocumentRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const CloseDocumentRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const CloseDocumentRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& CloseDocumentRequest::_Internal::console_id(const CloseDocumentRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& CloseDocumentRequest::_Internal::text_document(const CloseDocumentRequest* msg) { - return *msg->_impl_.text_document_; -} void CloseDocumentRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } CloseDocumentRequest::CloseDocumentRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) } inline PROTOBUF_NDEBUG_INLINE CloseDocumentRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} CloseDocumentRequest::CloseDocumentRequest( ::google::protobuf::Arena* arena, const CloseDocumentRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CloseDocumentRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.text_document_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) } @@ -7736,35 +9004,34 @@ inline void CloseDocumentRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CloseDocumentRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CloseDocumentRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CloseDocumentRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CloseDocumentRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CloseDocumentRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CloseDocumentRequest::ByteSizeLong, + &CloseDocumentRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_._cached_size_), + false, + }, + &CloseDocumentRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CloseDocumentRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CloseDocumentRequest::_table_ = { { @@ -7777,8 +9044,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CloseDocumentRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CloseDocumentRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; {::_pbi::TcParser::FastMtS1, @@ -7802,74 +9073,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> CloseDocumentRequest::_table_ = { }}, }; -::uint8_t* CloseDocumentRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - return target; -} - -::size_t CloseDocumentRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CloseDocumentRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CloseDocumentRequest::_class_data_ = { - CloseDocumentRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CloseDocumentRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CloseDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CloseDocumentRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CloseDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CloseDocumentRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CloseDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CloseDocumentRequest::ByteSizeLong(const MessageLite& base) { + const CloseDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CloseDocumentRequest::ByteSizeLong() const { + const CloseDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CloseDocumentRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -7878,14 +9178,25 @@ void CloseDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -7896,13 +9207,7 @@ void CloseDocumentRequest::CopyFrom(const CloseDocumentRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CloseDocumentRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CloseDocumentRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CloseDocumentRequest::InternalSwap(CloseDocumentRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -7916,34 +9221,30 @@ void CloseDocumentRequest::InternalSwap(CloseDocumentRequest* PROTOBUF_RESTRICT } ::google::protobuf::Metadata CloseDocumentRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[21]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ChangeDocumentRequest_TextDocumentContentChangeEvent::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range(const ChangeDocumentRequest_TextDocumentContentChangeEvent* msg); - static void set_has_range(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& ChangeDocumentRequest_TextDocumentContentChangeEvent::_Internal::range(const ChangeDocumentRequest_TextDocumentContentChangeEvent* msg) { - return *msg->_impl_.range_; -} ChangeDocumentRequest_TextDocumentContentChangeEvent::ChangeDocumentRequest_TextDocumentContentChangeEvent(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) } inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest_TextDocumentContentChangeEvent::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, text_(arena, from.text_) {} @@ -7951,16 +9252,20 @@ inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest_TextDocumentContentChangeEve ChangeDocumentRequest_TextDocumentContentChangeEvent::ChangeDocumentRequest_TextDocumentContentChangeEvent( ::google::protobuf::Arena* arena, const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ChangeDocumentRequest_TextDocumentContentChangeEvent* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.range_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_) - : nullptr; + _impl_.range_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>( + arena, *from._impl_.range_) + : nullptr; _impl_.range_length_ = from._impl_.range_length_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) @@ -7992,31 +9297,34 @@ inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ChangeDocumentRequest_TextDocumentContentChangeEvent::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.text_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.range_ != nullptr); - _impl_.range_->Clear(); - } - _impl_.range_length_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ChangeDocumentRequest_TextDocumentContentChangeEvent::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ChangeDocumentRequest_TextDocumentContentChangeEvent::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ChangeDocumentRequest_TextDocumentContentChangeEvent::ByteSizeLong, + &ChangeDocumentRequest_TextDocumentContentChangeEvent::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._cached_size_), + false, + }, + &ChangeDocumentRequest_TextDocumentContentChangeEvent::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ChangeDocumentRequest_TextDocumentContentChangeEvent::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 106, 2> ChangeDocumentRequest_TextDocumentContentChangeEvent::_table_ = { { @@ -8029,8 +9337,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 106, 2> ChangeDocumentRequest_TextDocumentCo 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; @@ -8063,86 +9375,117 @@ const ::_pbi::TcParseTable<2, 3, 1, 106, 2> ChangeDocumentRequest_TextDocumentCo }}, }; -::uint8_t* ChangeDocumentRequest_TextDocumentContentChangeEvent::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::range(this), - _Internal::range(this).GetCachedSize(), target, stream); - } - - // int32 range_length = 2; - if (this->_internal_range_length() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_range_length(), target); - } - - // string text = 3; - if (!this->_internal_text().empty()) { - const std::string& _s = this->_internal_text(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - return target; -} - -::size_t ChangeDocumentRequest_TextDocumentContentChangeEvent::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ChangeDocumentRequest_TextDocumentContentChangeEvent::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string text = 3; - if (!this->_internal_text().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_text()); - } - - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + _impl_.text_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.range_); - } - - // int32 range_length = 2; - if (this->_internal_range_length() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_range_length()); + ABSL_DCHECK(_impl_.range_ != nullptr); + _impl_.range_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ChangeDocumentRequest_TextDocumentContentChangeEvent::_class_data_ = { - ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ChangeDocumentRequest_TextDocumentContentChangeEvent::GetClassData() const { - return &_class_data_; + _impl_.range_length_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ChangeDocumentRequest_TextDocumentContentChangeEvent::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ChangeDocumentRequest_TextDocumentContentChangeEvent& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ChangeDocumentRequest_TextDocumentContentChangeEvent::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ChangeDocumentRequest_TextDocumentContentChangeEvent& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.range_, this_._impl_.range_->GetCachedSize(), target, + stream); + } + + // int32 range_length = 2; + if (this_._internal_range_length() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_range_length(), target); + } + + // string text = 3; + if (!this_._internal_text().empty()) { + const std::string& _s = this_._internal_text(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ChangeDocumentRequest_TextDocumentContentChangeEvent::ByteSizeLong(const MessageLite& base) { + const ChangeDocumentRequest_TextDocumentContentChangeEvent& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ChangeDocumentRequest_TextDocumentContentChangeEvent::ByteSizeLong() const { + const ChangeDocumentRequest_TextDocumentContentChangeEvent& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string text = 3; + if (!this_._internal_text().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_text()); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.range_); + } + } + { + // int32 range_length = 2; + if (this_._internal_range_length() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_range_length()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -8151,13 +9494,20 @@ void ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl(::google::p if (!from._internal_text().empty()) { _this->_internal_set_text(from._internal_text()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_range()->::io::deephaven::proto::backplane::script::grpc::DocumentRange::MergeFrom( - from._internal_range()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.range_ != nullptr); + if (_this->_impl_.range_ == nullptr) { + _this->_impl_.range_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_); + } else { + _this->_impl_.range_->MergeFrom(*from._impl_.range_); + } } if (from._internal_range_length() != 0) { - _this->_internal_set_range_length(from._internal_range_length()); + _this->_impl_.range_length_ = from._impl_.range_length_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8168,13 +9518,7 @@ void ChangeDocumentRequest_TextDocumentContentChangeEvent::CopyFrom(const Change MergeFrom(from); } -PROTOBUF_NOINLINE bool ChangeDocumentRequest_TextDocumentContentChangeEvent::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ChangeDocumentRequest_TextDocumentContentChangeEvent::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ChangeDocumentRequest_TextDocumentContentChangeEvent::InternalSwap(ChangeDocumentRequest_TextDocumentContentChangeEvent* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -8191,46 +9535,35 @@ void ChangeDocumentRequest_TextDocumentContentChangeEvent::InternalSwap(ChangeDo } ::google::protobuf::Metadata ChangeDocumentRequest_TextDocumentContentChangeEvent::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[22]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ChangeDocumentRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const ChangeDocumentRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const ChangeDocumentRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ChangeDocumentRequest::_Internal::console_id(const ChangeDocumentRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& ChangeDocumentRequest::_Internal::text_document(const ChangeDocumentRequest* msg) { - return *msg->_impl_.text_document_; -} void ChangeDocumentRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ChangeDocumentRequest::ChangeDocumentRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) } inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, content_changes_{visibility, arena, from.content_changes_} {} @@ -8238,19 +9571,23 @@ inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest::Impl_::Impl_( ChangeDocumentRequest::ChangeDocumentRequest( ::google::protobuf::Arena* arena, const ChangeDocumentRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ChangeDocumentRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.text_document_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) } @@ -8281,36 +9618,34 @@ inline void ChangeDocumentRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ChangeDocumentRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.content_changes_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ChangeDocumentRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ChangeDocumentRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ChangeDocumentRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ChangeDocumentRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ChangeDocumentRequest::ByteSizeLong, + &ChangeDocumentRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_._cached_size_), + false, + }, + &ChangeDocumentRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ChangeDocumentRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> ChangeDocumentRequest::_table_ = { { @@ -8323,8 +9658,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> ChangeDocumentRequest::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ChangeDocumentRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; @@ -8356,88 +9695,124 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> ChangeDocumentRequest::_table_ = { }}, }; -::uint8_t* ChangeDocumentRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) +PROTOBUF_NOINLINE void ChangeDocumentRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + _impl_.content_changes_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); + } + if (cached_has_bits & 0x00000002u) { + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); + } } + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_content_changes_size()); i < n; i++) { - const auto& repfield = this->_internal_content_changes().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) - return target; -} - -::size_t ChangeDocumentRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; - total_size += 1UL * this->_internal_content_changes_size(); - for (const auto& msg : this->_internal_content_changes()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); - } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); - } - - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ChangeDocumentRequest::_class_data_ = { - ChangeDocumentRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ChangeDocumentRequest::GetClassData() const { - return &_class_data_; -} - -void ChangeDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ChangeDocumentRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ChangeDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ChangeDocumentRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ChangeDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_content_changes_size()); + i < n; i++) { + const auto& repfield = this_._internal_content_changes().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ChangeDocumentRequest::ByteSizeLong(const MessageLite& base) { + const ChangeDocumentRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ChangeDocumentRequest::ByteSizeLong() const { + const ChangeDocumentRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; + { + total_size += 1UL * this_._internal_content_changes_size(); + for (const auto& msg : this_._internal_content_changes()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ChangeDocumentRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -8448,14 +9823,25 @@ void ChangeDocumentRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8466,13 +9852,7 @@ void ChangeDocumentRequest::CopyFrom(const ChangeDocumentRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ChangeDocumentRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ChangeDocumentRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ChangeDocumentRequest::InternalSwap(ChangeDocumentRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8487,60 +9867,53 @@ void ChangeDocumentRequest::InternalSwap(ChangeDocumentRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata ChangeDocumentRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[23]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class DocumentRange::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::Position& start(const DocumentRange* msg); - static void set_has_start(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::Position& end(const DocumentRange* msg); - static void set_has_end(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::_Internal::start(const DocumentRange* msg) { - return *msg->_impl_.start_; -} -const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::_Internal::end(const DocumentRange* msg) { - return *msg->_impl_.end_; -} DocumentRange::DocumentRange(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.DocumentRange) } inline PROTOBUF_NDEBUG_INLINE DocumentRange::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} DocumentRange::DocumentRange( ::google::protobuf::Arena* arena, const DocumentRange& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DocumentRange* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.start_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.start_) - : nullptr; - _impl_.end_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.end_) - : nullptr; + _impl_.start_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>( + arena, *from._impl_.start_) + : nullptr; + _impl_.end_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>( + arena, *from._impl_.end_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.DocumentRange) } @@ -8570,35 +9943,34 @@ inline void DocumentRange::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void DocumentRange::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.start_ != nullptr); - _impl_.start_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.end_ != nullptr); - _impl_.end_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* DocumentRange::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DocumentRange::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_DocumentRange_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DocumentRange::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &DocumentRange::ByteSizeLong, + &DocumentRange::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_._cached_size_), + false, + }, + &DocumentRange::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DocumentRange::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DocumentRange::_table_ = { { @@ -8611,8 +9983,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DocumentRange::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_DocumentRange_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.Position end = 2; {::_pbi::TcParser::FastMtS1, @@ -8636,74 +10012,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DocumentRange::_table_ = { }}, }; -::uint8_t* DocumentRange::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.Position start = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::start(this), - _Internal::start(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.Position end = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::end(this), - _Internal::end(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.DocumentRange) - return target; -} - -::size_t DocumentRange::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void DocumentRange::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.script.grpc.Position start = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.start_); + ABSL_DCHECK(_impl_.start_ != nullptr); + _impl_.start_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.Position end = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.end_); + ABSL_DCHECK(_impl_.end_ != nullptr); + _impl_.end_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData DocumentRange::_class_data_ = { - DocumentRange::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* DocumentRange::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void DocumentRange::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* DocumentRange::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const DocumentRange& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* DocumentRange::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const DocumentRange& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.Position start = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.start_, this_._impl_.start_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.Position end = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.end_, this_._impl_.end_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.DocumentRange) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t DocumentRange::ByteSizeLong(const MessageLite& base) { + const DocumentRange& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t DocumentRange::ByteSizeLong() const { + const DocumentRange& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.script.grpc.Position start = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.start_); + } + // .io.deephaven.proto.backplane.script.grpc.Position end = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.end_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void DocumentRange::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -8712,14 +10117,25 @@ void DocumentRange::MergeImpl(::google::protobuf::Message& to_msg, const ::googl cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_start()->::io::deephaven::proto::backplane::script::grpc::Position::MergeFrom( - from._internal_start()); + ABSL_DCHECK(from._impl_.start_ != nullptr); + if (_this->_impl_.start_ == nullptr) { + _this->_impl_.start_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.start_); + } else { + _this->_impl_.start_->MergeFrom(*from._impl_.start_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_end()->::io::deephaven::proto::backplane::script::grpc::Position::MergeFrom( - from._internal_end()); + ABSL_DCHECK(from._impl_.end_ != nullptr); + if (_this->_impl_.end_ == nullptr) { + _this->_impl_.end_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.end_); + } else { + _this->_impl_.end_->MergeFrom(*from._impl_.end_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8730,13 +10146,7 @@ void DocumentRange::CopyFrom(const DocumentRange& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool DocumentRange::IsInitialized() const { - return true; -} -::_pbi::CachedSize* DocumentRange::AccessCachedSize() const { - return &_impl_._cached_size_; -} void DocumentRange::InternalSwap(DocumentRange* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8750,9 +10160,7 @@ void DocumentRange::InternalSwap(DocumentRange* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata DocumentRange::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[24]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -8761,25 +10169,33 @@ class VersionedTextDocumentIdentifier::_Internal { }; VersionedTextDocumentIdentifier::VersionedTextDocumentIdentifier(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) } inline PROTOBUF_NDEBUG_INLINE VersionedTextDocumentIdentifier::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& from_msg) : uri_(arena, from.uri_), _cached_size_{0} {} VersionedTextDocumentIdentifier::VersionedTextDocumentIdentifier( ::google::protobuf::Arena* arena, const VersionedTextDocumentIdentifier& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE VersionedTextDocumentIdentifier* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.version_ = from._impl_.version_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) @@ -8805,25 +10221,34 @@ inline void VersionedTextDocumentIdentifier::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void VersionedTextDocumentIdentifier::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.uri_.ClearToEmpty(); - _impl_.version_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* VersionedTextDocumentIdentifier::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + VersionedTextDocumentIdentifier::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_VersionedTextDocumentIdentifier_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &VersionedTextDocumentIdentifier::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &VersionedTextDocumentIdentifier::ByteSizeLong, + &VersionedTextDocumentIdentifier::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(VersionedTextDocumentIdentifier, _impl_._cached_size_), + false, + }, + &VersionedTextDocumentIdentifier::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* VersionedTextDocumentIdentifier::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 84, 2> VersionedTextDocumentIdentifier::_table_ = { { @@ -8836,8 +10261,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 84, 2> VersionedTextDocumentIdentifier::_tab 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_VersionedTextDocumentIdentifier_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // int32 version = 2; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(VersionedTextDocumentIdentifier, _impl_.version_), 63>(), @@ -8863,69 +10292,89 @@ const ::_pbi::TcParseTable<1, 2, 0, 84, 2> VersionedTextDocumentIdentifier::_tab }}, }; -::uint8_t* VersionedTextDocumentIdentifier::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string uri = 1; - if (!this->_internal_uri().empty()) { - const std::string& _s = this->_internal_uri(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // int32 version = 2; - if (this->_internal_version() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_version(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - return target; -} - -::size_t VersionedTextDocumentIdentifier::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void VersionedTextDocumentIdentifier::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string uri = 1; - if (!this->_internal_uri().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_uri()); - } - - // int32 version = 2; - if (this->_internal_version() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_version()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData VersionedTextDocumentIdentifier::_class_data_ = { - VersionedTextDocumentIdentifier::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* VersionedTextDocumentIdentifier::GetClassData() const { - return &_class_data_; + _impl_.uri_.ClearToEmpty(); + _impl_.version_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void VersionedTextDocumentIdentifier::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* VersionedTextDocumentIdentifier::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const VersionedTextDocumentIdentifier& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* VersionedTextDocumentIdentifier::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const VersionedTextDocumentIdentifier& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string uri = 1; + if (!this_._internal_uri().empty()) { + const std::string& _s = this_._internal_uri(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // int32 version = 2; + if (this_._internal_version() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_version(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t VersionedTextDocumentIdentifier::ByteSizeLong(const MessageLite& base) { + const VersionedTextDocumentIdentifier& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t VersionedTextDocumentIdentifier::ByteSizeLong() const { + const VersionedTextDocumentIdentifier& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string uri = 1; + if (!this_._internal_uri().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_uri()); + } + // int32 version = 2; + if (this_._internal_version() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_version()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void VersionedTextDocumentIdentifier::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) @@ -8937,7 +10386,7 @@ void VersionedTextDocumentIdentifier::MergeImpl(::google::protobuf::Message& to_ _this->_internal_set_uri(from._internal_uri()); } if (from._internal_version() != 0) { - _this->_internal_set_version(from._internal_version()); + _this->_impl_.version_ = from._impl_.version_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8949,13 +10398,7 @@ void VersionedTextDocumentIdentifier::CopyFrom(const VersionedTextDocumentIdenti MergeFrom(from); } -PROTOBUF_NOINLINE bool VersionedTextDocumentIdentifier::IsInitialized() const { - return true; -} -::_pbi::CachedSize* VersionedTextDocumentIdentifier::AccessCachedSize() const { - return &_impl_._cached_size_; -} void VersionedTextDocumentIdentifier::InternalSwap(VersionedTextDocumentIdentifier* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -8966,9 +10409,7 @@ void VersionedTextDocumentIdentifier::InternalSwap(VersionedTextDocumentIdentifi } ::google::protobuf::Metadata VersionedTextDocumentIdentifier::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[25]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -8977,7 +10418,11 @@ class Position::_Internal { }; Position::Position(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.Position) } @@ -9010,26 +10455,34 @@ inline void Position::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Position::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Position) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.line_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.character_) - - reinterpret_cast(&_impl_.line_)) + sizeof(_impl_.character_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Position::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Position::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Position_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Position::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Position::ByteSizeLong, + &Position::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Position, _impl_._cached_size_), + false, + }, + &Position::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Position::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> Position::_table_ = { { @@ -9042,8 +10495,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> Position::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Position_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // int32 character = 2; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Position, _impl_.character_), 63>(), @@ -9066,68 +10523,89 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> Position::_table_ = { }}, }; -::uint8_t* Position::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Position) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 line = 1; - if (this->_internal_line() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_line(), target); - } - - // int32 character = 2; - if (this->_internal_character() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_character(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Position) - return target; -} - -::size_t Position::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Position) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Position::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Position) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // int32 line = 1; - if (this->_internal_line() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_line()); - } - - // int32 character = 2; - if (this->_internal_character() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_character()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Position::_class_data_ = { - Position::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Position::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.line_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.character_) - + reinterpret_cast(&_impl_.line_)) + sizeof(_impl_.character_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Position::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Position::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Position& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Position::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Position& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Position) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 line = 1; + if (this_._internal_line() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_line(), target); + } + + // int32 character = 2; + if (this_._internal_character() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_character(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Position) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Position::ByteSizeLong(const MessageLite& base) { + const Position& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Position::ByteSizeLong() const { + const Position& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Position) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // int32 line = 1; + if (this_._internal_line() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_line()); + } + // int32 character = 2; + if (this_._internal_character() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_character()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Position::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.Position) @@ -9136,10 +10614,10 @@ void Position::MergeImpl(::google::protobuf::Message& to_msg, const ::google::pr (void) cached_has_bits; if (from._internal_line() != 0) { - _this->_internal_set_line(from._internal_line()); + _this->_impl_.line_ = from._impl_.line_; } if (from._internal_character() != 0) { - _this->_internal_set_character(from._internal_character()); + _this->_impl_.character_ = from._impl_.character_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9151,13 +10629,7 @@ void Position::CopyFrom(const Position& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Position::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Position::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Position::InternalSwap(Position* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -9170,9 +10642,7 @@ void Position::InternalSwap(Position* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Position::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[26]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9181,13 +10651,17 @@ class MarkupContent::_Internal { }; MarkupContent::MarkupContent(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.MarkupContent) } inline PROTOBUF_NDEBUG_INLINE MarkupContent::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& from_msg) : kind_(arena, from.kind_), value_(arena, from.value_), _cached_size_{0} {} @@ -9195,12 +10669,16 @@ inline PROTOBUF_NDEBUG_INLINE MarkupContent::Impl_::Impl_( MarkupContent::MarkupContent( ::google::protobuf::Arena* arena, const MarkupContent& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MarkupContent* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.MarkupContent) } @@ -9226,25 +10704,34 @@ inline void MarkupContent::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MarkupContent::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.kind_.ClearToEmpty(); - _impl_.value_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MarkupContent::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MarkupContent::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MarkupContent_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MarkupContent::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MarkupContent::ByteSizeLong, + &MarkupContent::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MarkupContent, _impl_._cached_size_), + false, + }, + &MarkupContent::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MarkupContent::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 72, 2> MarkupContent::_table_ = { { @@ -9257,8 +10744,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 72, 2> MarkupContent::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_MarkupContent_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string value = 2; {::_pbi::TcParser::FastUS1, @@ -9285,70 +10776,90 @@ const ::_pbi::TcParseTable<1, 2, 0, 72, 2> MarkupContent::_table_ = { }}, }; -::uint8_t* MarkupContent::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string kind = 1; - if (!this->_internal_kind().empty()) { - const std::string& _s = this->_internal_kind(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.MarkupContent.kind"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string value = 2; - if (!this->_internal_value().empty()) { - const std::string& _s = this->_internal_value(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.MarkupContent.value"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.MarkupContent) - return target; -} - -::size_t MarkupContent::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MarkupContent::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string kind = 1; - if (!this->_internal_kind().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_kind()); - } - - // string value = 2; - if (!this->_internal_value().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_value()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MarkupContent::_class_data_ = { - MarkupContent::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MarkupContent::GetClassData() const { - return &_class_data_; + _impl_.kind_.ClearToEmpty(); + _impl_.value_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MarkupContent::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MarkupContent::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MarkupContent& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MarkupContent::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MarkupContent& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string kind = 1; + if (!this_._internal_kind().empty()) { + const std::string& _s = this_._internal_kind(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.MarkupContent.kind"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string value = 2; + if (!this_._internal_value().empty()) { + const std::string& _s = this_._internal_value(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.MarkupContent.value"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.MarkupContent) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MarkupContent::ByteSizeLong(const MessageLite& base) { + const MarkupContent& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MarkupContent::ByteSizeLong() const { + const MarkupContent& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string kind = 1; + if (!this_._internal_kind().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_kind()); + } + // string value = 2; + if (!this_._internal_value().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_value()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MarkupContent::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) @@ -9372,13 +10883,7 @@ void MarkupContent::CopyFrom(const MarkupContent& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MarkupContent::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MarkupContent::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MarkupContent::InternalSwap(MarkupContent* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -9389,85 +10894,64 @@ void MarkupContent::InternalSwap(MarkupContent* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MarkupContent::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[27]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetCompletionItemsRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& console_id(const GetCompletionItemsRequest* msg); - static void set_has_console_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& context(const GetCompletionItemsRequest* msg); - static void set_has_context(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const GetCompletionItemsRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static const ::io::deephaven::proto::backplane::script::grpc::Position& position(const GetCompletionItemsRequest* msg); - static void set_has_position(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& GetCompletionItemsRequest::_Internal::console_id(const GetCompletionItemsRequest* msg) { - return *msg->_impl_.console_id_; -} -const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& GetCompletionItemsRequest::_Internal::context(const GetCompletionItemsRequest* msg) { - return *msg->_impl_.context_; -} -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetCompletionItemsRequest::_Internal::text_document(const GetCompletionItemsRequest* msg) { - return *msg->_impl_.text_document_; -} -const ::io::deephaven::proto::backplane::script::grpc::Position& GetCompletionItemsRequest::_Internal::position(const GetCompletionItemsRequest* msg) { - return *msg->_impl_.position_; -} void GetCompletionItemsRequest::clear_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } GetCompletionItemsRequest::GetCompletionItemsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) } inline PROTOBUF_NDEBUG_INLINE GetCompletionItemsRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} GetCompletionItemsRequest::GetCompletionItemsRequest( ::google::protobuf::Arena* arena, const GetCompletionItemsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetCompletionItemsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.console_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_) - : nullptr; - _impl_.context_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::CompletionContext>(arena, *from._impl_.context_) - : nullptr; - _impl_.text_document_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; - _impl_.position_ = (cached_has_bits & 0x00000008u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_) - : nullptr; + _impl_.console_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.console_id_) + : nullptr; + _impl_.context_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::CompletionContext>( + arena, *from._impl_.context_) + : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; + _impl_.position_ = (cached_has_bits & 0x00000008u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>( + arena, *from._impl_.position_) + : nullptr; _impl_.request_id_ = from._impl_.request_id_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) @@ -9500,44 +10984,34 @@ inline void GetCompletionItemsRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetCompletionItemsRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.console_id_ != nullptr); - _impl_.console_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.context_ != nullptr); - _impl_.context_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - if (cached_has_bits & 0x00000008u) { - ABSL_DCHECK(_impl_.position_ != nullptr); - _impl_.position_->Clear(); - } - } - _impl_.request_id_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetCompletionItemsRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetCompletionItemsRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetCompletionItemsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetCompletionItemsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetCompletionItemsRequest::ByteSizeLong, + &GetCompletionItemsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_._cached_size_), + false, + }, + &GetCompletionItemsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetCompletionItemsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 4, 0, 2> GetCompletionItemsRequest::_table_ = { { @@ -9550,8 +11024,12 @@ const ::_pbi::TcParseTable<3, 5, 4, 0, 2> GetCompletionItemsRequest::_table_ = { 5, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetCompletionItemsRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; @@ -9598,113 +11076,150 @@ const ::_pbi::TcParseTable<3, 5, 4, 0, 2> GetCompletionItemsRequest::_table_ = { }}, }; -::uint8_t* GetCompletionItemsRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) +PROTOBUF_NOINLINE void GetCompletionItemsRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::console_id(this), - _Internal::console_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::context(this), - _Internal::context(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 4; - if (cached_has_bits & 0x00000008u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::position(this), - _Internal::position(this).GetCachedSize(), target, stream); - } - - // int32 request_id = 5 [deprecated = true]; - if (this->_internal_request_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<5>( - stream, this->_internal_request_id(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) - return target; -} - -::size_t GetCompletionItemsRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.console_id_); + ABSL_DCHECK(_impl_.console_id_ != nullptr); + _impl_.console_id_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.context_); + ABSL_DCHECK(_impl_.context_ != nullptr); + _impl_.context_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 4; if (cached_has_bits & 0x00000008u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.position_); + ABSL_DCHECK(_impl_.position_ != nullptr); + _impl_.position_->Clear(); } - - } - // int32 request_id = 5 [deprecated = true]; - if (this->_internal_request_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_request_id()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetCompletionItemsRequest::_class_data_ = { - GetCompletionItemsRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetCompletionItemsRequest::GetClassData() const { - return &_class_data_; + _impl_.request_id_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetCompletionItemsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetCompletionItemsRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetCompletionItemsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetCompletionItemsRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetCompletionItemsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.console_id_, this_._impl_.console_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.context_, this_._impl_.context_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.Position position = 4; + if (cached_has_bits & 0x00000008u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.position_, this_._impl_.position_->GetCachedSize(), target, + stream); + } + + // int32 request_id = 5 [deprecated = true]; + if (this_._internal_request_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<5>( + stream, this_._internal_request_id(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetCompletionItemsRequest::ByteSizeLong(const MessageLite& base) { + const GetCompletionItemsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetCompletionItemsRequest::ByteSizeLong() const { + const GetCompletionItemsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000000fu) { + // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.console_id_); + } + // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.context_); + } + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + // .io.deephaven.proto.backplane.script.grpc.Position position = 4; + if (cached_has_bits & 0x00000008u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.position_); + } + } + { + // int32 request_id = 5 [deprecated = true]; + if (this_._internal_request_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_request_id()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetCompletionItemsRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -9713,25 +11228,46 @@ void GetCompletionItemsRequest::MergeImpl(::google::protobuf::Message& to_msg, c cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_console_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_console_id()); + ABSL_DCHECK(from._impl_.console_id_ != nullptr); + if (_this->_impl_.console_id_ == nullptr) { + _this->_impl_.console_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.console_id_); + } else { + _this->_impl_.console_id_->MergeFrom(*from._impl_.console_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_context()->::io::deephaven::proto::backplane::script::grpc::CompletionContext::MergeFrom( - from._internal_context()); + ABSL_DCHECK(from._impl_.context_ != nullptr); + if (_this->_impl_.context_ == nullptr) { + _this->_impl_.context_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::CompletionContext>(arena, *from._impl_.context_); + } else { + _this->_impl_.context_->MergeFrom(*from._impl_.context_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } if (cached_has_bits & 0x00000008u) { - _this->_internal_mutable_position()->::io::deephaven::proto::backplane::script::grpc::Position::MergeFrom( - from._internal_position()); + ABSL_DCHECK(from._impl_.position_ != nullptr); + if (_this->_impl_.position_ == nullptr) { + _this->_impl_.position_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_); + } else { + _this->_impl_.position_->MergeFrom(*from._impl_.position_); + } } } if (from._internal_request_id() != 0) { - _this->_internal_set_request_id(from._internal_request_id()); + _this->_impl_.request_id_ = from._impl_.request_id_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9742,13 +11278,7 @@ void GetCompletionItemsRequest::CopyFrom(const GetCompletionItemsRequest& from) MergeFrom(from); } -PROTOBUF_NOINLINE bool GetCompletionItemsRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetCompletionItemsRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetCompletionItemsRequest::InternalSwap(GetCompletionItemsRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -9762,9 +11292,7 @@ void GetCompletionItemsRequest::InternalSwap(GetCompletionItemsRequest* PROTOBUF } ::google::protobuf::Metadata GetCompletionItemsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[28]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9773,25 +11301,33 @@ class CompletionContext::_Internal { }; CompletionContext::CompletionContext(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CompletionContext) } inline PROTOBUF_NDEBUG_INLINE CompletionContext::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& from_msg) : trigger_character_(arena, from.trigger_character_), _cached_size_{0} {} CompletionContext::CompletionContext( ::google::protobuf::Arena* arena, const CompletionContext& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CompletionContext* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.trigger_kind_ = from._impl_.trigger_kind_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CompletionContext) @@ -9817,25 +11353,34 @@ inline void CompletionContext::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CompletionContext::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.trigger_character_.ClearToEmpty(); - _impl_.trigger_kind_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CompletionContext::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CompletionContext::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CompletionContext_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CompletionContext::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CompletionContext::ByteSizeLong, + &CompletionContext::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CompletionContext, _impl_._cached_size_), + false, + }, + &CompletionContext::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CompletionContext::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 84, 2> CompletionContext::_table_ = { { @@ -9848,8 +11393,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 84, 2> CompletionContext::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_CompletionContext_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CompletionContext>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string trigger_character = 2; {::_pbi::TcParser::FastUS1, @@ -9875,69 +11424,89 @@ const ::_pbi::TcParseTable<1, 2, 0, 84, 2> CompletionContext::_table_ = { }}, }; -::uint8_t* CompletionContext::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 trigger_kind = 1; - if (this->_internal_trigger_kind() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_trigger_kind(), target); - } - - // string trigger_character = 2; - if (!this->_internal_trigger_character().empty()) { - const std::string& _s = this->_internal_trigger_character(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CompletionContext) - return target; -} - -::size_t CompletionContext::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CompletionContext::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string trigger_character = 2; - if (!this->_internal_trigger_character().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_trigger_character()); - } - - // int32 trigger_kind = 1; - if (this->_internal_trigger_kind() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_trigger_kind()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CompletionContext::_class_data_ = { - CompletionContext::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CompletionContext::GetClassData() const { - return &_class_data_; + _impl_.trigger_character_.ClearToEmpty(); + _impl_.trigger_kind_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CompletionContext::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CompletionContext::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CompletionContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CompletionContext::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CompletionContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 trigger_kind = 1; + if (this_._internal_trigger_kind() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_trigger_kind(), target); + } + + // string trigger_character = 2; + if (!this_._internal_trigger_character().empty()) { + const std::string& _s = this_._internal_trigger_character(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CompletionContext) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CompletionContext::ByteSizeLong(const MessageLite& base) { + const CompletionContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CompletionContext::ByteSizeLong() const { + const CompletionContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string trigger_character = 2; + if (!this_._internal_trigger_character().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_trigger_character()); + } + // int32 trigger_kind = 1; + if (this_._internal_trigger_kind() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_trigger_kind()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CompletionContext::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) @@ -9949,7 +11518,7 @@ void CompletionContext::MergeImpl(::google::protobuf::Message& to_msg, const ::g _this->_internal_set_trigger_character(from._internal_trigger_character()); } if (from._internal_trigger_kind() != 0) { - _this->_internal_set_trigger_kind(from._internal_trigger_kind()); + _this->_impl_.trigger_kind_ = from._impl_.trigger_kind_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9961,13 +11530,7 @@ void CompletionContext::CopyFrom(const CompletionContext& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CompletionContext::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CompletionContext::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CompletionContext::InternalSwap(CompletionContext* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -9978,9 +11541,7 @@ void CompletionContext::InternalSwap(CompletionContext* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata CompletionContext::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[29]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9989,25 +11550,33 @@ class GetCompletionItemsResponse::_Internal { }; GetCompletionItemsResponse::GetCompletionItemsResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) } inline PROTOBUF_NDEBUG_INLINE GetCompletionItemsResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& from_msg) : items_{visibility, arena, from.items_}, _cached_size_{0} {} GetCompletionItemsResponse::GetCompletionItemsResponse( ::google::protobuf::Arena* arena, const GetCompletionItemsResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetCompletionItemsResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, request_id_), reinterpret_cast(&from._impl_) + @@ -10043,27 +11612,34 @@ inline void GetCompletionItemsResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetCompletionItemsResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.items_.Clear(); - ::memset(&_impl_.request_id_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.success_) - - reinterpret_cast(&_impl_.request_id_)) + sizeof(_impl_.success_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetCompletionItemsResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetCompletionItemsResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetCompletionItemsResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetCompletionItemsResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetCompletionItemsResponse::ByteSizeLong, + &GetCompletionItemsResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_._cached_size_), + false, + }, + &GetCompletionItemsResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetCompletionItemsResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetCompletionItemsResponse::_table_ = { { @@ -10076,8 +11652,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetCompletionItemsResponse::_table_ = 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetCompletionItemsResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; @@ -10107,81 +11687,109 @@ const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetCompletionItemsResponse::_table_ = }}, }; -::uint8_t* GetCompletionItemsResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_items_size()); i < n; i++) { - const auto& repfield = this->_internal_items().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - // int32 request_id = 2 [deprecated = true]; - if (this->_internal_request_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_request_id(), target); - } - - // bool success = 3 [deprecated = true]; - if (this->_internal_success() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_success(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - return target; -} - -::size_t GetCompletionItemsResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetCompletionItemsResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; - total_size += 1UL * this->_internal_items_size(); - for (const auto& msg : this->_internal_items()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // int32 request_id = 2 [deprecated = true]; - if (this->_internal_request_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_request_id()); - } - - // bool success = 3 [deprecated = true]; - if (this->_internal_success() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetCompletionItemsResponse::_class_data_ = { - GetCompletionItemsResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetCompletionItemsResponse::GetClassData() const { - return &_class_data_; + _impl_.items_.Clear(); + ::memset(&_impl_.request_id_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.success_) - + reinterpret_cast(&_impl_.request_id_)) + sizeof(_impl_.success_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetCompletionItemsResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetCompletionItemsResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetCompletionItemsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetCompletionItemsResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetCompletionItemsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_items_size()); + i < n; i++) { + const auto& repfield = this_._internal_items().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + // int32 request_id = 2 [deprecated = true]; + if (this_._internal_request_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_request_id(), target); + } + + // bool success = 3 [deprecated = true]; + if (this_._internal_success() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_success(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetCompletionItemsResponse::ByteSizeLong(const MessageLite& base) { + const GetCompletionItemsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetCompletionItemsResponse::ByteSizeLong() const { + const GetCompletionItemsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; + { + total_size += 1UL * this_._internal_items_size(); + for (const auto& msg : this_._internal_items()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // int32 request_id = 2 [deprecated = true]; + if (this_._internal_request_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_request_id()); + } + // bool success = 3 [deprecated = true]; + if (this_._internal_success() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetCompletionItemsResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) @@ -10192,10 +11800,10 @@ void GetCompletionItemsResponse::MergeImpl(::google::protobuf::Message& to_msg, _this->_internal_mutable_items()->MergeFrom( from._internal_items()); if (from._internal_request_id() != 0) { - _this->_internal_set_request_id(from._internal_request_id()); + _this->_impl_.request_id_ = from._impl_.request_id_; } if (from._internal_success() != 0) { - _this->_internal_set_success(from._internal_success()); + _this->_impl_.success_ = from._impl_.success_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -10207,13 +11815,7 @@ void GetCompletionItemsResponse::CopyFrom(const GetCompletionItemsResponse& from MergeFrom(from); } -PROTOBUF_NOINLINE bool GetCompletionItemsResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetCompletionItemsResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetCompletionItemsResponse::InternalSwap(GetCompletionItemsResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -10227,41 +11829,30 @@ void GetCompletionItemsResponse::InternalSwap(GetCompletionItemsResponse* PROTOB } ::google::protobuf::Metadata GetCompletionItemsResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[30]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CompletionItem::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::TextEdit& text_edit(const CompletionItem* msg); - static void set_has_text_edit(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation(const CompletionItem* msg); - static void set_has_documentation(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::TextEdit& CompletionItem::_Internal::text_edit(const CompletionItem* msg) { - return *msg->_impl_.text_edit_; -} -const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& CompletionItem::_Internal::documentation(const CompletionItem* msg) { - return *msg->_impl_.documentation_; -} CompletionItem::CompletionItem(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.CompletionItem) } inline PROTOBUF_NDEBUG_INLINE CompletionItem::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::CompletionItem& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, additional_text_edits_{visibility, arena, from.additional_text_edits_}, @@ -10274,19 +11865,23 @@ inline PROTOBUF_NDEBUG_INLINE CompletionItem::Impl_::Impl_( CompletionItem::CompletionItem( ::google::protobuf::Arena* arena, const CompletionItem& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CompletionItem* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.text_edit_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::TextEdit>(arena, *from._impl_.text_edit_) - : nullptr; - _impl_.documentation_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_) - : nullptr; + _impl_.text_edit_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::TextEdit>( + arena, *from._impl_.text_edit_) + : nullptr; + _impl_.documentation_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>( + arena, *from._impl_.documentation_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, start_), reinterpret_cast(&from._impl_) + @@ -10333,44 +11928,34 @@ inline void CompletionItem::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CompletionItem::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.additional_text_edits_.Clear(); - _impl_.commit_characters_.Clear(); - _impl_.label_.ClearToEmpty(); - _impl_.detail_.ClearToEmpty(); - _impl_.sort_text_.ClearToEmpty(); - _impl_.filter_text_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.text_edit_ != nullptr); - _impl_.text_edit_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.documentation_ != nullptr); - _impl_.documentation_->Clear(); - } - } - ::memset(&_impl_.start_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.insert_text_format_) - - reinterpret_cast(&_impl_.start_)) + sizeof(_impl_.insert_text_format_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CompletionItem::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CompletionItem::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CompletionItem_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CompletionItem::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CompletionItem::ByteSizeLong, + &CompletionItem::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_._cached_size_), + false, + }, + &CompletionItem::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CompletionItem::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 14, 3, 120, 2> CompletionItem::_table_ = { { @@ -10383,8 +11968,12 @@ const ::_pbi::TcParseTable<4, 14, 3, 120, 2> CompletionItem::_table_ = { 14, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CompletionItem_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CompletionItem>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // int32 start = 1; @@ -10490,234 +12079,275 @@ const ::_pbi::TcParseTable<4, 14, 3, 120, 2> CompletionItem::_table_ = { }}, }; -::uint8_t* CompletionItem::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 start = 1; - if (this->_internal_start() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_start(), target); - } - - // int32 length = 2; - if (this->_internal_length() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_length(), target); - } - - // string label = 3; - if (!this->_internal_label().empty()) { - const std::string& _s = this->_internal_label(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.label"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // int32 kind = 4; - if (this->_internal_kind() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<4>( - stream, this->_internal_kind(), target); - } - - // string detail = 5; - if (!this->_internal_detail().empty()) { - const std::string& _s = this->_internal_detail(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.detail"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // bool deprecated = 7; - if (this->_internal_deprecated() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 7, this->_internal_deprecated(), target); - } - - // bool preselect = 8; - if (this->_internal_preselect() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 8, this->_internal_preselect(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::text_edit(this), - _Internal::text_edit(this).GetCachedSize(), target, stream); - } - - // string sort_text = 10; - if (!this->_internal_sort_text().empty()) { - const std::string& _s = this->_internal_sort_text(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text"); - target = stream->WriteStringMaybeAliased(10, _s, target); - } - - // string filter_text = 11; - if (!this->_internal_filter_text().empty()) { - const std::string& _s = this->_internal_filter_text(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text"); - target = stream->WriteStringMaybeAliased(11, _s, target); - } - - // int32 insert_text_format = 12; - if (this->_internal_insert_text_format() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<12>( - stream, this->_internal_insert_text_format(), target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; - for (unsigned i = 0, - n = static_cast(this->_internal_additional_text_edits_size()); i < n; i++) { - const auto& repfield = this->_internal_additional_text_edits().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(13, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated string commit_characters = 14; - for (int i = 0, n = this->_internal_commit_characters_size(); i < n; ++i) { - const auto& s = this->_internal_commit_characters().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters"); - target = stream->WriteString(14, s, target); - } - - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 15, _Internal::documentation(this), - _Internal::documentation(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CompletionItem) - return target; -} - -::size_t CompletionItem::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CompletionItem::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; - total_size += 1UL * this->_internal_additional_text_edits_size(); - for (const auto& msg : this->_internal_additional_text_edits()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string commit_characters = 14; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_commit_characters().size()); - for (int i = 0, n = _internal_commit_characters().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_commit_characters().Get(i)); - } - // string label = 3; - if (!this->_internal_label().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_label()); - } - - // string detail = 5; - if (!this->_internal_detail().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_detail()); - } - - // string sort_text = 10; - if (!this->_internal_sort_text().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_sort_text()); - } - - // string filter_text = 11; - if (!this->_internal_filter_text().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_filter_text()); - } - + _impl_.additional_text_edits_.Clear(); + _impl_.commit_characters_.Clear(); + _impl_.label_.ClearToEmpty(); + _impl_.detail_.ClearToEmpty(); + _impl_.sort_text_.ClearToEmpty(); + _impl_.filter_text_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_edit_); + ABSL_DCHECK(_impl_.text_edit_ != nullptr); + _impl_.text_edit_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.documentation_); + ABSL_DCHECK(_impl_.documentation_ != nullptr); + _impl_.documentation_->Clear(); } - - } - // int32 start = 1; - if (this->_internal_start() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_start()); - } - - // int32 length = 2; - if (this->_internal_length() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_length()); - } - - // int32 kind = 4; - if (this->_internal_kind() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_kind()); - } - - // bool deprecated = 7; - if (this->_internal_deprecated() != 0) { - total_size += 2; - } - - // bool preselect = 8; - if (this->_internal_preselect() != 0) { - total_size += 2; } - - // int32 insert_text_format = 12; - if (this->_internal_insert_text_format() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_insert_text_format()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CompletionItem::_class_data_ = { - CompletionItem::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CompletionItem::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.start_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.insert_text_format_) - + reinterpret_cast(&_impl_.start_)) + sizeof(_impl_.insert_text_format_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CompletionItem::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CompletionItem::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CompletionItem& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CompletionItem::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CompletionItem& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 start = 1; + if (this_._internal_start() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_start(), target); + } + + // int32 length = 2; + if (this_._internal_length() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_length(), target); + } + + // string label = 3; + if (!this_._internal_label().empty()) { + const std::string& _s = this_._internal_label(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.label"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // int32 kind = 4; + if (this_._internal_kind() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<4>( + stream, this_._internal_kind(), target); + } + + // string detail = 5; + if (!this_._internal_detail().empty()) { + const std::string& _s = this_._internal_detail(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.detail"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // bool deprecated = 7; + if (this_._internal_deprecated() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 7, this_._internal_deprecated(), target); + } + + // bool preselect = 8; + if (this_._internal_preselect() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 8, this_._internal_preselect(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.text_edit_, this_._impl_.text_edit_->GetCachedSize(), target, + stream); + } + + // string sort_text = 10; + if (!this_._internal_sort_text().empty()) { + const std::string& _s = this_._internal_sort_text(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text"); + target = stream->WriteStringMaybeAliased(10, _s, target); + } + + // string filter_text = 11; + if (!this_._internal_filter_text().empty()) { + const std::string& _s = this_._internal_filter_text(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text"); + target = stream->WriteStringMaybeAliased(11, _s, target); + } + + // int32 insert_text_format = 12; + if (this_._internal_insert_text_format() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<12>( + stream, this_._internal_insert_text_format(), target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; + for (unsigned i = 0, n = static_cast( + this_._internal_additional_text_edits_size()); + i < n; i++) { + const auto& repfield = this_._internal_additional_text_edits().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 13, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated string commit_characters = 14; + for (int i = 0, n = this_._internal_commit_characters_size(); i < n; ++i) { + const auto& s = this_._internal_commit_characters().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters"); + target = stream->WriteString(14, s, target); + } + + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 15, *this_._impl_.documentation_, this_._impl_.documentation_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.CompletionItem) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CompletionItem::ByteSizeLong(const MessageLite& base) { + const CompletionItem& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CompletionItem::ByteSizeLong() const { + const CompletionItem& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; + { + total_size += 1UL * this_._internal_additional_text_edits_size(); + for (const auto& msg : this_._internal_additional_text_edits()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string commit_characters = 14; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_commit_characters().size()); + for (int i = 0, n = this_._internal_commit_characters().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_commit_characters().Get(i)); + } + } + } + { + // string label = 3; + if (!this_._internal_label().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_label()); + } + // string detail = 5; + if (!this_._internal_detail().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_detail()); + } + // string sort_text = 10; + if (!this_._internal_sort_text().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_sort_text()); + } + // string filter_text = 11; + if (!this_._internal_filter_text().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_filter_text()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_edit_); + } + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.documentation_); + } + } + { + // int32 start = 1; + if (this_._internal_start() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_start()); + } + // int32 length = 2; + if (this_._internal_length() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_length()); + } + // int32 kind = 4; + if (this_._internal_kind() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_kind()); + } + // bool deprecated = 7; + if (this_._internal_deprecated() != 0) { + total_size += 2; + } + // bool preselect = 8; + if (this_._internal_preselect() != 0) { + total_size += 2; + } + // int32 insert_text_format = 12; + if (this_._internal_insert_text_format() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_insert_text_format()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CompletionItem::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -10741,32 +12371,43 @@ void CompletionItem::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_text_edit()->::io::deephaven::proto::backplane::script::grpc::TextEdit::MergeFrom( - from._internal_text_edit()); + ABSL_DCHECK(from._impl_.text_edit_ != nullptr); + if (_this->_impl_.text_edit_ == nullptr) { + _this->_impl_.text_edit_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::TextEdit>(arena, *from._impl_.text_edit_); + } else { + _this->_impl_.text_edit_->MergeFrom(*from._impl_.text_edit_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_documentation()->::io::deephaven::proto::backplane::script::grpc::MarkupContent::MergeFrom( - from._internal_documentation()); + ABSL_DCHECK(from._impl_.documentation_ != nullptr); + if (_this->_impl_.documentation_ == nullptr) { + _this->_impl_.documentation_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_); + } else { + _this->_impl_.documentation_->MergeFrom(*from._impl_.documentation_); + } } } if (from._internal_start() != 0) { - _this->_internal_set_start(from._internal_start()); + _this->_impl_.start_ = from._impl_.start_; } if (from._internal_length() != 0) { - _this->_internal_set_length(from._internal_length()); + _this->_impl_.length_ = from._impl_.length_; } if (from._internal_kind() != 0) { - _this->_internal_set_kind(from._internal_kind()); + _this->_impl_.kind_ = from._impl_.kind_; } if (from._internal_deprecated() != 0) { - _this->_internal_set_deprecated(from._internal_deprecated()); + _this->_impl_.deprecated_ = from._impl_.deprecated_; } if (from._internal_preselect() != 0) { - _this->_internal_set_preselect(from._internal_preselect()); + _this->_impl_.preselect_ = from._impl_.preselect_; } if (from._internal_insert_text_format() != 0) { - _this->_internal_set_insert_text_format(from._internal_insert_text_format()); + _this->_impl_.insert_text_format_ = from._impl_.insert_text_format_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -10777,13 +12418,7 @@ void CompletionItem::CopyFrom(const CompletionItem& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CompletionItem::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CompletionItem::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CompletionItem::InternalSwap(CompletionItem* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -10805,34 +12440,30 @@ void CompletionItem::InternalSwap(CompletionItem* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata CompletionItem::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[31]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class TextEdit::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TextEdit, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range(const TextEdit* msg); - static void set_has_range(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(TextEdit, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& TextEdit::_Internal::range(const TextEdit* msg) { - return *msg->_impl_.range_; -} TextEdit::TextEdit(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.TextEdit) } inline PROTOBUF_NDEBUG_INLINE TextEdit::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::TextEdit& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, text_(arena, from.text_) {} @@ -10840,16 +12471,20 @@ inline PROTOBUF_NDEBUG_INLINE TextEdit::Impl_::Impl_( TextEdit::TextEdit( ::google::protobuf::Arena* arena, const TextEdit& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TextEdit* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.range_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_) - : nullptr; + _impl_.range_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>( + arena, *from._impl_.range_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.TextEdit) } @@ -10875,30 +12510,34 @@ inline void TextEdit::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TextEdit::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.TextEdit) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.text_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.range_ != nullptr); - _impl_.range_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TextEdit::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TextEdit::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TextEdit_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TextEdit::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TextEdit::ByteSizeLong, + &TextEdit::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TextEdit, _impl_._cached_size_), + false, + }, + &TextEdit::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TextEdit::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 62, 2> TextEdit::_table_ = { { @@ -10911,8 +12550,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 62, 2> TextEdit::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TextEdit_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::TextEdit>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string text = 2; {::_pbi::TcParser::FastUS1, @@ -10938,73 +12581,102 @@ const ::_pbi::TcParseTable<1, 2, 1, 62, 2> TextEdit::_table_ = { }}, }; -::uint8_t* TextEdit::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.TextEdit) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::range(this), - _Internal::range(this).GetCachedSize(), target, stream); - } - - // string text = 2; - if (!this->_internal_text().empty()) { - const std::string& _s = this->_internal_text(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextEdit.text"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.TextEdit) - return target; -} - -::size_t TextEdit::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.TextEdit) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TextEdit::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.TextEdit) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string text = 2; - if (!this->_internal_text().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_text()); - } - - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + _impl_.text_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.range_); + ABSL_DCHECK(_impl_.range_ != nullptr); + _impl_.range_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TextEdit::_class_data_ = { - TextEdit::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TextEdit::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TextEdit::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TextEdit::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TextEdit& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TextEdit::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TextEdit& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.TextEdit) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.range_, this_._impl_.range_->GetCachedSize(), target, + stream); + } + + // string text = 2; + if (!this_._internal_text().empty()) { + const std::string& _s = this_._internal_text(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.TextEdit.text"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.TextEdit) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TextEdit::ByteSizeLong(const MessageLite& base) { + const TextEdit& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TextEdit::ByteSizeLong() const { + const TextEdit& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.TextEdit) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string text = 2; + if (!this_._internal_text().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_text()); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.range_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TextEdit::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.TextEdit) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11013,10 +12685,17 @@ void TextEdit::MergeImpl(::google::protobuf::Message& to_msg, const ::google::pr if (!from._internal_text().empty()) { _this->_internal_set_text(from._internal_text()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_range()->::io::deephaven::proto::backplane::script::grpc::DocumentRange::MergeFrom( - from._internal_range()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.range_ != nullptr); + if (_this->_impl_.range_ == nullptr) { + _this->_impl_.range_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_); + } else { + _this->_impl_.range_->MergeFrom(*from._impl_.range_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11027,13 +12706,7 @@ void TextEdit::CopyFrom(const TextEdit& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TextEdit::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TextEdit::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TextEdit::InternalSwap(TextEdit* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -11045,70 +12718,56 @@ void TextEdit::InternalSwap(TextEdit* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TextEdit::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[32]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetSignatureHelpRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& context(const GetSignatureHelpRequest* msg); - static void set_has_context(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const GetSignatureHelpRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::script::grpc::Position& position(const GetSignatureHelpRequest* msg); - static void set_has_position(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& GetSignatureHelpRequest::_Internal::context(const GetSignatureHelpRequest* msg) { - return *msg->_impl_.context_; -} -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetSignatureHelpRequest::_Internal::text_document(const GetSignatureHelpRequest* msg) { - return *msg->_impl_.text_document_; -} -const ::io::deephaven::proto::backplane::script::grpc::Position& GetSignatureHelpRequest::_Internal::position(const GetSignatureHelpRequest* msg) { - return *msg->_impl_.position_; -} GetSignatureHelpRequest::GetSignatureHelpRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) } inline PROTOBUF_NDEBUG_INLINE GetSignatureHelpRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} GetSignatureHelpRequest::GetSignatureHelpRequest( ::google::protobuf::Arena* arena, const GetSignatureHelpRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetSignatureHelpRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.context_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>(arena, *from._impl_.context_) - : nullptr; - _impl_.text_document_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; - _impl_.position_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_) - : nullptr; + _impl_.context_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>( + arena, *from._impl_.context_) + : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; + _impl_.position_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>( + arena, *from._impl_.position_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) } @@ -11139,39 +12798,34 @@ inline void GetSignatureHelpRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetSignatureHelpRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.context_ != nullptr); - _impl_.context_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.position_ != nullptr); - _impl_.position_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetSignatureHelpRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetSignatureHelpRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetSignatureHelpRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetSignatureHelpRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetSignatureHelpRequest::ByteSizeLong, + &GetSignatureHelpRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_._cached_size_), + false, + }, + &GetSignatureHelpRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetSignatureHelpRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetSignatureHelpRequest::_table_ = { { @@ -11184,8 +12838,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetSignatureHelpRequest::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetSignatureHelpRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; @@ -11217,87 +12875,119 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetSignatureHelpRequest::_table_ = { }}, }; -::uint8_t* GetSignatureHelpRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::context(this), - _Internal::context(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::position(this), - _Internal::position(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - return target; -} - -::size_t GetSignatureHelpRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetSignatureHelpRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.context_); + ABSL_DCHECK(_impl_.context_ != nullptr); + _impl_.context_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.position_); + ABSL_DCHECK(_impl_.position_ != nullptr); + _impl_.position_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetSignatureHelpRequest::_class_data_ = { - GetSignatureHelpRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetSignatureHelpRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetSignatureHelpRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetSignatureHelpRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetSignatureHelpRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetSignatureHelpRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetSignatureHelpRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.context_, this_._impl_.context_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.Position position = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.position_, this_._impl_.position_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetSignatureHelpRequest::ByteSizeLong(const MessageLite& base) { + const GetSignatureHelpRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetSignatureHelpRequest::ByteSizeLong() const { + const GetSignatureHelpRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.context_); + } + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + // .io.deephaven.proto.backplane.script.grpc.Position position = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.position_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetSignatureHelpRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11306,18 +12996,34 @@ void GetSignatureHelpRequest::MergeImpl(::google::protobuf::Message& to_msg, con cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_context()->::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext::MergeFrom( - from._internal_context()); + ABSL_DCHECK(from._impl_.context_ != nullptr); + if (_this->_impl_.context_ == nullptr) { + _this->_impl_.context_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>(arena, *from._impl_.context_); + } else { + _this->_impl_.context_->MergeFrom(*from._impl_.context_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_position()->::io::deephaven::proto::backplane::script::grpc::Position::MergeFrom( - from._internal_position()); + ABSL_DCHECK(from._impl_.position_ != nullptr); + if (_this->_impl_.position_ == nullptr) { + _this->_impl_.position_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_); + } else { + _this->_impl_.position_->MergeFrom(*from._impl_.position_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11328,13 +13034,7 @@ void GetSignatureHelpRequest::CopyFrom(const GetSignatureHelpRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetSignatureHelpRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetSignatureHelpRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetSignatureHelpRequest::InternalSwap(GetSignatureHelpRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11348,37 +13048,30 @@ void GetSignatureHelpRequest::InternalSwap(GetSignatureHelpRequest* PROTOBUF_RES } ::google::protobuf::Metadata GetSignatureHelpRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[33]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SignatureHelpContext::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_._has_bits_); - static void set_has_trigger_character(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& active_signature_help(const SignatureHelpContext* msg); - static void set_has_active_signature_help(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& SignatureHelpContext::_Internal::active_signature_help(const SignatureHelpContext* msg) { - return *msg->_impl_.active_signature_help_; -} SignatureHelpContext::SignatureHelpContext(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) } inline PROTOBUF_NDEBUG_INLINE SignatureHelpContext::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, trigger_character_(arena, from.trigger_character_) {} @@ -11386,16 +13079,20 @@ inline PROTOBUF_NDEBUG_INLINE SignatureHelpContext::Impl_::Impl_( SignatureHelpContext::SignatureHelpContext( ::google::protobuf::Arena* arena, const SignatureHelpContext& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SignatureHelpContext* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.active_signature_help_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.active_signature_help_) - : nullptr; + _impl_.active_signature_help_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>( + arena, *from._impl_.active_signature_help_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, trigger_kind_), reinterpret_cast(&from._impl_) + @@ -11433,37 +13130,34 @@ inline void SignatureHelpContext::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SignatureHelpContext::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.trigger_character_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.active_signature_help_ != nullptr); - _impl_.active_signature_help_->Clear(); - } - } - ::memset(&_impl_.trigger_kind_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.is_retrigger_) - - reinterpret_cast(&_impl_.trigger_kind_)) + sizeof(_impl_.is_retrigger_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SignatureHelpContext::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SignatureHelpContext::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SignatureHelpContext_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SignatureHelpContext::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SignatureHelpContext::ByteSizeLong, + &SignatureHelpContext::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_._cached_size_), + false, + }, + &SignatureHelpContext::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SignatureHelpContext::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 1, 87, 2> SignatureHelpContext::_table_ = { { @@ -11476,8 +13170,12 @@ const ::_pbi::TcParseTable<2, 4, 1, 87, 2> SignatureHelpContext::_table_ = { 4, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SignatureHelpContext_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; {::_pbi::TcParser::FastMtS1, @@ -11515,100 +13213,131 @@ const ::_pbi::TcParseTable<2, 4, 1, 87, 2> SignatureHelpContext::_table_ = { }}, }; -::uint8_t* SignatureHelpContext::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 trigger_kind = 1; - if (this->_internal_trigger_kind() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_trigger_kind(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string trigger_character = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_trigger_character(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // bool is_retrigger = 3; - if (this->_internal_is_retrigger() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_is_retrigger(), target); - } - - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::active_signature_help(this), - _Internal::active_signature_help(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - return target; -} - -::size_t SignatureHelpContext::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SignatureHelpContext::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // optional string trigger_character = 2; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_trigger_character()); + _impl_.trigger_character_.ClearNonDefaultToEmpty(); } - - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.active_signature_help_); + ABSL_DCHECK(_impl_.active_signature_help_ != nullptr); + _impl_.active_signature_help_->Clear(); } - } - // int32 trigger_kind = 1; - if (this->_internal_trigger_kind() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_trigger_kind()); - } - - // bool is_retrigger = 3; - if (this->_internal_is_retrigger() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SignatureHelpContext::_class_data_ = { - SignatureHelpContext::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SignatureHelpContext::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.trigger_kind_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.is_retrigger_) - + reinterpret_cast(&_impl_.trigger_kind_)) + sizeof(_impl_.is_retrigger_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SignatureHelpContext::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SignatureHelpContext::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SignatureHelpContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SignatureHelpContext::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SignatureHelpContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 trigger_kind = 1; + if (this_._internal_trigger_kind() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_trigger_kind(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string trigger_character = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_trigger_character(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bool is_retrigger = 3; + if (this_._internal_is_retrigger() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_is_retrigger(), target); + } + + // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.active_signature_help_, this_._impl_.active_signature_help_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SignatureHelpContext::ByteSizeLong(const MessageLite& base) { + const SignatureHelpContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SignatureHelpContext::ByteSizeLong() const { + const SignatureHelpContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional string trigger_character = 2; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_trigger_character()); + } + // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.active_signature_help_); + } + } + { + // int32 trigger_kind = 1; + if (this_._internal_trigger_kind() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_trigger_kind()); + } + // bool is_retrigger = 3; + if (this_._internal_is_retrigger() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SignatureHelpContext::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11620,16 +13349,22 @@ void SignatureHelpContext::MergeImpl(::google::protobuf::Message& to_msg, const _this->_internal_set_trigger_character(from._internal_trigger_character()); } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_active_signature_help()->::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse::MergeFrom( - from._internal_active_signature_help()); + ABSL_DCHECK(from._impl_.active_signature_help_ != nullptr); + if (_this->_impl_.active_signature_help_ == nullptr) { + _this->_impl_.active_signature_help_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.active_signature_help_); + } else { + _this->_impl_.active_signature_help_->MergeFrom(*from._impl_.active_signature_help_); + } } } if (from._internal_trigger_kind() != 0) { - _this->_internal_set_trigger_kind(from._internal_trigger_kind()); + _this->_impl_.trigger_kind_ = from._impl_.trigger_kind_; } if (from._internal_is_retrigger() != 0) { - _this->_internal_set_is_retrigger(from._internal_is_retrigger()); + _this->_impl_.is_retrigger_ = from._impl_.is_retrigger_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11640,13 +13375,7 @@ void SignatureHelpContext::CopyFrom(const SignatureHelpContext& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SignatureHelpContext::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SignatureHelpContext::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SignatureHelpContext::InternalSwap(SignatureHelpContext* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -11663,33 +13392,30 @@ void SignatureHelpContext::InternalSwap(SignatureHelpContext* PROTOBUF_RESTRICT } ::google::protobuf::Metadata SignatureHelpContext::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[34]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetSignatureHelpResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_._has_bits_); - static void set_has_active_signature(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_active_parameter(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_._has_bits_); }; GetSignatureHelpResponse::GetSignatureHelpResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) } inline PROTOBUF_NDEBUG_INLINE GetSignatureHelpResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, signatures_{visibility, arena, from.signatures_} {} @@ -11697,12 +13423,16 @@ inline PROTOBUF_NDEBUG_INLINE GetSignatureHelpResponse::Impl_::Impl_( GetSignatureHelpResponse::GetSignatureHelpResponse( ::google::protobuf::Arena* arena, const GetSignatureHelpResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetSignatureHelpResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, active_signature_), reinterpret_cast(&from._impl_) + @@ -11738,31 +13468,34 @@ inline void GetSignatureHelpResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetSignatureHelpResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.signatures_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.active_signature_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.active_parameter_) - - reinterpret_cast(&_impl_.active_signature_)) + sizeof(_impl_.active_parameter_)); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetSignatureHelpResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetSignatureHelpResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetSignatureHelpResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetSignatureHelpResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetSignatureHelpResponse::ByteSizeLong, + &GetSignatureHelpResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_._cached_size_), + false, + }, + &GetSignatureHelpResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetSignatureHelpResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetSignatureHelpResponse::_table_ = { { @@ -11775,8 +13508,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetSignatureHelpResponse::_table_ = { 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetSignatureHelpResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; @@ -11806,86 +13543,116 @@ const ::_pbi::TcParseTable<2, 3, 1, 0, 2> GetSignatureHelpResponse::_table_ = { }}, }; -::uint8_t* GetSignatureHelpResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_signatures_size()); i < n; i++) { - const auto& repfield = this->_internal_signatures().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional int32 active_signature = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_active_signature(), target); - } - - // optional int32 active_parameter = 3; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_active_parameter(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - return target; -} - -::size_t GetSignatureHelpResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetSignatureHelpResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; - total_size += 1UL * this->_internal_signatures_size(); - for (const auto& msg : this->_internal_signatures()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } + _impl_.signatures_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // optional int32 active_signature = 2; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_active_signature()); - } - - // optional int32 active_parameter = 3; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_active_parameter()); - } - + ::memset(&_impl_.active_signature_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.active_parameter_) - + reinterpret_cast(&_impl_.active_signature_)) + sizeof(_impl_.active_parameter_)); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetSignatureHelpResponse::_class_data_ = { - GetSignatureHelpResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetSignatureHelpResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetSignatureHelpResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetSignatureHelpResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetSignatureHelpResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetSignatureHelpResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetSignatureHelpResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_signatures_size()); + i < n; i++) { + const auto& repfield = this_._internal_signatures().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional int32 active_signature = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_active_signature(), target); + } + + // optional int32 active_parameter = 3; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_active_parameter(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetSignatureHelpResponse::ByteSizeLong(const MessageLite& base) { + const GetSignatureHelpResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetSignatureHelpResponse::ByteSizeLong() const { + const GetSignatureHelpResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; + { + total_size += 1UL * this_._internal_signatures_size(); + for (const auto& msg : this_._internal_signatures()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional int32 active_signature = 2; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_active_signature()); + } + // optional int32 active_parameter = 3; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_active_parameter()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetSignatureHelpResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) @@ -11903,8 +13670,8 @@ void GetSignatureHelpResponse::MergeImpl(::google::protobuf::Message& to_msg, co if (cached_has_bits & 0x00000002u) { _this->_impl_.active_parameter_ = from._impl_.active_parameter_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11915,13 +13682,7 @@ void GetSignatureHelpResponse::CopyFrom(const GetSignatureHelpResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetSignatureHelpResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetSignatureHelpResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetSignatureHelpResponse::InternalSwap(GetSignatureHelpResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11936,37 +13697,30 @@ void GetSignatureHelpResponse::InternalSwap(GetSignatureHelpResponse* PROTOBUF_R } ::google::protobuf::Metadata GetSignatureHelpResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[35]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SignatureInformation::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation(const SignatureInformation* msg); - static void set_has_documentation(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_active_parameter(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& SignatureInformation::_Internal::documentation(const SignatureInformation* msg) { - return *msg->_impl_.documentation_; -} SignatureInformation::SignatureInformation(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.SignatureInformation) } inline PROTOBUF_NDEBUG_INLINE SignatureInformation::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::SignatureInformation& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, parameters_{visibility, arena, from.parameters_}, @@ -11975,16 +13729,20 @@ inline PROTOBUF_NDEBUG_INLINE SignatureInformation::Impl_::Impl_( SignatureInformation::SignatureInformation( ::google::protobuf::Arena* arena, const SignatureInformation& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SignatureInformation* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.documentation_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_) - : nullptr; + _impl_.documentation_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>( + arena, *from._impl_.documentation_) + : nullptr; _impl_.active_parameter_ = from._impl_.active_parameter_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.SignatureInformation) @@ -12017,32 +13775,34 @@ inline void SignatureInformation::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SignatureInformation::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.parameters_.Clear(); - _impl_.label_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.documentation_ != nullptr); - _impl_.documentation_->Clear(); - } - _impl_.active_parameter_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SignatureInformation::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SignatureInformation::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SignatureInformation_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SignatureInformation::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SignatureInformation::ByteSizeLong, + &SignatureInformation::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_._cached_size_), + false, + }, + &SignatureInformation::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SignatureInformation::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 75, 2> SignatureInformation::_table_ = { { @@ -12055,8 +13815,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 75, 2> SignatureInformation::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SignatureInformation_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional int32 active_parameter = 4; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(SignatureInformation, _impl_.active_parameter_), 1>(), @@ -12095,102 +13859,135 @@ const ::_pbi::TcParseTable<2, 4, 2, 75, 2> SignatureInformation::_table_ = { }}, }; -::uint8_t* SignatureInformation::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string label = 1; - if (!this->_internal_label().empty()) { - const std::string& _s = this->_internal_label(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.SignatureInformation.label"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::documentation(this), - _Internal::documentation(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_parameters_size()); i < n; i++) { - const auto& repfield = this->_internal_parameters().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - // optional int32 active_parameter = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<4>( - stream, this->_internal_active_parameter(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - return target; -} - -::size_t SignatureInformation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SignatureInformation::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; - total_size += 1UL * this->_internal_parameters_size(); - for (const auto& msg : this->_internal_parameters()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string label = 1; - if (!this->_internal_label().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_label()); - } - + _impl_.parameters_.Clear(); + _impl_.label_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.documentation_); - } - - // optional int32 active_parameter = 4; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_active_parameter()); - } - + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(_impl_.documentation_ != nullptr); + _impl_.documentation_->Clear(); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SignatureInformation::_class_data_ = { - SignatureInformation::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SignatureInformation::GetClassData() const { - return &_class_data_; + _impl_.active_parameter_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SignatureInformation::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SignatureInformation::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SignatureInformation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SignatureInformation::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SignatureInformation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string label = 1; + if (!this_._internal_label().empty()) { + const std::string& _s = this_._internal_label(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.SignatureInformation.label"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.documentation_, this_._impl_.documentation_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_parameters_size()); + i < n; i++) { + const auto& repfield = this_._internal_parameters().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + // optional int32 active_parameter = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<4>( + stream, this_._internal_active_parameter(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.SignatureInformation) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SignatureInformation::ByteSizeLong(const MessageLite& base) { + const SignatureInformation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SignatureInformation::ByteSizeLong() const { + const SignatureInformation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; + { + total_size += 1UL * this_._internal_parameters_size(); + for (const auto& msg : this_._internal_parameters()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string label = 1; + if (!this_._internal_label().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_label()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.documentation_); + } + // optional int32 active_parameter = 4; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_active_parameter()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SignatureInformation::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12204,14 +14001,19 @@ void SignatureInformation::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_documentation()->::io::deephaven::proto::backplane::script::grpc::MarkupContent::MergeFrom( - from._internal_documentation()); + ABSL_DCHECK(from._impl_.documentation_ != nullptr); + if (_this->_impl_.documentation_ == nullptr) { + _this->_impl_.documentation_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_); + } else { + _this->_impl_.documentation_->MergeFrom(*from._impl_.documentation_); + } } if (cached_has_bits & 0x00000002u) { _this->_impl_.active_parameter_ = from._impl_.active_parameter_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12222,13 +14024,7 @@ void SignatureInformation::CopyFrom(const SignatureInformation& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SignatureInformation::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SignatureInformation::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SignatureInformation::InternalSwap(SignatureInformation* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -12246,34 +14042,30 @@ void SignatureInformation::InternalSwap(SignatureInformation* PROTOBUF_RESTRICT } ::google::protobuf::Metadata SignatureInformation::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[36]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ParameterInformation::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation(const ParameterInformation* msg); - static void set_has_documentation(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& ParameterInformation::_Internal::documentation(const ParameterInformation* msg) { - return *msg->_impl_.documentation_; -} ParameterInformation::ParameterInformation(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.ParameterInformation) } inline PROTOBUF_NDEBUG_INLINE ParameterInformation::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::ParameterInformation& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, label_(arena, from.label_) {} @@ -12281,16 +14073,20 @@ inline PROTOBUF_NDEBUG_INLINE ParameterInformation::Impl_::Impl_( ParameterInformation::ParameterInformation( ::google::protobuf::Arena* arena, const ParameterInformation& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ParameterInformation* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.documentation_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_) - : nullptr; + _impl_.documentation_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>( + arena, *from._impl_.documentation_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.ParameterInformation) } @@ -12316,30 +14112,34 @@ inline void ParameterInformation::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ParameterInformation::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.label_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.documentation_ != nullptr); - _impl_.documentation_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ParameterInformation::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ParameterInformation::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ParameterInformation_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ParameterInformation::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ParameterInformation::ByteSizeLong, + &ParameterInformation::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_._cached_size_), + false, + }, + &ParameterInformation::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ParameterInformation::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 75, 2> ParameterInformation::_table_ = { { @@ -12352,8 +14152,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 75, 2> ParameterInformation::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ParameterInformation_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; {::_pbi::TcParser::FastMtS1, @@ -12379,73 +14183,102 @@ const ::_pbi::TcParseTable<1, 2, 1, 75, 2> ParameterInformation::_table_ = { }}, }; -::uint8_t* ParameterInformation::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string label = 1; - if (!this->_internal_label().empty()) { - const std::string& _s = this->_internal_label(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ParameterInformation.label"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::documentation(this), - _Internal::documentation(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - return target; -} - -::size_t ParameterInformation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ParameterInformation::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string label = 1; - if (!this->_internal_label().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_label()); - } - - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; + _impl_.label_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.documentation_); + ABSL_DCHECK(_impl_.documentation_ != nullptr); + _impl_.documentation_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ParameterInformation::_class_data_ = { - ParameterInformation::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ParameterInformation::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ParameterInformation::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ParameterInformation::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ParameterInformation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ParameterInformation::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ParameterInformation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string label = 1; + if (!this_._internal_label().empty()) { + const std::string& _s = this_._internal_label(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.ParameterInformation.label"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.documentation_, this_._impl_.documentation_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.ParameterInformation) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ParameterInformation::ByteSizeLong(const MessageLite& base) { + const ParameterInformation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ParameterInformation::ByteSizeLong() const { + const ParameterInformation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string label = 1; + if (!this_._internal_label().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_label()); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.documentation_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ParameterInformation::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12454,10 +14287,17 @@ void ParameterInformation::MergeImpl(::google::protobuf::Message& to_msg, const if (!from._internal_label().empty()) { _this->_internal_set_label(from._internal_label()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_documentation()->::io::deephaven::proto::backplane::script::grpc::MarkupContent::MergeFrom( - from._internal_documentation()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.documentation_ != nullptr); + if (_this->_impl_.documentation_ == nullptr) { + _this->_impl_.documentation_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.documentation_); + } else { + _this->_impl_.documentation_->MergeFrom(*from._impl_.documentation_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12468,13 +14308,7 @@ void ParameterInformation::CopyFrom(const ParameterInformation& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ParameterInformation::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ParameterInformation::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ParameterInformation::InternalSwap(ParameterInformation* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -12486,60 +14320,53 @@ void ParameterInformation::InternalSwap(ParameterInformation* PROTOBUF_RESTRICT } ::google::protobuf::Metadata ParameterInformation::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[37]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetHoverRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const GetHoverRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::Position& position(const GetHoverRequest* msg); - static void set_has_position(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetHoverRequest::_Internal::text_document(const GetHoverRequest* msg) { - return *msg->_impl_.text_document_; -} -const ::io::deephaven::proto::backplane::script::grpc::Position& GetHoverRequest::_Internal::position(const GetHoverRequest* msg) { - return *msg->_impl_.position_; -} GetHoverRequest::GetHoverRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) } inline PROTOBUF_NDEBUG_INLINE GetHoverRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} GetHoverRequest::GetHoverRequest( ::google::protobuf::Arena* arena, const GetHoverRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetHoverRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.text_document_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; - _impl_.position_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_) - : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; + _impl_.position_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>( + arena, *from._impl_.position_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) } @@ -12569,35 +14396,34 @@ inline void GetHoverRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetHoverRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.position_ != nullptr); - _impl_.position_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetHoverRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetHoverRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetHoverRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetHoverRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetHoverRequest::ByteSizeLong, + &GetHoverRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_._cached_size_), + false, + }, + &GetHoverRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetHoverRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverRequest::_table_ = { { @@ -12610,8 +14436,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetHoverRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.Position position = 2; {::_pbi::TcParser::FastMtS1, @@ -12635,74 +14465,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverRequest::_table_ = { }}, }; -::uint8_t* GetHoverRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::position(this), - _Internal::position(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - return target; -} - -::size_t GetHoverRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetHoverRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.Position position = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.position_); + ABSL_DCHECK(_impl_.position_ != nullptr); + _impl_.position_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetHoverRequest::_class_data_ = { - GetHoverRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetHoverRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetHoverRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetHoverRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetHoverRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetHoverRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetHoverRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.Position position = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.position_, this_._impl_.position_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetHoverRequest::ByteSizeLong(const MessageLite& base) { + const GetHoverRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetHoverRequest::ByteSizeLong() const { + const GetHoverRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + // .io.deephaven.proto.backplane.script.grpc.Position position = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.position_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetHoverRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12711,14 +14570,25 @@ void GetHoverRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_position()->::io::deephaven::proto::backplane::script::grpc::Position::MergeFrom( - from._internal_position()); + ABSL_DCHECK(from._impl_.position_ != nullptr); + if (_this->_impl_.position_ == nullptr) { + _this->_impl_.position_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(arena, *from._impl_.position_); + } else { + _this->_impl_.position_->MergeFrom(*from._impl_.position_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12729,13 +14599,7 @@ void GetHoverRequest::CopyFrom(const GetHoverRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetHoverRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetHoverRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetHoverRequest::InternalSwap(GetHoverRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -12749,60 +14613,53 @@ void GetHoverRequest::InternalSwap(GetHoverRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata GetHoverRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[38]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetHoverResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& contents(const GetHoverResponse* msg); - static void set_has_contents(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range(const GetHoverResponse* msg); - static void set_has_range(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& GetHoverResponse::_Internal::contents(const GetHoverResponse* msg) { - return *msg->_impl_.contents_; -} -const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& GetHoverResponse::_Internal::range(const GetHoverResponse* msg) { - return *msg->_impl_.range_; -} GetHoverResponse::GetHoverResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) } inline PROTOBUF_NDEBUG_INLINE GetHoverResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} GetHoverResponse::GetHoverResponse( ::google::protobuf::Arena* arena, const GetHoverResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetHoverResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.contents_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.contents_) - : nullptr; - _impl_.range_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_) - : nullptr; + _impl_.contents_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>( + arena, *from._impl_.contents_) + : nullptr; + _impl_.range_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>( + arena, *from._impl_.range_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) } @@ -12832,35 +14689,34 @@ inline void GetHoverResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetHoverResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.contents_ != nullptr); - _impl_.contents_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.range_ != nullptr); - _impl_.range_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetHoverResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetHoverResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetHoverResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetHoverResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetHoverResponse::ByteSizeLong, + &GetHoverResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_._cached_size_), + false, + }, + &GetHoverResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetHoverResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverResponse::_table_ = { { @@ -12873,8 +14729,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverResponse::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetHoverResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; {::_pbi::TcParser::FastMtS1, @@ -12898,74 +14758,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> GetHoverResponse::_table_ = { }}, }; -::uint8_t* GetHoverResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::contents(this), - _Internal::contents(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::range(this), - _Internal::range(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - return target; -} - -::size_t GetHoverResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetHoverResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.contents_); + ABSL_DCHECK(_impl_.contents_ != nullptr); + _impl_.contents_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.range_); + ABSL_DCHECK(_impl_.range_ != nullptr); + _impl_.range_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetHoverResponse::_class_data_ = { - GetHoverResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetHoverResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetHoverResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetHoverResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetHoverResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetHoverResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetHoverResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.contents_, this_._impl_.contents_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.range_, this_._impl_.range_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetHoverResponse::ByteSizeLong(const MessageLite& base) { + const GetHoverResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetHoverResponse::ByteSizeLong() const { + const GetHoverResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.contents_); + } + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.range_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetHoverResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12974,14 +14863,25 @@ void GetHoverResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::go cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_contents()->::io::deephaven::proto::backplane::script::grpc::MarkupContent::MergeFrom( - from._internal_contents()); + ABSL_DCHECK(from._impl_.contents_ != nullptr); + if (_this->_impl_.contents_ == nullptr) { + _this->_impl_.contents_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(arena, *from._impl_.contents_); + } else { + _this->_impl_.contents_->MergeFrom(*from._impl_.contents_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_range()->::io::deephaven::proto::backplane::script::grpc::DocumentRange::MergeFrom( - from._internal_range()); + ABSL_DCHECK(from._impl_.range_ != nullptr); + if (_this->_impl_.range_ == nullptr) { + _this->_impl_.range_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_); + } else { + _this->_impl_.range_->MergeFrom(*from._impl_.range_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12992,13 +14892,7 @@ void GetHoverResponse::CopyFrom(const GetHoverResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetHoverResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetHoverResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetHoverResponse::InternalSwap(GetHoverResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -13012,40 +14906,30 @@ void GetHoverResponse::InternalSwap(GetHoverResponse* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata GetHoverResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[39]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetDiagnosticRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document(const GetDiagnosticRequest* msg); - static void set_has_text_document(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_identifier(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_previous_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetDiagnosticRequest::_Internal::text_document(const GetDiagnosticRequest* msg) { - return *msg->_impl_.text_document_; -} GetDiagnosticRequest::GetDiagnosticRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) } inline PROTOBUF_NDEBUG_INLINE GetDiagnosticRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, identifier_(arena, from.identifier_), @@ -13054,16 +14938,20 @@ inline PROTOBUF_NDEBUG_INLINE GetDiagnosticRequest::Impl_::Impl_( GetDiagnosticRequest::GetDiagnosticRequest( ::google::protobuf::Arena* arena, const GetDiagnosticRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetDiagnosticRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.text_document_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_) - : nullptr; + _impl_.text_document_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>( + arena, *from._impl_.text_document_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) } @@ -13091,37 +14979,34 @@ inline void GetDiagnosticRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetDiagnosticRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _impl_.identifier_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.previous_result_id_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.text_document_ != nullptr); - _impl_.text_document_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetDiagnosticRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetDiagnosticRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetDiagnosticRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetDiagnosticRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetDiagnosticRequest::ByteSizeLong, + &GetDiagnosticRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_._cached_size_), + false, + }, + &GetDiagnosticRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetDiagnosticRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 98, 2> GetDiagnosticRequest::_table_ = { { @@ -13134,8 +15019,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 98, 2> GetDiagnosticRequest::_table_ = { 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetDiagnosticRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; @@ -13169,89 +15058,119 @@ const ::_pbi::TcParseTable<2, 3, 1, 98, 2> GetDiagnosticRequest::_table_ = { }}, }; -::uint8_t* GetDiagnosticRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::text_document(this), - _Internal::text_document(this).GetCachedSize(), target, stream); - } - - // optional string identifier = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_identifier(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // optional string previous_result_id = 3; - if (cached_has_bits & 0x00000002u) { - const std::string& _s = this->_internal_previous_result_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - return target; -} - -::size_t GetDiagnosticRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetDiagnosticRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // optional string identifier = 2; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_identifier()); + _impl_.identifier_.ClearNonDefaultToEmpty(); } - - // optional string previous_result_id = 3; if (cached_has_bits & 0x00000002u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_previous_result_id()); + _impl_.previous_result_id_.ClearNonDefaultToEmpty(); } - - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.text_document_); + ABSL_DCHECK(_impl_.text_document_ != nullptr); + _impl_.text_document_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetDiagnosticRequest::_class_data_ = { - GetDiagnosticRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetDiagnosticRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetDiagnosticRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetDiagnosticRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetDiagnosticRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetDiagnosticRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetDiagnosticRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.text_document_, this_._impl_.text_document_->GetCachedSize(), target, + stream); + } + + // optional string identifier = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_identifier(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // optional string previous_result_id = 3; + if (cached_has_bits & 0x00000002u) { + const std::string& _s = this_._internal_previous_result_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetDiagnosticRequest::ByteSizeLong(const MessageLite& base) { + const GetDiagnosticRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetDiagnosticRequest::ByteSizeLong() const { + const GetDiagnosticRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // optional string identifier = 2; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_identifier()); + } + // optional string previous_result_id = 3; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_previous_result_id()); + } + // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.text_document_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetDiagnosticRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -13266,10 +15185,16 @@ void GetDiagnosticRequest::MergeImpl(::google::protobuf::Message& to_msg, const _this->_internal_set_previous_result_id(from._internal_previous_result_id()); } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_text_document()->::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier::MergeFrom( - from._internal_text_document()); + ABSL_DCHECK(from._impl_.text_document_ != nullptr); + if (_this->_impl_.text_document_ == nullptr) { + _this->_impl_.text_document_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(arena, *from._impl_.text_document_); + } else { + _this->_impl_.text_document_->MergeFrom(*from._impl_.text_document_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13280,13 +15205,7 @@ void GetDiagnosticRequest::CopyFrom(const GetDiagnosticRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetDiagnosticRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetDiagnosticRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetDiagnosticRequest::InternalSwap(GetDiagnosticRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -13299,30 +15218,30 @@ void GetDiagnosticRequest::InternalSwap(GetDiagnosticRequest* PROTOBUF_RESTRICT } ::google::protobuf::Metadata GetDiagnosticRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[40]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetPullDiagnosticResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_._has_bits_); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_._has_bits_); }; GetPullDiagnosticResponse::GetPullDiagnosticResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) } inline PROTOBUF_NDEBUG_INLINE GetPullDiagnosticResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, items_{visibility, arena, from.items_}, @@ -13332,12 +15251,16 @@ inline PROTOBUF_NDEBUG_INLINE GetPullDiagnosticResponse::Impl_::Impl_( GetPullDiagnosticResponse::GetPullDiagnosticResponse( ::google::protobuf::Arena* arena, const GetPullDiagnosticResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetPullDiagnosticResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) } @@ -13364,30 +15287,34 @@ inline void GetPullDiagnosticResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetPullDiagnosticResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.items_.Clear(); - _impl_.kind_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.result_id_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetPullDiagnosticResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetPullDiagnosticResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetPullDiagnosticResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetPullDiagnosticResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetPullDiagnosticResponse::ByteSizeLong, + &GetPullDiagnosticResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_._cached_size_), + false, + }, + &GetPullDiagnosticResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetPullDiagnosticResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 88, 2> GetPullDiagnosticResponse::_table_ = { { @@ -13400,8 +15327,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 88, 2> GetPullDiagnosticResponse::_table_ = 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetPullDiagnosticResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string kind = 1; @@ -13435,86 +15366,120 @@ const ::_pbi::TcParseTable<2, 3, 1, 88, 2> GetPullDiagnosticResponse::_table_ = }}, }; -::uint8_t* GetPullDiagnosticResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string kind = 1; - if (!this->_internal_kind().empty()) { - const std::string& _s = this->_internal_kind(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string result_id = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_result_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_items_size()); i < n; i++) { - const auto& repfield = this->_internal_items().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - return target; -} - -::size_t GetPullDiagnosticResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetPullDiagnosticResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; - total_size += 1UL * this->_internal_items_size(); - for (const auto& msg : this->_internal_items()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string kind = 1; - if (!this->_internal_kind().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_kind()); - } - - // optional string result_id = 2; + _impl_.items_.Clear(); + _impl_.kind_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_result_id()); + _impl_.result_id_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetPullDiagnosticResponse::_class_data_ = { - GetPullDiagnosticResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetPullDiagnosticResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetPullDiagnosticResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetPullDiagnosticResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetPullDiagnosticResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetPullDiagnosticResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetPullDiagnosticResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string kind = 1; + if (!this_._internal_kind().empty()) { + const std::string& _s = this_._internal_kind(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string result_id = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_result_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_items_size()); + i < n; i++) { + const auto& repfield = this_._internal_items().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetPullDiagnosticResponse::ByteSizeLong(const MessageLite& base) { + const GetPullDiagnosticResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetPullDiagnosticResponse::ByteSizeLong() const { + const GetPullDiagnosticResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; + { + total_size += 1UL * this_._internal_items_size(); + for (const auto& msg : this_._internal_items()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string kind = 1; + if (!this_._internal_kind().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_kind()); + } + } + { + // optional string result_id = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_result_id()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetPullDiagnosticResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) @@ -13527,9 +15492,11 @@ void GetPullDiagnosticResponse::MergeImpl(::google::protobuf::Message& to_msg, c if (!from._internal_kind().empty()) { _this->_internal_set_kind(from._internal_kind()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_result_id(from._internal_result_id()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13540,13 +15507,7 @@ void GetPullDiagnosticResponse::CopyFrom(const GetPullDiagnosticResponse& from) MergeFrom(from); } -PROTOBUF_NOINLINE bool GetPullDiagnosticResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetPullDiagnosticResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetPullDiagnosticResponse::InternalSwap(GetPullDiagnosticResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -13559,30 +15520,30 @@ void GetPullDiagnosticResponse::InternalSwap(GetPullDiagnosticResponse* PROTOBUF } ::google::protobuf::Metadata GetPullDiagnosticResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[41]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetPublishDiagnosticResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_._has_bits_); - static void set_has_version(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_._has_bits_); }; GetPublishDiagnosticResponse::GetPublishDiagnosticResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) } inline PROTOBUF_NDEBUG_INLINE GetPublishDiagnosticResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, diagnostics_{visibility, arena, from.diagnostics_}, @@ -13591,12 +15552,16 @@ inline PROTOBUF_NDEBUG_INLINE GetPublishDiagnosticResponse::Impl_::Impl_( GetPublishDiagnosticResponse::GetPublishDiagnosticResponse( ::google::protobuf::Arena* arena, const GetPublishDiagnosticResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetPublishDiagnosticResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.version_ = from._impl_.version_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) @@ -13623,27 +15588,34 @@ inline void GetPublishDiagnosticResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetPublishDiagnosticResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.diagnostics_.Clear(); - _impl_.uri_.ClearToEmpty(); - _impl_.version_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetPublishDiagnosticResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetPublishDiagnosticResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetPublishDiagnosticResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetPublishDiagnosticResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetPublishDiagnosticResponse::ByteSizeLong, + &GetPublishDiagnosticResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_._cached_size_), + false, + }, + &GetPublishDiagnosticResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetPublishDiagnosticResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 81, 2> GetPublishDiagnosticResponse::_table_ = { { @@ -13656,8 +15628,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 81, 2> GetPublishDiagnosticResponse::_table_ 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetPublishDiagnosticResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string uri = 1; @@ -13690,85 +15666,116 @@ const ::_pbi::TcParseTable<2, 3, 1, 81, 2> GetPublishDiagnosticResponse::_table_ }}, }; -::uint8_t* GetPublishDiagnosticResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string uri = 1; - if (!this->_internal_uri().empty()) { - const std::string& _s = this->_internal_uri(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional int32 version = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_version(), target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_diagnostics_size()); i < n; i++) { - const auto& repfield = this->_internal_diagnostics().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - return target; -} - -::size_t GetPublishDiagnosticResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetPublishDiagnosticResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; - total_size += 1UL * this->_internal_diagnostics_size(); - for (const auto& msg : this->_internal_diagnostics()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string uri = 1; - if (!this->_internal_uri().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_uri()); - } - - // optional int32 version = 2; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_version()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetPublishDiagnosticResponse::_class_data_ = { - GetPublishDiagnosticResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetPublishDiagnosticResponse::GetClassData() const { - return &_class_data_; + _impl_.diagnostics_.Clear(); + _impl_.uri_.ClearToEmpty(); + _impl_.version_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetPublishDiagnosticResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetPublishDiagnosticResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetPublishDiagnosticResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetPublishDiagnosticResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetPublishDiagnosticResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string uri = 1; + if (!this_._internal_uri().empty()) { + const std::string& _s = this_._internal_uri(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional int32 version = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_version(), target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_diagnostics_size()); + i < n; i++) { + const auto& repfield = this_._internal_diagnostics().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetPublishDiagnosticResponse::ByteSizeLong(const MessageLite& base) { + const GetPublishDiagnosticResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetPublishDiagnosticResponse::ByteSizeLong() const { + const GetPublishDiagnosticResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; + { + total_size += 1UL * this_._internal_diagnostics_size(); + for (const auto& msg : this_._internal_diagnostics()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string uri = 1; + if (!this_._internal_uri().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_uri()); + } + } + { + // optional int32 version = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_version()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetPublishDiagnosticResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) @@ -13781,9 +15788,11 @@ void GetPublishDiagnosticResponse::MergeImpl(::google::protobuf::Message& to_msg if (!from._internal_uri().empty()) { _this->_internal_set_uri(from._internal_uri()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_set_version(from._internal_version()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _this->_impl_.version_ = from._impl_.version_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13794,13 +15803,7 @@ void GetPublishDiagnosticResponse::CopyFrom(const GetPublishDiagnosticResponse& MergeFrom(from); } -PROTOBUF_NOINLINE bool GetPublishDiagnosticResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetPublishDiagnosticResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetPublishDiagnosticResponse::InternalSwap(GetPublishDiagnosticResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -13813,9 +15816,7 @@ void GetPublishDiagnosticResponse::InternalSwap(GetPublishDiagnosticResponse* PR } ::google::protobuf::Metadata GetPublishDiagnosticResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[42]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -13824,25 +15825,33 @@ class Diagnostic_CodeDescription::_Internal { }; Diagnostic_CodeDescription::Diagnostic_CodeDescription(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) } inline PROTOBUF_NDEBUG_INLINE Diagnostic_CodeDescription::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& from_msg) : href_(arena, from.href_), _cached_size_{0} {} Diagnostic_CodeDescription::Diagnostic_CodeDescription( ::google::protobuf::Arena* arena, const Diagnostic_CodeDescription& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Diagnostic_CodeDescription* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) } @@ -13866,24 +15875,34 @@ inline void Diagnostic_CodeDescription::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Diagnostic_CodeDescription::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.href_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Diagnostic_CodeDescription::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Diagnostic_CodeDescription::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Diagnostic_CodeDescription_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Diagnostic_CodeDescription::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Diagnostic_CodeDescription::ByteSizeLong, + &Diagnostic_CodeDescription::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Diagnostic_CodeDescription, _impl_._cached_size_), + false, + }, + &Diagnostic_CodeDescription::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Diagnostic_CodeDescription::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 80, 2> Diagnostic_CodeDescription::_table_ = { { @@ -13896,8 +15915,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 80, 2> Diagnostic_CodeDescription::_table_ = 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Diagnostic_CodeDescription_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string href = 1; {::_pbi::TcParser::FastUS1, @@ -13917,56 +15940,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 80, 2> Diagnostic_CodeDescription::_table_ = }}, }; -::uint8_t* Diagnostic_CodeDescription::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string href = 1; - if (!this->_internal_href().empty()) { - const std::string& _s = this->_internal_href(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - return target; -} - -::size_t Diagnostic_CodeDescription::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Diagnostic_CodeDescription::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string href = 1; - if (!this->_internal_href().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_href()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Diagnostic_CodeDescription::_class_data_ = { - Diagnostic_CodeDescription::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Diagnostic_CodeDescription::GetClassData() const { - return &_class_data_; + _impl_.href_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Diagnostic_CodeDescription::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Diagnostic_CodeDescription::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Diagnostic_CodeDescription& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Diagnostic_CodeDescription::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Diagnostic_CodeDescription& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string href = 1; + if (!this_._internal_href().empty()) { + const std::string& _s = this_._internal_href(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Diagnostic_CodeDescription::ByteSizeLong(const MessageLite& base) { + const Diagnostic_CodeDescription& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Diagnostic_CodeDescription::ByteSizeLong() const { + const Diagnostic_CodeDescription& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string href = 1; + if (!this_._internal_href().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_href()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Diagnostic_CodeDescription::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) @@ -13987,13 +16029,7 @@ void Diagnostic_CodeDescription::CopyFrom(const Diagnostic_CodeDescription& from MergeFrom(from); } -PROTOBUF_NOINLINE bool Diagnostic_CodeDescription::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Diagnostic_CodeDescription::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Diagnostic_CodeDescription::InternalSwap(Diagnostic_CodeDescription* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -14003,50 +16039,30 @@ void Diagnostic_CodeDescription::InternalSwap(Diagnostic_CodeDescription* PROTOB } ::google::protobuf::Metadata Diagnostic_CodeDescription::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[43]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Diagnostic::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range(const Diagnostic* msg); - static void set_has_range(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_code(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& code_description(const Diagnostic* msg); - static void set_has_code_description(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_source(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_data(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Diagnostic::_Internal::range(const Diagnostic* msg) { - return *msg->_impl_.range_; -} -const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& Diagnostic::_Internal::code_description(const Diagnostic* msg) { - return *msg->_impl_.code_description_; -} Diagnostic::Diagnostic(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.Diagnostic) } inline PROTOBUF_NDEBUG_INLINE Diagnostic::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, tags_{visibility, arena, from.tags_}, @@ -14059,19 +16075,23 @@ inline PROTOBUF_NDEBUG_INLINE Diagnostic::Impl_::Impl_( Diagnostic::Diagnostic( ::google::protobuf::Arena* arena, const Diagnostic& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Diagnostic* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.range_ = (cached_has_bits & 0x00000008u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_) - : nullptr; - _impl_.code_description_ = (cached_has_bits & 0x00000010u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>(arena, *from._impl_.code_description_) - : nullptr; + _impl_.range_ = (cached_has_bits & 0x00000008u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>( + arena, *from._impl_.range_) + : nullptr; + _impl_.code_description_ = (cached_has_bits & 0x00000010u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>( + arena, *from._impl_.code_description_) + : nullptr; _impl_.severity_ = from._impl_.severity_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.Diagnostic) @@ -14112,49 +16132,34 @@ inline void Diagnostic::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Diagnostic::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.tags_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.code_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.source_.ClearNonDefaultToEmpty(); - } - } - _impl_.message_.ClearToEmpty(); - if (cached_has_bits & 0x0000001cu) { - if (cached_has_bits & 0x00000004u) { - _impl_.data_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000008u) { - ABSL_DCHECK(_impl_.range_ != nullptr); - _impl_.range_->Clear(); - } - if (cached_has_bits & 0x00000010u) { - ABSL_DCHECK(_impl_.code_description_ != nullptr); - _impl_.code_description_->Clear(); - } - } - _impl_.severity_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Diagnostic::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Diagnostic::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Diagnostic_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Diagnostic::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Diagnostic::ByteSizeLong, + &Diagnostic::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_._cached_size_), + false, + }, + &Diagnostic::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Diagnostic::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 8, 2, 85, 2> Diagnostic::_table_ = { { @@ -14167,8 +16172,12 @@ const ::_pbi::TcParseTable<4, 8, 2, 85, 2> Diagnostic::_table_ = { 8, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_Diagnostic_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Diagnostic>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; @@ -14241,169 +16250,214 @@ const ::_pbi::TcParseTable<4, 8, 2, 85, 2> Diagnostic::_table_ = { }}, }; -::uint8_t* Diagnostic::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) +PROTOBUF_NOINLINE void Diagnostic::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + _impl_.tags_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - if (cached_has_bits & 0x00000008u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::range(this), - _Internal::range(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; - if (this->_internal_severity() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_severity(), target); + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _impl_.code_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.source_.ClearNonDefaultToEmpty(); + } } - - // optional string code = 3; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_code(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.code"); - target = stream->WriteStringMaybeAliased(3, _s, target); + _impl_.message_.ClearToEmpty(); + if (cached_has_bits & 0x0000001cu) { + if (cached_has_bits & 0x00000004u) { + _impl_.data_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000008u) { + ABSL_DCHECK(_impl_.range_ != nullptr); + _impl_.range_->Clear(); + } + if (cached_has_bits & 0x00000010u) { + ABSL_DCHECK(_impl_.code_description_ != nullptr); + _impl_.code_description_->Clear(); + } } + _impl_.severity_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} - // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; - if (cached_has_bits & 0x00000010u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::code_description(this), - _Internal::code_description(this).GetCachedSize(), target, stream); - } - - // optional string source = 5; - if (cached_has_bits & 0x00000002u) { - const std::string& _s = this->_internal_source(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.source"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // string message = 6; - if (!this->_internal_message().empty()) { - const std::string& _s = this->_internal_message(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.message"); - target = stream->WriteStringMaybeAliased(6, _s, target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; - { - std::size_t byte_size = _impl_._tags_cached_byte_size_.Get(); - if (byte_size > 0) { - target = stream->WriteEnumPacked(7, _internal_tags(), - byte_size, target); - } - } - - // optional bytes data = 9; - if (cached_has_bits & 0x00000004u) { - const std::string& _s = this->_internal_data(); - target = stream->WriteBytesMaybeAliased(9, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Diagnostic) - return target; -} - -::size_t Diagnostic::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; - { - std::size_t data_size = 0; - auto count = static_cast(this->_internal_tags_size()); - - for (std::size_t i = 0; i < count; ++i) { - data_size += ::_pbi::WireFormatLite::EnumSize( - this->_internal_tags().Get(static_cast(i))); - } - total_size += data_size; - if (data_size > 0) { - total_size += 1; - total_size += ::_pbi::WireFormatLite::Int32Size( - static_cast(data_size)); - } - _impl_._tags_cached_byte_size_.Set(::_pbi::ToCachedSize(data_size)); - } - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional string code = 3; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_code()); - } - - // optional string source = 5; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_source()); - } - - } - // string message = 6; - if (!this->_internal_message().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_message()); - } - - if (cached_has_bits & 0x0000001cu) { - // optional bytes data = 9; - if (cached_has_bits & 0x00000004u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_data()); - } - - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - if (cached_has_bits & 0x00000008u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.range_); - } - - // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; - if (cached_has_bits & 0x00000010u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.code_description_); - } - - } - // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; - if (this->_internal_severity() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_severity()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Diagnostic::_class_data_ = { - Diagnostic::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Diagnostic::GetClassData() const { - return &_class_data_; -} - -void Diagnostic::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Diagnostic::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Diagnostic& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Diagnostic::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Diagnostic& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + if (cached_has_bits & 0x00000008u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.range_, this_._impl_.range_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; + if (this_._internal_severity() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_severity(), target); + } + + // optional string code = 3; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_code(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.code"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; + if (cached_has_bits & 0x00000010u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.code_description_, this_._impl_.code_description_->GetCachedSize(), target, + stream); + } + + // optional string source = 5; + if (cached_has_bits & 0x00000002u) { + const std::string& _s = this_._internal_source(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.source"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // string message = 6; + if (!this_._internal_message().empty()) { + const std::string& _s = this_._internal_message(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.Diagnostic.message"); + target = stream->WriteStringMaybeAliased(6, _s, target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; + { + std::size_t byte_size = + this_._impl_._tags_cached_byte_size_.Get(); + if (byte_size > 0) { + target = stream->WriteEnumPacked( + 7, this_._internal_tags(), byte_size, target); + } + } + + // optional bytes data = 9; + if (cached_has_bits & 0x00000004u) { + const std::string& _s = this_._internal_data(); + target = stream->WriteBytesMaybeAliased(9, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.Diagnostic) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Diagnostic::ByteSizeLong(const MessageLite& base) { + const Diagnostic& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Diagnostic::ByteSizeLong() const { + const Diagnostic& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; + { + std::size_t data_size = 0; + auto count = static_cast(this_._internal_tags_size()); + + for (std::size_t i = 0; i < count; ++i) { + data_size += ::_pbi::WireFormatLite::EnumSize( + this_._internal_tags().Get(static_cast(i))); + } + total_size += data_size; + if (data_size > 0) { + total_size += 1; + total_size += ::_pbi::WireFormatLite::Int32Size( + static_cast(data_size)); + } + this_._impl_._tags_cached_byte_size_.Set(::_pbi::ToCachedSize(data_size)); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional string code = 3; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_code()); + } + // optional string source = 5; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_source()); + } + } + { + // string message = 6; + if (!this_._internal_message().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_message()); + } + } + if (cached_has_bits & 0x0000001cu) { + // optional bytes data = 9; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_data()); + } + // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; + if (cached_has_bits & 0x00000008u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.range_); + } + // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; + if (cached_has_bits & 0x00000010u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.code_description_); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; + if (this_._internal_severity() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_severity()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Diagnostic::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -14427,17 +16481,28 @@ void Diagnostic::MergeImpl(::google::protobuf::Message& to_msg, const ::google:: _this->_internal_set_data(from._internal_data()); } if (cached_has_bits & 0x00000008u) { - _this->_internal_mutable_range()->::io::deephaven::proto::backplane::script::grpc::DocumentRange::MergeFrom( - from._internal_range()); + ABSL_DCHECK(from._impl_.range_ != nullptr); + if (_this->_impl_.range_ == nullptr) { + _this->_impl_.range_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(arena, *from._impl_.range_); + } else { + _this->_impl_.range_->MergeFrom(*from._impl_.range_); + } } if (cached_has_bits & 0x00000010u) { - _this->_internal_mutable_code_description()->::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription::MergeFrom( - from._internal_code_description()); + ABSL_DCHECK(from._impl_.code_description_ != nullptr); + if (_this->_impl_.code_description_ == nullptr) { + _this->_impl_.code_description_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>(arena, *from._impl_.code_description_); + } else { + _this->_impl_.code_description_->MergeFrom(*from._impl_.code_description_); + } } } if (from._internal_severity() != 0) { - _this->_internal_set_severity(from._internal_severity()); + _this->_impl_.severity_ = from._impl_.severity_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -14448,13 +16513,7 @@ void Diagnostic::CopyFrom(const Diagnostic& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Diagnostic::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Diagnostic::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Diagnostic::InternalSwap(Diagnostic* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -14475,30 +16534,30 @@ void Diagnostic::InternalSwap(Diagnostic* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Diagnostic::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[44]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_ChartDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_._has_bits_); - static void set_has_title(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_._has_bits_); }; FigureDescriptor_ChartDescriptor::FigureDescriptor_ChartDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_ChartDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, series_{visibility, arena, from.series_}, @@ -14513,12 +16572,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_ChartDescriptor::Impl_::Impl_( FigureDescriptor_ChartDescriptor::FigureDescriptor_ChartDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_ChartDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_ChartDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, colspan_), reinterpret_cast(&from._impl_) + @@ -14566,38 +16629,34 @@ inline void FigureDescriptor_ChartDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_ChartDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.series_.Clear(); - _impl_.multi_series_.Clear(); - _impl_.axes_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.title_.ClearNonDefaultToEmpty(); - } - _impl_.title_font_.ClearToEmpty(); - _impl_.title_color_.ClearToEmpty(); - _impl_.legend_font_.ClearToEmpty(); - _impl_.legend_color_.ClearToEmpty(); - ::memset(&_impl_.colspan_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.row_) - - reinterpret_cast(&_impl_.colspan_)) + sizeof(_impl_.row_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_ChartDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_ChartDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_ChartDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_ChartDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_ChartDescriptor::ByteSizeLong, + &FigureDescriptor_ChartDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_ChartDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_ChartDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 15, 3, 139, 2> FigureDescriptor_ChartDescriptor::_table_ = { { @@ -14610,8 +16669,12 @@ const ::_pbi::TcParseTable<4, 15, 3, 139, 2> FigureDescriptor_ChartDescriptor::_ 15, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_ChartDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // int32 colspan = 1; @@ -14722,245 +16785,285 @@ const ::_pbi::TcParseTable<4, 15, 3, 139, 2> FigureDescriptor_ChartDescriptor::_ }}, }; -::uint8_t* FigureDescriptor_ChartDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 colspan = 1; - if (this->_internal_colspan() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_colspan(), target); - } - - // int32 rowspan = 2; - if (this->_internal_rowspan() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_rowspan(), target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_series_size()); i < n; i++) { - const auto& repfield = this->_internal_series().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; - for (unsigned i = 0, - n = static_cast(this->_internal_multi_series_size()); i < n; i++) { - const auto& repfield = this->_internal_multi_series().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(4, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; - for (unsigned i = 0, - n = static_cast(this->_internal_axes_size()); i < n; i++) { - const auto& repfield = this->_internal_axes().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(5, repfield, repfield.GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; - if (this->_internal_chart_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 6, this->_internal_chart_type(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string title = 7; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_title(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title"); - target = stream->WriteStringMaybeAliased(7, _s, target); - } - - // string title_font = 8; - if (!this->_internal_title_font().empty()) { - const std::string& _s = this->_internal_title_font(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font"); - target = stream->WriteStringMaybeAliased(8, _s, target); - } - - // string title_color = 9; - if (!this->_internal_title_color().empty()) { - const std::string& _s = this->_internal_title_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color"); - target = stream->WriteStringMaybeAliased(9, _s, target); - } - - // bool show_legend = 10; - if (this->_internal_show_legend() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 10, this->_internal_show_legend(), target); - } - - // string legend_font = 11; - if (!this->_internal_legend_font().empty()) { - const std::string& _s = this->_internal_legend_font(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font"); - target = stream->WriteStringMaybeAliased(11, _s, target); - } - - // string legend_color = 12; - if (!this->_internal_legend_color().empty()) { - const std::string& _s = this->_internal_legend_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color"); - target = stream->WriteStringMaybeAliased(12, _s, target); - } - - // bool is3d = 13; - if (this->_internal_is3d() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 13, this->_internal_is3d(), target); - } - - // int32 column = 14; - if (this->_internal_column() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<14>( - stream, this->_internal_column(), target); - } - - // int32 row = 15; - if (this->_internal_row() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<15>( - stream, this->_internal_row(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - return target; -} - -::size_t FigureDescriptor_ChartDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_ChartDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; - total_size += 1UL * this->_internal_series_size(); - for (const auto& msg : this->_internal_series()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; - total_size += 1UL * this->_internal_multi_series_size(); - for (const auto& msg : this->_internal_multi_series()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; - total_size += 1UL * this->_internal_axes_size(); - for (const auto& msg : this->_internal_axes()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // optional string title = 7; + _impl_.series_.Clear(); + _impl_.multi_series_.Clear(); + _impl_.axes_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title()); - } - - // string title_font = 8; - if (!this->_internal_title_font().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title_font()); - } - - // string title_color = 9; - if (!this->_internal_title_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title_color()); - } - - // string legend_font = 11; - if (!this->_internal_legend_font().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_legend_font()); - } - - // string legend_color = 12; - if (!this->_internal_legend_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_legend_color()); - } - - // int32 colspan = 1; - if (this->_internal_colspan() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_colspan()); - } - - // int32 rowspan = 2; - if (this->_internal_rowspan() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_rowspan()); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; - if (this->_internal_chart_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_chart_type()); - } - - // bool show_legend = 10; - if (this->_internal_show_legend() != 0) { - total_size += 2; - } - - // bool is3d = 13; - if (this->_internal_is3d() != 0) { - total_size += 2; - } - - // int32 column = 14; - if (this->_internal_column() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_column()); - } - - // int32 row = 15; - if (this->_internal_row() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_row()); + _impl_.title_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_ChartDescriptor::_class_data_ = { - FigureDescriptor_ChartDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_ChartDescriptor::GetClassData() const { - return &_class_data_; + _impl_.title_font_.ClearToEmpty(); + _impl_.title_color_.ClearToEmpty(); + _impl_.legend_font_.ClearToEmpty(); + _impl_.legend_color_.ClearToEmpty(); + ::memset(&_impl_.colspan_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.row_) - + reinterpret_cast(&_impl_.colspan_)) + sizeof(_impl_.row_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_ChartDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_ChartDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_ChartDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_ChartDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_ChartDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 colspan = 1; + if (this_._internal_colspan() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_colspan(), target); + } + + // int32 rowspan = 2; + if (this_._internal_rowspan() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_rowspan(), target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_series_size()); + i < n; i++) { + const auto& repfield = this_._internal_series().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; + for (unsigned i = 0, n = static_cast( + this_._internal_multi_series_size()); + i < n; i++) { + const auto& repfield = this_._internal_multi_series().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; + for (unsigned i = 0, n = static_cast( + this_._internal_axes_size()); + i < n; i++) { + const auto& repfield = this_._internal_axes().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, repfield, repfield.GetCachedSize(), + target, stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; + if (this_._internal_chart_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 6, this_._internal_chart_type(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string title = 7; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_title(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title"); + target = stream->WriteStringMaybeAliased(7, _s, target); + } + + // string title_font = 8; + if (!this_._internal_title_font().empty()) { + const std::string& _s = this_._internal_title_font(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font"); + target = stream->WriteStringMaybeAliased(8, _s, target); + } + + // string title_color = 9; + if (!this_._internal_title_color().empty()) { + const std::string& _s = this_._internal_title_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color"); + target = stream->WriteStringMaybeAliased(9, _s, target); + } + + // bool show_legend = 10; + if (this_._internal_show_legend() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 10, this_._internal_show_legend(), target); + } + + // string legend_font = 11; + if (!this_._internal_legend_font().empty()) { + const std::string& _s = this_._internal_legend_font(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font"); + target = stream->WriteStringMaybeAliased(11, _s, target); + } + + // string legend_color = 12; + if (!this_._internal_legend_color().empty()) { + const std::string& _s = this_._internal_legend_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color"); + target = stream->WriteStringMaybeAliased(12, _s, target); + } + + // bool is3d = 13; + if (this_._internal_is3d() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 13, this_._internal_is3d(), target); + } + + // int32 column = 14; + if (this_._internal_column() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<14>( + stream, this_._internal_column(), target); + } + + // int32 row = 15; + if (this_._internal_row() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<15>( + stream, this_._internal_row(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_ChartDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_ChartDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_ChartDescriptor::ByteSizeLong() const { + const FigureDescriptor_ChartDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; + { + total_size += 1UL * this_._internal_series_size(); + for (const auto& msg : this_._internal_series()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; + { + total_size += 1UL * this_._internal_multi_series_size(); + for (const auto& msg : this_._internal_multi_series()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; + { + total_size += 1UL * this_._internal_axes_size(); + for (const auto& msg : this_._internal_axes()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // optional string title = 7; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title()); + } + } + { + // string title_font = 8; + if (!this_._internal_title_font().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title_font()); + } + // string title_color = 9; + if (!this_._internal_title_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title_color()); + } + // string legend_font = 11; + if (!this_._internal_legend_font().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_legend_font()); + } + // string legend_color = 12; + if (!this_._internal_legend_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_legend_color()); + } + // int32 colspan = 1; + if (this_._internal_colspan() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_colspan()); + } + // int32 rowspan = 2; + if (this_._internal_rowspan() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_rowspan()); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; + if (this_._internal_chart_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_chart_type()); + } + // bool show_legend = 10; + if (this_._internal_show_legend() != 0) { + total_size += 2; + } + // bool is3d = 13; + if (this_._internal_is3d() != 0) { + total_size += 2; + } + // int32 column = 14; + if (this_._internal_column() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_column()); + } + // int32 row = 15; + if (this_._internal_row() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_row()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_ChartDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) @@ -14974,7 +17077,8 @@ void FigureDescriptor_ChartDescriptor::MergeImpl(::google::protobuf::Message& to from._internal_multi_series()); _this->_internal_mutable_axes()->MergeFrom( from._internal_axes()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_title(from._internal_title()); } if (!from._internal_title_font().empty()) { @@ -14990,26 +17094,27 @@ void FigureDescriptor_ChartDescriptor::MergeImpl(::google::protobuf::Message& to _this->_internal_set_legend_color(from._internal_legend_color()); } if (from._internal_colspan() != 0) { - _this->_internal_set_colspan(from._internal_colspan()); + _this->_impl_.colspan_ = from._impl_.colspan_; } if (from._internal_rowspan() != 0) { - _this->_internal_set_rowspan(from._internal_rowspan()); + _this->_impl_.rowspan_ = from._impl_.rowspan_; } if (from._internal_chart_type() != 0) { - _this->_internal_set_chart_type(from._internal_chart_type()); + _this->_impl_.chart_type_ = from._impl_.chart_type_; } if (from._internal_show_legend() != 0) { - _this->_internal_set_show_legend(from._internal_show_legend()); + _this->_impl_.show_legend_ = from._impl_.show_legend_; } if (from._internal_is3d() != 0) { - _this->_internal_set_is3d(from._internal_is3d()); + _this->_impl_.is3d_ = from._impl_.is3d_; } if (from._internal_column() != 0) { - _this->_internal_set_column(from._internal_column()); + _this->_impl_.column_ = from._impl_.column_; } if (from._internal_row() != 0) { - _this->_internal_set_row(from._internal_row()); + _this->_impl_.row_ = from._impl_.row_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -15020,13 +17125,7 @@ void FigureDescriptor_ChartDescriptor::CopyFrom(const FigureDescriptor_ChartDesc MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_ChartDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_ChartDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_ChartDescriptor::InternalSwap(FigureDescriptor_ChartDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -15050,45 +17149,30 @@ void FigureDescriptor_ChartDescriptor::InternalSwap(FigureDescriptor_ChartDescri } ::google::protobuf::Metadata FigureDescriptor_ChartDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[45]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_SeriesDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_._has_bits_); - static void set_has_lines_visible(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_shapes_visible(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_point_label_format(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_x_tool_tip_pattern(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_y_tool_tip_pattern(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_shape_size(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_._has_bits_); }; FigureDescriptor_SeriesDescriptor::FigureDescriptor_SeriesDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_SeriesDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, data_sources_{visibility, arena, from.data_sources_}, @@ -15104,12 +17188,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_SeriesDescriptor::Impl_::Impl_( FigureDescriptor_SeriesDescriptor::FigureDescriptor_SeriesDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_SeriesDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_SeriesDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, plot_style_), reinterpret_cast(&from._impl_) + @@ -15161,50 +17249,34 @@ inline void FigureDescriptor_SeriesDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_SeriesDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.data_sources_.Clear(); - _impl_.name_.ClearToEmpty(); - _impl_.line_color_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _impl_.point_label_format_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.x_tool_tip_pattern_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000004u) { - _impl_.y_tool_tip_pattern_.ClearNonDefaultToEmpty(); - } - } - _impl_.shape_label_.ClearToEmpty(); - _impl_.shape_color_.ClearToEmpty(); - _impl_.shape_.ClearToEmpty(); - _impl_.plot_style_ = 0; - if (cached_has_bits & 0x00000018u) { - ::memset(&_impl_.lines_visible_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.shapes_visible_) - - reinterpret_cast(&_impl_.lines_visible_)) + sizeof(_impl_.shapes_visible_)); - } - _impl_.gradient_visible_ = false; - _impl_.shape_size_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_SeriesDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_SeriesDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_SeriesDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_SeriesDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_SeriesDescriptor::ByteSizeLong, + &FigureDescriptor_SeriesDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_SeriesDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_SeriesDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 14, 1, 186, 2> FigureDescriptor_SeriesDescriptor::_table_ = { { @@ -15217,8 +17289,12 @@ const ::_pbi::TcParseTable<4, 14, 1, 186, 2> FigureDescriptor_SeriesDescriptor:: 14, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_SeriesDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; @@ -15325,235 +17401,281 @@ const ::_pbi::TcParseTable<4, 14, 1, 186, 2> FigureDescriptor_SeriesDescriptor:: }}, }; -::uint8_t* FigureDescriptor_SeriesDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - if (this->_internal_plot_style() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_plot_style(), target); - } - - // string name = 2; - if (!this->_internal_name().empty()) { - const std::string& _s = this->_internal_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional bool lines_visible = 3; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_lines_visible(), target); - } - - // optional bool shapes_visible = 4; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_shapes_visible(), target); - } - - // bool gradient_visible = 5; - if (this->_internal_gradient_visible() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_gradient_visible(), target); - } - - // string line_color = 6; - if (!this->_internal_line_color().empty()) { - const std::string& _s = this->_internal_line_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color"); - target = stream->WriteStringMaybeAliased(6, _s, target); - } - - // optional string point_label_format = 8; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_point_label_format(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format"); - target = stream->WriteStringMaybeAliased(8, _s, target); - } - - // optional string x_tool_tip_pattern = 9; - if (cached_has_bits & 0x00000002u) { - const std::string& _s = this->_internal_x_tool_tip_pattern(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern"); - target = stream->WriteStringMaybeAliased(9, _s, target); - } - - // optional string y_tool_tip_pattern = 10; - if (cached_has_bits & 0x00000004u) { - const std::string& _s = this->_internal_y_tool_tip_pattern(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern"); - target = stream->WriteStringMaybeAliased(10, _s, target); - } - - // string shape_label = 11; - if (!this->_internal_shape_label().empty()) { - const std::string& _s = this->_internal_shape_label(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label"); - target = stream->WriteStringMaybeAliased(11, _s, target); - } - - // optional double shape_size = 12; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 12, this->_internal_shape_size(), target); - } - - // string shape_color = 13; - if (!this->_internal_shape_color().empty()) { - const std::string& _s = this->_internal_shape_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color"); - target = stream->WriteStringMaybeAliased(13, _s, target); - } - - // string shape = 14; - if (!this->_internal_shape().empty()) { - const std::string& _s = this->_internal_shape(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape"); - target = stream->WriteStringMaybeAliased(14, _s, target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; - for (unsigned i = 0, - n = static_cast(this->_internal_data_sources_size()); i < n; i++) { - const auto& repfield = this->_internal_data_sources().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(15, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - return target; -} - -::size_t FigureDescriptor_SeriesDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_SeriesDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; - total_size += 1UL * this->_internal_data_sources_size(); - for (const auto& msg : this->_internal_data_sources()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string name = 2; - if (!this->_internal_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_name()); - } - - // string line_color = 6; - if (!this->_internal_line_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_line_color()); - } - + _impl_.data_sources_.Clear(); + _impl_.name_.ClearToEmpty(); + _impl_.line_color_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // optional string point_label_format = 8; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_point_label_format()); + _impl_.point_label_format_.ClearNonDefaultToEmpty(); } - - // optional string x_tool_tip_pattern = 9; if (cached_has_bits & 0x00000002u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_x_tool_tip_pattern()); + _impl_.x_tool_tip_pattern_.ClearNonDefaultToEmpty(); } - - // optional string y_tool_tip_pattern = 10; if (cached_has_bits & 0x00000004u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_y_tool_tip_pattern()); + _impl_.y_tool_tip_pattern_.ClearNonDefaultToEmpty(); } - - } - // string shape_label = 11; - if (!this->_internal_shape_label().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_shape_label()); - } - - // string shape_color = 13; - if (!this->_internal_shape_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_shape_color()); } - - // string shape = 14; - if (!this->_internal_shape().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_shape()); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - if (this->_internal_plot_style() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_plot_style()); - } - + _impl_.shape_label_.ClearToEmpty(); + _impl_.shape_color_.ClearToEmpty(); + _impl_.shape_.ClearToEmpty(); + _impl_.plot_style_ = 0; if (cached_has_bits & 0x00000018u) { - // optional bool lines_visible = 3; - if (cached_has_bits & 0x00000008u) { - total_size += 2; - } - - // optional bool shapes_visible = 4; - if (cached_has_bits & 0x00000010u) { - total_size += 2; - } - - } - // bool gradient_visible = 5; - if (this->_internal_gradient_visible() != 0) { - total_size += 2; - } - - // optional double shape_size = 12; - if (cached_has_bits & 0x00000020u) { - total_size += 9; + ::memset(&_impl_.lines_visible_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.shapes_visible_) - + reinterpret_cast(&_impl_.lines_visible_)) + sizeof(_impl_.shapes_visible_)); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_SeriesDescriptor::_class_data_ = { - FigureDescriptor_SeriesDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_SeriesDescriptor::GetClassData() const { - return &_class_data_; + _impl_.gradient_visible_ = false; + _impl_.shape_size_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_SeriesDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_SeriesDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_SeriesDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_SeriesDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_SeriesDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; + if (this_._internal_plot_style() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_plot_style(), target); + } + + // string name = 2; + if (!this_._internal_name().empty()) { + const std::string& _s = this_._internal_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional bool lines_visible = 3; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_lines_visible(), target); + } + + // optional bool shapes_visible = 4; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_shapes_visible(), target); + } + + // bool gradient_visible = 5; + if (this_._internal_gradient_visible() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_gradient_visible(), target); + } + + // string line_color = 6; + if (!this_._internal_line_color().empty()) { + const std::string& _s = this_._internal_line_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color"); + target = stream->WriteStringMaybeAliased(6, _s, target); + } + + // optional string point_label_format = 8; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_point_label_format(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format"); + target = stream->WriteStringMaybeAliased(8, _s, target); + } + + // optional string x_tool_tip_pattern = 9; + if (cached_has_bits & 0x00000002u) { + const std::string& _s = this_._internal_x_tool_tip_pattern(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern"); + target = stream->WriteStringMaybeAliased(9, _s, target); + } + + // optional string y_tool_tip_pattern = 10; + if (cached_has_bits & 0x00000004u) { + const std::string& _s = this_._internal_y_tool_tip_pattern(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern"); + target = stream->WriteStringMaybeAliased(10, _s, target); + } + + // string shape_label = 11; + if (!this_._internal_shape_label().empty()) { + const std::string& _s = this_._internal_shape_label(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label"); + target = stream->WriteStringMaybeAliased(11, _s, target); + } + + // optional double shape_size = 12; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 12, this_._internal_shape_size(), target); + } + + // string shape_color = 13; + if (!this_._internal_shape_color().empty()) { + const std::string& _s = this_._internal_shape_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color"); + target = stream->WriteStringMaybeAliased(13, _s, target); + } + + // string shape = 14; + if (!this_._internal_shape().empty()) { + const std::string& _s = this_._internal_shape(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape"); + target = stream->WriteStringMaybeAliased(14, _s, target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; + for (unsigned i = 0, n = static_cast( + this_._internal_data_sources_size()); + i < n; i++) { + const auto& repfield = this_._internal_data_sources().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 15, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_SeriesDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_SeriesDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_SeriesDescriptor::ByteSizeLong() const { + const FigureDescriptor_SeriesDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; + { + total_size += 1UL * this_._internal_data_sources_size(); + for (const auto& msg : this_._internal_data_sources()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string name = 2; + if (!this_._internal_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_name()); + } + // string line_color = 6; + if (!this_._internal_line_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_line_color()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // optional string point_label_format = 8; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_point_label_format()); + } + // optional string x_tool_tip_pattern = 9; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_x_tool_tip_pattern()); + } + // optional string y_tool_tip_pattern = 10; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_y_tool_tip_pattern()); + } + } + { + // string shape_label = 11; + if (!this_._internal_shape_label().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_shape_label()); + } + // string shape_color = 13; + if (!this_._internal_shape_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_shape_color()); + } + // string shape = 14; + if (!this_._internal_shape().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_shape()); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; + if (this_._internal_plot_style() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_plot_style()); + } + } + if (cached_has_bits & 0x00000018u) { + // optional bool lines_visible = 3; + if (cached_has_bits & 0x00000008u) { + total_size += 2; + } + // optional bool shapes_visible = 4; + if (cached_has_bits & 0x00000010u) { + total_size += 2; + } + } + { + // bool gradient_visible = 5; + if (this_._internal_gradient_visible() != 0) { + total_size += 2; + } + } + { + // optional double shape_size = 12; + if (cached_has_bits & 0x00000020u) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_SeriesDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) @@ -15591,7 +17713,7 @@ void FigureDescriptor_SeriesDescriptor::MergeImpl(::google::protobuf::Message& t _this->_internal_set_shape(from._internal_shape()); } if (from._internal_plot_style() != 0) { - _this->_internal_set_plot_style(from._internal_plot_style()); + _this->_impl_.plot_style_ = from._impl_.plot_style_; } if (cached_has_bits & 0x00000018u) { if (cached_has_bits & 0x00000008u) { @@ -15600,14 +17722,14 @@ void FigureDescriptor_SeriesDescriptor::MergeImpl(::google::protobuf::Message& t if (cached_has_bits & 0x00000010u) { _this->_impl_.shapes_visible_ = from._impl_.shapes_visible_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } if (from._internal_gradient_visible() != 0) { - _this->_internal_set_gradient_visible(from._internal_gradient_visible()); + _this->_impl_.gradient_visible_ = from._impl_.gradient_visible_; } if (cached_has_bits & 0x00000020u) { - _this->_internal_set_shape_size(from._internal_shape_size()); + _this->_impl_.shape_size_ = from._impl_.shape_size_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -15618,13 +17740,7 @@ void FigureDescriptor_SeriesDescriptor::CopyFrom(const FigureDescriptor_SeriesDe MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_SeriesDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_SeriesDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_SeriesDescriptor::InternalSwap(FigureDescriptor_SeriesDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -15649,104 +17765,30 @@ void FigureDescriptor_SeriesDescriptor::InternalSwap(FigureDescriptor_SeriesDesc } ::google::protobuf::Metadata FigureDescriptor_SeriesDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[46]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_MultiSeriesDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& line_color(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_line_color(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_color(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_point_color(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& lines_visible(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_lines_visible(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& points_visible(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_points_visible(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& gradient_visible(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_gradient_visible(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_label_format(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_point_label_format(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& x_tool_tip_pattern(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_x_tool_tip_pattern(HasBits* has_bits) { - (*has_bits)[0] |= 64u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& y_tool_tip_pattern(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_y_tool_tip_pattern(HasBits* has_bits) { - (*has_bits)[0] |= 128u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_label(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_point_label(HasBits* has_bits) { - (*has_bits)[0] |= 256u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& point_size(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_point_size(HasBits* has_bits) { - (*has_bits)[0] |= 512u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_shape(const FigureDescriptor_MultiSeriesDescriptor* msg); - static void set_has_point_shape(HasBits* has_bits) { - (*has_bits)[0] |= 1024u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::line_color(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.line_color_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::point_color(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.point_color_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::lines_visible(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.lines_visible_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::points_visible(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.points_visible_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::gradient_visible(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.gradient_visible_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::point_label_format(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.point_label_format_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::x_tool_tip_pattern(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.x_tool_tip_pattern_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::y_tool_tip_pattern(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.y_tool_tip_pattern_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::point_label(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.point_label_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::point_size(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.point_size_; -} -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_Internal::point_shape(const FigureDescriptor_MultiSeriesDescriptor* msg) { - return *msg->_impl_.point_shape_; -} FigureDescriptor_MultiSeriesDescriptor::FigureDescriptor_MultiSeriesDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_MultiSeriesDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, data_sources_{visibility, arena, from.data_sources_}, @@ -15755,46 +17797,50 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_MultiSeriesDescriptor::Impl_::Imp FigureDescriptor_MultiSeriesDescriptor::FigureDescriptor_MultiSeriesDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_MultiSeriesDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_MultiSeriesDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.line_color_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.line_color_) - : nullptr; - _impl_.point_color_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_color_) - : nullptr; - _impl_.lines_visible_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.lines_visible_) - : nullptr; - _impl_.points_visible_ = (cached_has_bits & 0x00000008u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.points_visible_) - : nullptr; - _impl_.gradient_visible_ = (cached_has_bits & 0x00000010u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.gradient_visible_) - : nullptr; - _impl_.point_label_format_ = (cached_has_bits & 0x00000020u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_label_format_) - : nullptr; - _impl_.x_tool_tip_pattern_ = (cached_has_bits & 0x00000040u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.x_tool_tip_pattern_) - : nullptr; - _impl_.y_tool_tip_pattern_ = (cached_has_bits & 0x00000080u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.y_tool_tip_pattern_) - : nullptr; - _impl_.point_label_ = (cached_has_bits & 0x00000100u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_label_) - : nullptr; - _impl_.point_size_ = (cached_has_bits & 0x00000200u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>(arena, *from._impl_.point_size_) - : nullptr; - _impl_.point_shape_ = (cached_has_bits & 0x00000400u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_shape_) - : nullptr; + _impl_.line_color_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.line_color_) + : nullptr; + _impl_.point_color_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.point_color_) + : nullptr; + _impl_.lines_visible_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>( + arena, *from._impl_.lines_visible_) + : nullptr; + _impl_.points_visible_ = (cached_has_bits & 0x00000008u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>( + arena, *from._impl_.points_visible_) + : nullptr; + _impl_.gradient_visible_ = (cached_has_bits & 0x00000010u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>( + arena, *from._impl_.gradient_visible_) + : nullptr; + _impl_.point_label_format_ = (cached_has_bits & 0x00000020u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.point_label_format_) + : nullptr; + _impl_.x_tool_tip_pattern_ = (cached_has_bits & 0x00000040u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.x_tool_tip_pattern_) + : nullptr; + _impl_.y_tool_tip_pattern_ = (cached_has_bits & 0x00000080u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.y_tool_tip_pattern_) + : nullptr; + _impl_.point_label_ = (cached_has_bits & 0x00000100u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.point_label_) + : nullptr; + _impl_.point_size_ = (cached_has_bits & 0x00000200u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>( + arena, *from._impl_.point_size_) + : nullptr; + _impl_.point_shape_ = (cached_has_bits & 0x00000400u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>( + arena, *from._impl_.point_shape_) + : nullptr; _impl_.plot_style_ = from._impl_.plot_style_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) @@ -15837,76 +17883,34 @@ inline void FigureDescriptor_MultiSeriesDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_MultiSeriesDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.data_sources_.Clear(); - _impl_.name_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.line_color_ != nullptr); - _impl_.line_color_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.point_color_ != nullptr); - _impl_.point_color_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.lines_visible_ != nullptr); - _impl_.lines_visible_->Clear(); - } - if (cached_has_bits & 0x00000008u) { - ABSL_DCHECK(_impl_.points_visible_ != nullptr); - _impl_.points_visible_->Clear(); - } - if (cached_has_bits & 0x00000010u) { - ABSL_DCHECK(_impl_.gradient_visible_ != nullptr); - _impl_.gradient_visible_->Clear(); - } - if (cached_has_bits & 0x00000020u) { - ABSL_DCHECK(_impl_.point_label_format_ != nullptr); - _impl_.point_label_format_->Clear(); - } - if (cached_has_bits & 0x00000040u) { - ABSL_DCHECK(_impl_.x_tool_tip_pattern_ != nullptr); - _impl_.x_tool_tip_pattern_->Clear(); - } - if (cached_has_bits & 0x00000080u) { - ABSL_DCHECK(_impl_.y_tool_tip_pattern_ != nullptr); - _impl_.y_tool_tip_pattern_->Clear(); - } - } - if (cached_has_bits & 0x00000700u) { - if (cached_has_bits & 0x00000100u) { - ABSL_DCHECK(_impl_.point_label_ != nullptr); - _impl_.point_label_->Clear(); - } - if (cached_has_bits & 0x00000200u) { - ABSL_DCHECK(_impl_.point_size_ != nullptr); - _impl_.point_size_->Clear(); - } - if (cached_has_bits & 0x00000400u) { - ABSL_DCHECK(_impl_.point_shape_ != nullptr); - _impl_.point_shape_->Clear(); - } - } - _impl_.plot_style_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_MultiSeriesDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_MultiSeriesDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_MultiSeriesDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_MultiSeriesDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_MultiSeriesDescriptor::ByteSizeLong, + &FigureDescriptor_MultiSeriesDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_MultiSeriesDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_MultiSeriesDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 14, 12, 100, 2> FigureDescriptor_MultiSeriesDescriptor::_table_ = { { @@ -15919,8 +17923,12 @@ const ::_pbi::TcParseTable<4, 14, 12, 100, 2> FigureDescriptor_MultiSeriesDescri 14, // num_field_entries 12, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_MultiSeriesDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; @@ -16031,234 +18039,303 @@ const ::_pbi::TcParseTable<4, 14, 12, 100, 2> FigureDescriptor_MultiSeriesDescri }}, }; -::uint8_t* FigureDescriptor_MultiSeriesDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - if (this->_internal_plot_style() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_plot_style(), target); - } - - // string name = 2; - if (!this->_internal_name().empty()) { - const std::string& _s = this->_internal_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::line_color(this), - _Internal::line_color(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::point_color(this), - _Internal::point_color(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::lines_visible(this), - _Internal::lines_visible(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; - if (cached_has_bits & 0x00000008u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::points_visible(this), - _Internal::points_visible(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; - if (cached_has_bits & 0x00000010u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::gradient_visible(this), - _Internal::gradient_visible(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; - if (cached_has_bits & 0x00000020u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::point_label_format(this), - _Internal::point_label_format(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; - if (cached_has_bits & 0x00000040u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::x_tool_tip_pattern(this), - _Internal::x_tool_tip_pattern(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; - if (cached_has_bits & 0x00000080u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 10, _Internal::y_tool_tip_pattern(this), - _Internal::y_tool_tip_pattern(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; - if (cached_has_bits & 0x00000100u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 11, _Internal::point_label(this), - _Internal::point_label(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; - if (cached_has_bits & 0x00000200u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 12, _Internal::point_size(this), - _Internal::point_size(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; - if (cached_has_bits & 0x00000400u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 13, _Internal::point_shape(this), - _Internal::point_shape(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; - for (unsigned i = 0, - n = static_cast(this->_internal_data_sources_size()); i < n; i++) { - const auto& repfield = this->_internal_data_sources().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(14, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - return target; -} - -::size_t FigureDescriptor_MultiSeriesDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_MultiSeriesDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; - total_size += 1UL * this->_internal_data_sources_size(); - for (const auto& msg : this->_internal_data_sources()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string name = 2; - if (!this->_internal_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_name()); - } - + _impl_.data_sources_.Clear(); + _impl_.name_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x000000ffu) { - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.line_color_); + ABSL_DCHECK(_impl_.line_color_ != nullptr); + _impl_.line_color_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.point_color_); + ABSL_DCHECK(_impl_.point_color_ != nullptr); + _impl_.point_color_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.lines_visible_); + ABSL_DCHECK(_impl_.lines_visible_ != nullptr); + _impl_.lines_visible_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; if (cached_has_bits & 0x00000008u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.points_visible_); + ABSL_DCHECK(_impl_.points_visible_ != nullptr); + _impl_.points_visible_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; if (cached_has_bits & 0x00000010u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.gradient_visible_); + ABSL_DCHECK(_impl_.gradient_visible_ != nullptr); + _impl_.gradient_visible_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; if (cached_has_bits & 0x00000020u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.point_label_format_); + ABSL_DCHECK(_impl_.point_label_format_ != nullptr); + _impl_.point_label_format_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; if (cached_has_bits & 0x00000040u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.x_tool_tip_pattern_); + ABSL_DCHECK(_impl_.x_tool_tip_pattern_ != nullptr); + _impl_.x_tool_tip_pattern_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; if (cached_has_bits & 0x00000080u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.y_tool_tip_pattern_); + ABSL_DCHECK(_impl_.y_tool_tip_pattern_ != nullptr); + _impl_.y_tool_tip_pattern_->Clear(); } - } if (cached_has_bits & 0x00000700u) { - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; if (cached_has_bits & 0x00000100u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.point_label_); + ABSL_DCHECK(_impl_.point_label_ != nullptr); + _impl_.point_label_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; if (cached_has_bits & 0x00000200u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.point_size_); + ABSL_DCHECK(_impl_.point_size_ != nullptr); + _impl_.point_size_->Clear(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; if (cached_has_bits & 0x00000400u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.point_shape_); + ABSL_DCHECK(_impl_.point_shape_ != nullptr); + _impl_.point_shape_->Clear(); } - - } - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - if (this->_internal_plot_style() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_plot_style()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_MultiSeriesDescriptor::_class_data_ = { - FigureDescriptor_MultiSeriesDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_MultiSeriesDescriptor::GetClassData() const { - return &_class_data_; + _impl_.plot_style_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_MultiSeriesDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_MultiSeriesDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_MultiSeriesDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_MultiSeriesDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_MultiSeriesDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; + if (this_._internal_plot_style() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_plot_style(), target); + } + + // string name = 2; + if (!this_._internal_name().empty()) { + const std::string& _s = this_._internal_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.line_color_, this_._impl_.line_color_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.point_color_, this_._impl_.point_color_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.lines_visible_, this_._impl_.lines_visible_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; + if (cached_has_bits & 0x00000008u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.points_visible_, this_._impl_.points_visible_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; + if (cached_has_bits & 0x00000010u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.gradient_visible_, this_._impl_.gradient_visible_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; + if (cached_has_bits & 0x00000020u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.point_label_format_, this_._impl_.point_label_format_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; + if (cached_has_bits & 0x00000040u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.x_tool_tip_pattern_, this_._impl_.x_tool_tip_pattern_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; + if (cached_has_bits & 0x00000080u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, *this_._impl_.y_tool_tip_pattern_, this_._impl_.y_tool_tip_pattern_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; + if (cached_has_bits & 0x00000100u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 11, *this_._impl_.point_label_, this_._impl_.point_label_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; + if (cached_has_bits & 0x00000200u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 12, *this_._impl_.point_size_, this_._impl_.point_size_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; + if (cached_has_bits & 0x00000400u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 13, *this_._impl_.point_shape_, this_._impl_.point_shape_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; + for (unsigned i = 0, n = static_cast( + this_._internal_data_sources_size()); + i < n; i++) { + const auto& repfield = this_._internal_data_sources().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 14, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_MultiSeriesDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_MultiSeriesDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_MultiSeriesDescriptor::ByteSizeLong() const { + const FigureDescriptor_MultiSeriesDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; + { + total_size += 1UL * this_._internal_data_sources_size(); + for (const auto& msg : this_._internal_data_sources()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string name = 2; + if (!this_._internal_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_name()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x000000ffu) { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.line_color_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.point_color_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.lines_visible_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; + if (cached_has_bits & 0x00000008u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.points_visible_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; + if (cached_has_bits & 0x00000010u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.gradient_visible_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; + if (cached_has_bits & 0x00000020u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.point_label_format_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; + if (cached_has_bits & 0x00000040u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.x_tool_tip_pattern_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; + if (cached_has_bits & 0x00000080u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.y_tool_tip_pattern_); + } + } + if (cached_has_bits & 0x00000700u) { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; + if (cached_has_bits & 0x00000100u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.point_label_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; + if (cached_has_bits & 0x00000200u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.point_size_); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; + if (cached_has_bits & 0x00000400u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.point_shape_); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; + if (this_._internal_plot_style() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_plot_style()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_MultiSeriesDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -16272,55 +18349,111 @@ void FigureDescriptor_MultiSeriesDescriptor::MergeImpl(::google::protobuf::Messa cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x000000ffu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_line_color()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_line_color()); + ABSL_DCHECK(from._impl_.line_color_ != nullptr); + if (_this->_impl_.line_color_ == nullptr) { + _this->_impl_.line_color_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.line_color_); + } else { + _this->_impl_.line_color_->MergeFrom(*from._impl_.line_color_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_point_color()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_point_color()); + ABSL_DCHECK(from._impl_.point_color_ != nullptr); + if (_this->_impl_.point_color_ == nullptr) { + _this->_impl_.point_color_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_color_); + } else { + _this->_impl_.point_color_->MergeFrom(*from._impl_.point_color_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_lines_visible()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault::MergeFrom( - from._internal_lines_visible()); + ABSL_DCHECK(from._impl_.lines_visible_ != nullptr); + if (_this->_impl_.lines_visible_ == nullptr) { + _this->_impl_.lines_visible_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.lines_visible_); + } else { + _this->_impl_.lines_visible_->MergeFrom(*from._impl_.lines_visible_); + } } if (cached_has_bits & 0x00000008u) { - _this->_internal_mutable_points_visible()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault::MergeFrom( - from._internal_points_visible()); + ABSL_DCHECK(from._impl_.points_visible_ != nullptr); + if (_this->_impl_.points_visible_ == nullptr) { + _this->_impl_.points_visible_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.points_visible_); + } else { + _this->_impl_.points_visible_->MergeFrom(*from._impl_.points_visible_); + } } if (cached_has_bits & 0x00000010u) { - _this->_internal_mutable_gradient_visible()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault::MergeFrom( - from._internal_gradient_visible()); + ABSL_DCHECK(from._impl_.gradient_visible_ != nullptr); + if (_this->_impl_.gradient_visible_ == nullptr) { + _this->_impl_.gradient_visible_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(arena, *from._impl_.gradient_visible_); + } else { + _this->_impl_.gradient_visible_->MergeFrom(*from._impl_.gradient_visible_); + } } if (cached_has_bits & 0x00000020u) { - _this->_internal_mutable_point_label_format()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_point_label_format()); + ABSL_DCHECK(from._impl_.point_label_format_ != nullptr); + if (_this->_impl_.point_label_format_ == nullptr) { + _this->_impl_.point_label_format_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_label_format_); + } else { + _this->_impl_.point_label_format_->MergeFrom(*from._impl_.point_label_format_); + } } if (cached_has_bits & 0x00000040u) { - _this->_internal_mutable_x_tool_tip_pattern()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_x_tool_tip_pattern()); + ABSL_DCHECK(from._impl_.x_tool_tip_pattern_ != nullptr); + if (_this->_impl_.x_tool_tip_pattern_ == nullptr) { + _this->_impl_.x_tool_tip_pattern_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.x_tool_tip_pattern_); + } else { + _this->_impl_.x_tool_tip_pattern_->MergeFrom(*from._impl_.x_tool_tip_pattern_); + } } if (cached_has_bits & 0x00000080u) { - _this->_internal_mutable_y_tool_tip_pattern()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_y_tool_tip_pattern()); + ABSL_DCHECK(from._impl_.y_tool_tip_pattern_ != nullptr); + if (_this->_impl_.y_tool_tip_pattern_ == nullptr) { + _this->_impl_.y_tool_tip_pattern_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.y_tool_tip_pattern_); + } else { + _this->_impl_.y_tool_tip_pattern_->MergeFrom(*from._impl_.y_tool_tip_pattern_); + } } } if (cached_has_bits & 0x00000700u) { if (cached_has_bits & 0x00000100u) { - _this->_internal_mutable_point_label()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_point_label()); + ABSL_DCHECK(from._impl_.point_label_ != nullptr); + if (_this->_impl_.point_label_ == nullptr) { + _this->_impl_.point_label_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_label_); + } else { + _this->_impl_.point_label_->MergeFrom(*from._impl_.point_label_); + } } if (cached_has_bits & 0x00000200u) { - _this->_internal_mutable_point_size()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault::MergeFrom( - from._internal_point_size()); + ABSL_DCHECK(from._impl_.point_size_ != nullptr); + if (_this->_impl_.point_size_ == nullptr) { + _this->_impl_.point_size_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>(arena, *from._impl_.point_size_); + } else { + _this->_impl_.point_size_->MergeFrom(*from._impl_.point_size_); + } } if (cached_has_bits & 0x00000400u) { - _this->_internal_mutable_point_shape()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault::MergeFrom( - from._internal_point_shape()); + ABSL_DCHECK(from._impl_.point_shape_ != nullptr); + if (_this->_impl_.point_shape_ == nullptr) { + _this->_impl_.point_shape_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(arena, *from._impl_.point_shape_); + } else { + _this->_impl_.point_shape_->MergeFrom(*from._impl_.point_shape_); + } } } if (from._internal_plot_style() != 0) { - _this->_internal_set_plot_style(from._internal_plot_style()); + _this->_impl_.plot_style_ = from._impl_.plot_style_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16331,13 +18464,7 @@ void FigureDescriptor_MultiSeriesDescriptor::CopyFrom(const FigureDescriptor_Mul MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_MultiSeriesDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_MultiSeriesDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_MultiSeriesDescriptor::InternalSwap(FigureDescriptor_MultiSeriesDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -16355,30 +18482,30 @@ void FigureDescriptor_MultiSeriesDescriptor::InternalSwap(FigureDescriptor_Multi } ::google::protobuf::Metadata FigureDescriptor_MultiSeriesDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[47]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_StringMapWithDefault::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_._has_bits_); - static void set_has_default_string(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_._has_bits_); }; FigureDescriptor_StringMapWithDefault::FigureDescriptor_StringMapWithDefault(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_StringMapWithDefault::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, keys_{visibility, arena, from.keys_}, @@ -16388,12 +18515,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_StringMapWithDefault::Impl_::Impl FigureDescriptor_StringMapWithDefault::FigureDescriptor_StringMapWithDefault( ::google::protobuf::Arena* arena, const FigureDescriptor_StringMapWithDefault& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_StringMapWithDefault* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) } @@ -16419,30 +18550,34 @@ inline void FigureDescriptor_StringMapWithDefault::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_StringMapWithDefault::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.keys_.Clear(); - _impl_.values_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.default_string_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_StringMapWithDefault::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_StringMapWithDefault::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_StringMapWithDefault_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_StringMapWithDefault::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_StringMapWithDefault::ByteSizeLong, + &FigureDescriptor_StringMapWithDefault::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_._cached_size_), + false, + }, + &FigureDescriptor_StringMapWithDefault::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_StringMapWithDefault::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 111, 2> FigureDescriptor_StringMapWithDefault::_table_ = { { @@ -16455,8 +18590,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 111, 2> FigureDescriptor_StringMapWithDefaul 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_StringMapWithDefault_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // optional string default_string = 1; @@ -16491,86 +18630,121 @@ const ::_pbi::TcParseTable<2, 3, 0, 111, 2> FigureDescriptor_StringMapWithDefaul }}, }; -::uint8_t* FigureDescriptor_StringMapWithDefault::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional string default_string = 1; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_default_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // repeated string keys = 2; - for (int i = 0, n = this->_internal_keys_size(); i < n; ++i) { - const auto& s = this->_internal_keys().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys"); - target = stream->WriteString(2, s, target); - } - - // repeated string values = 3; - for (int i = 0, n = this->_internal_values_size(); i < n; ++i) { - const auto& s = this->_internal_values().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - return target; -} - -::size_t FigureDescriptor_StringMapWithDefault::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_StringMapWithDefault::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string keys = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_keys().size()); - for (int i = 0, n = _internal_keys().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_keys().Get(i)); - } - // repeated string values = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_values().size()); - for (int i = 0, n = _internal_values().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_values().Get(i)); - } - // optional string default_string = 1; + _impl_.keys_.Clear(); + _impl_.values_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_default_string()); + _impl_.default_string_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_StringMapWithDefault::_class_data_ = { - FigureDescriptor_StringMapWithDefault::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_StringMapWithDefault::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_StringMapWithDefault::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_StringMapWithDefault::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_StringMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_StringMapWithDefault::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_StringMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string default_string = 1; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_default_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // repeated string keys = 2; + for (int i = 0, n = this_._internal_keys_size(); i < n; ++i) { + const auto& s = this_._internal_keys().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys"); + target = stream->WriteString(2, s, target); + } + + // repeated string values = 3; + for (int i = 0, n = this_._internal_values_size(); i < n; ++i) { + const auto& s = this_._internal_values().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_StringMapWithDefault::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_StringMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_StringMapWithDefault::ByteSizeLong() const { + const FigureDescriptor_StringMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string keys = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_keys().size()); + for (int i = 0, n = this_._internal_keys().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_keys().Get(i)); + } + } + // repeated string values = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_values().size()); + for (int i = 0, n = this_._internal_values().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_values().Get(i)); + } + } + } + { + // optional string default_string = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_default_string()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_StringMapWithDefault::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) @@ -16580,9 +18754,11 @@ void FigureDescriptor_StringMapWithDefault::MergeImpl(::google::protobuf::Messag _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_default_string(from._internal_default_string()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16593,13 +18769,7 @@ void FigureDescriptor_StringMapWithDefault::CopyFrom(const FigureDescriptor_Stri MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_StringMapWithDefault::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_StringMapWithDefault::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_StringMapWithDefault::InternalSwap(FigureDescriptor_StringMapWithDefault* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -16612,30 +18782,30 @@ void FigureDescriptor_StringMapWithDefault::InternalSwap(FigureDescriptor_String } ::google::protobuf::Metadata FigureDescriptor_StringMapWithDefault::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[48]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_DoubleMapWithDefault::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_._has_bits_); - static void set_has_default_double(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_._has_bits_); }; FigureDescriptor_DoubleMapWithDefault::FigureDescriptor_DoubleMapWithDefault(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_DoubleMapWithDefault::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, keys_{visibility, arena, from.keys_}, @@ -16644,12 +18814,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_DoubleMapWithDefault::Impl_::Impl FigureDescriptor_DoubleMapWithDefault::FigureDescriptor_DoubleMapWithDefault( ::google::protobuf::Arena* arena, const FigureDescriptor_DoubleMapWithDefault& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_DoubleMapWithDefault* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.default_double_ = from._impl_.default_double_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) @@ -16675,27 +18849,34 @@ inline void FigureDescriptor_DoubleMapWithDefault::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_DoubleMapWithDefault::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.keys_.Clear(); - _impl_.values_.Clear(); - _impl_.default_double_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_DoubleMapWithDefault::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_DoubleMapWithDefault::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_DoubleMapWithDefault_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_DoubleMapWithDefault::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_DoubleMapWithDefault::ByteSizeLong, + &FigureDescriptor_DoubleMapWithDefault::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_._cached_size_), + false, + }, + &FigureDescriptor_DoubleMapWithDefault::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_DoubleMapWithDefault::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 91, 2> FigureDescriptor_DoubleMapWithDefault::_table_ = { { @@ -16708,8 +18889,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 91, 2> FigureDescriptor_DoubleMapWithDefault 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_DoubleMapWithDefault_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // optional double default_double = 1; @@ -16742,87 +18927,116 @@ const ::_pbi::TcParseTable<2, 3, 0, 91, 2> FigureDescriptor_DoubleMapWithDefault }}, }; -::uint8_t* FigureDescriptor_DoubleMapWithDefault::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional double default_double = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 1, this->_internal_default_double(), target); - } - - // repeated string keys = 2; - for (int i = 0, n = this->_internal_keys_size(); i < n; ++i) { - const auto& s = this->_internal_keys().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys"); - target = stream->WriteString(2, s, target); - } - - // repeated double values = 3; - if (this->_internal_values_size() > 0) { - target = stream->WriteFixedPacked(3, _internal_values(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - return target; -} - -::size_t FigureDescriptor_DoubleMapWithDefault::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_DoubleMapWithDefault::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string keys = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_keys().size()); - for (int i = 0, n = _internal_keys().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_keys().Get(i)); - } - // repeated double values = 3; - { - std::size_t data_size = std::size_t{8} * - ::_pbi::FromIntSize(this->_internal_values_size()) - ; - std::size_t tag_size = data_size == 0 - ? 0 - : 1 + ::_pbi::WireFormatLite::Int32Size( - static_cast(data_size)) - ; - total_size += tag_size + data_size; - } - // optional double default_double = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 9; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_DoubleMapWithDefault::_class_data_ = { - FigureDescriptor_DoubleMapWithDefault::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_DoubleMapWithDefault::GetClassData() const { - return &_class_data_; + _impl_.keys_.Clear(); + _impl_.values_.Clear(); + _impl_.default_double_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_DoubleMapWithDefault::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_DoubleMapWithDefault::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_DoubleMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_DoubleMapWithDefault::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_DoubleMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional double default_double = 1; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 1, this_._internal_default_double(), target); + } + + // repeated string keys = 2; + for (int i = 0, n = this_._internal_keys_size(); i < n; ++i) { + const auto& s = this_._internal_keys().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys"); + target = stream->WriteString(2, s, target); + } + + // repeated double values = 3; + if (this_._internal_values_size() > 0) { + target = stream->WriteFixedPacked(3, this_._internal_values(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_DoubleMapWithDefault::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_DoubleMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_DoubleMapWithDefault::ByteSizeLong() const { + const FigureDescriptor_DoubleMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string keys = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_keys().size()); + for (int i = 0, n = this_._internal_keys().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_keys().Get(i)); + } + } + // repeated double values = 3; + { + std::size_t data_size = std::size_t{8} * + ::_pbi::FromIntSize(this_._internal_values_size()) + ; + std::size_t tag_size = data_size == 0 + ? 0 + : 1 + ::_pbi::WireFormatLite::Int32Size( + static_cast(data_size)) + ; + total_size += tag_size + data_size; + } + } + { + // optional double default_double = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_DoubleMapWithDefault::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) @@ -16832,9 +19046,11 @@ void FigureDescriptor_DoubleMapWithDefault::MergeImpl(::google::protobuf::Messag _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_set_default_double(from._internal_default_double()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _this->_impl_.default_double_ = from._impl_.default_double_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16845,13 +19061,7 @@ void FigureDescriptor_DoubleMapWithDefault::CopyFrom(const FigureDescriptor_Doub MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_DoubleMapWithDefault::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_DoubleMapWithDefault::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_DoubleMapWithDefault::InternalSwap(FigureDescriptor_DoubleMapWithDefault* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -16862,30 +19072,30 @@ void FigureDescriptor_DoubleMapWithDefault::InternalSwap(FigureDescriptor_Double } ::google::protobuf::Metadata FigureDescriptor_DoubleMapWithDefault::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[49]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_BoolMapWithDefault::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_._has_bits_); - static void set_has_default_bool(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_._has_bits_); }; FigureDescriptor_BoolMapWithDefault::FigureDescriptor_BoolMapWithDefault(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BoolMapWithDefault::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, keys_{visibility, arena, from.keys_}, @@ -16894,12 +19104,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BoolMapWithDefault::Impl_::Impl_( FigureDescriptor_BoolMapWithDefault::FigureDescriptor_BoolMapWithDefault( ::google::protobuf::Arena* arena, const FigureDescriptor_BoolMapWithDefault& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_BoolMapWithDefault* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.default_bool_ = from._impl_.default_bool_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) @@ -16925,27 +19139,34 @@ inline void FigureDescriptor_BoolMapWithDefault::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_BoolMapWithDefault::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.keys_.Clear(); - _impl_.values_.Clear(); - _impl_.default_bool_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_BoolMapWithDefault::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_BoolMapWithDefault::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_BoolMapWithDefault_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_BoolMapWithDefault::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_BoolMapWithDefault::ByteSizeLong, + &FigureDescriptor_BoolMapWithDefault::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_._cached_size_), + false, + }, + &FigureDescriptor_BoolMapWithDefault::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_BoolMapWithDefault::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 89, 2> FigureDescriptor_BoolMapWithDefault::_table_ = { { @@ -16958,8 +19179,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 89, 2> FigureDescriptor_BoolMapWithDefault:: 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_BoolMapWithDefault_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // optional bool default_bool = 1; @@ -16992,87 +19217,116 @@ const ::_pbi::TcParseTable<2, 3, 0, 89, 2> FigureDescriptor_BoolMapWithDefault:: }}, }; -::uint8_t* FigureDescriptor_BoolMapWithDefault::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional bool default_bool = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_default_bool(), target); - } - - // repeated string keys = 2; - for (int i = 0, n = this->_internal_keys_size(); i < n; ++i) { - const auto& s = this->_internal_keys().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys"); - target = stream->WriteString(2, s, target); - } - - // repeated bool values = 3; - if (this->_internal_values_size() > 0) { - target = stream->WriteFixedPacked(3, _internal_values(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - return target; -} - -::size_t FigureDescriptor_BoolMapWithDefault::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_BoolMapWithDefault::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string keys = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_keys().size()); - for (int i = 0, n = _internal_keys().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_keys().Get(i)); - } - // repeated bool values = 3; - { - std::size_t data_size = std::size_t{1} * - ::_pbi::FromIntSize(this->_internal_values_size()) - ; - std::size_t tag_size = data_size == 0 - ? 0 - : 1 + ::_pbi::WireFormatLite::Int32Size( - static_cast(data_size)) - ; - total_size += tag_size + data_size; - } - // optional bool default_bool = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_BoolMapWithDefault::_class_data_ = { - FigureDescriptor_BoolMapWithDefault::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_BoolMapWithDefault::GetClassData() const { - return &_class_data_; + _impl_.keys_.Clear(); + _impl_.values_.Clear(); + _impl_.default_bool_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_BoolMapWithDefault::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_BoolMapWithDefault::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_BoolMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_BoolMapWithDefault::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_BoolMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional bool default_bool = 1; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_default_bool(), target); + } + + // repeated string keys = 2; + for (int i = 0, n = this_._internal_keys_size(); i < n; ++i) { + const auto& s = this_._internal_keys().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys"); + target = stream->WriteString(2, s, target); + } + + // repeated bool values = 3; + if (this_._internal_values_size() > 0) { + target = stream->WriteFixedPacked(3, this_._internal_values(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_BoolMapWithDefault::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_BoolMapWithDefault& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_BoolMapWithDefault::ByteSizeLong() const { + const FigureDescriptor_BoolMapWithDefault& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string keys = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_keys().size()); + for (int i = 0, n = this_._internal_keys().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_keys().Get(i)); + } + } + // repeated bool values = 3; + { + std::size_t data_size = std::size_t{1} * + ::_pbi::FromIntSize(this_._internal_values_size()) + ; + std::size_t tag_size = data_size == 0 + ? 0 + : 1 + ::_pbi::WireFormatLite::Int32Size( + static_cast(data_size)) + ; + total_size += tag_size + data_size; + } + } + { + // optional bool default_bool = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_BoolMapWithDefault::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) @@ -17082,9 +19336,11 @@ void FigureDescriptor_BoolMapWithDefault::MergeImpl(::google::protobuf::Message& _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_set_default_bool(from._internal_default_bool()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _this->_impl_.default_bool_ = from._impl_.default_bool_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -17095,13 +19351,7 @@ void FigureDescriptor_BoolMapWithDefault::CopyFrom(const FigureDescriptor_BoolMa MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_BoolMapWithDefault::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_BoolMapWithDefault::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_BoolMapWithDefault::InternalSwap(FigureDescriptor_BoolMapWithDefault* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -17112,40 +19362,30 @@ void FigureDescriptor_BoolMapWithDefault::InternalSwap(FigureDescriptor_BoolMapW } ::google::protobuf::Metadata FigureDescriptor_BoolMapWithDefault::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[50]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_AxisDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_._has_bits_); - static void set_has_format_pattern(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_gap_between_major_ticks(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& business_calendar_descriptor(const FigureDescriptor_AxisDescriptor* msg); - static void set_has_business_calendar_descriptor(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& FigureDescriptor_AxisDescriptor::_Internal::business_calendar_descriptor(const FigureDescriptor_AxisDescriptor* msg) { - return *msg->_impl_.business_calendar_descriptor_; -} FigureDescriptor_AxisDescriptor::FigureDescriptor_AxisDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_AxisDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, major_tick_locations_{visibility, arena, from.major_tick_locations_}, @@ -17159,16 +19399,20 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_AxisDescriptor::Impl_::Impl_( FigureDescriptor_AxisDescriptor::FigureDescriptor_AxisDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_AxisDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_AxisDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.business_calendar_descriptor_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>(arena, *from._impl_.business_calendar_descriptor_) - : nullptr; + _impl_.business_calendar_descriptor_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>( + arena, *from._impl_.business_calendar_descriptor_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, format_type_), reinterpret_cast(&from._impl_) + @@ -17217,45 +19461,34 @@ inline void FigureDescriptor_AxisDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_AxisDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.major_tick_locations_.Clear(); - _impl_.id_.ClearToEmpty(); - _impl_.label_.ClearToEmpty(); - _impl_.label_font_.ClearToEmpty(); - _impl_.ticks_font_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.format_pattern_.ClearNonDefaultToEmpty(); - } - _impl_.color_.ClearToEmpty(); - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.business_calendar_descriptor_ != nullptr); - _impl_.business_calendar_descriptor_->Clear(); - } - ::memset(&_impl_.format_type_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.max_range_) - - reinterpret_cast(&_impl_.format_type_)) + sizeof(_impl_.max_range_)); - _impl_.gap_between_major_ticks_ = 0; - ::memset(&_impl_.minor_tick_count_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.tick_label_angle_) - - reinterpret_cast(&_impl_.minor_tick_count_)) + sizeof(_impl_.tick_label_angle_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_AxisDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_AxisDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_AxisDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_AxisDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_AxisDescriptor::ByteSizeLong, + &FigureDescriptor_AxisDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_AxisDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_AxisDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<5, 21, 1, 143, 2> FigureDescriptor_AxisDescriptor::_table_ = { { @@ -17268,8 +19501,12 @@ const ::_pbi::TcParseTable<5, 21, 1, 143, 2> FigureDescriptor_AxisDescriptor::_t 21, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_AxisDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string id = 1; @@ -17425,350 +19662,358 @@ const ::_pbi::TcParseTable<5, 21, 1, 143, 2> FigureDescriptor_AxisDescriptor::_t }}, }; -::uint8_t* FigureDescriptor_AxisDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string id = 1; - if (!this->_internal_id().empty()) { - const std::string& _s = this->_internal_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; - if (this->_internal_format_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_format_type(), target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; - if (this->_internal_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_type(), target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; - if (this->_internal_position() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 4, this->_internal_position(), target); - } - - // bool log = 5; - if (this->_internal_log() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_log(), target); - } - - // string label = 6; - if (!this->_internal_label().empty()) { - const std::string& _s = this->_internal_label(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label"); - target = stream->WriteStringMaybeAliased(6, _s, target); - } - - // string label_font = 7; - if (!this->_internal_label_font().empty()) { - const std::string& _s = this->_internal_label_font(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font"); - target = stream->WriteStringMaybeAliased(7, _s, target); - } - - // string ticks_font = 8; - if (!this->_internal_ticks_font().empty()) { - const std::string& _s = this->_internal_ticks_font(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font"); - target = stream->WriteStringMaybeAliased(8, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string format_pattern = 9; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_format_pattern(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern"); - target = stream->WriteStringMaybeAliased(9, _s, target); - } - - // string color = 10; - if (!this->_internal_color().empty()) { - const std::string& _s = this->_internal_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color"); - target = stream->WriteStringMaybeAliased(10, _s, target); - } - - // double min_range = 11; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_min_range = this->_internal_min_range(); - ::uint64_t raw_min_range; - memcpy(&raw_min_range, &tmp_min_range, sizeof(tmp_min_range)); - if (raw_min_range != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 11, this->_internal_min_range(), target); - } - - // double max_range = 12; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_max_range = this->_internal_max_range(); - ::uint64_t raw_max_range; - memcpy(&raw_max_range, &tmp_max_range, sizeof(tmp_max_range)); - if (raw_max_range != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 12, this->_internal_max_range(), target); - } - - // bool minor_ticks_visible = 13; - if (this->_internal_minor_ticks_visible() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 13, this->_internal_minor_ticks_visible(), target); - } - - // bool major_ticks_visible = 14; - if (this->_internal_major_ticks_visible() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 14, this->_internal_major_ticks_visible(), target); - } - - // int32 minor_tick_count = 15; - if (this->_internal_minor_tick_count() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<15>( - stream, this->_internal_minor_tick_count(), target); - } - - // optional double gap_between_major_ticks = 16; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 16, this->_internal_gap_between_major_ticks(), target); - } - - // repeated double major_tick_locations = 17; - if (this->_internal_major_tick_locations_size() > 0) { - target = stream->WriteFixedPacked(17, _internal_major_tick_locations(), target); - } - - // double tick_label_angle = 18; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_tick_label_angle = this->_internal_tick_label_angle(); - ::uint64_t raw_tick_label_angle; - memcpy(&raw_tick_label_angle, &tmp_tick_label_angle, sizeof(tmp_tick_label_angle)); - if (raw_tick_label_angle != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 18, this->_internal_tick_label_angle(), target); - } - - // bool invert = 19; - if (this->_internal_invert() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 19, this->_internal_invert(), target); - } - - // bool is_time_axis = 20; - if (this->_internal_is_time_axis() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 20, this->_internal_is_time_axis(), target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 21, _Internal::business_calendar_descriptor(this), - _Internal::business_calendar_descriptor(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - return target; -} - -::size_t FigureDescriptor_AxisDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_AxisDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated double major_tick_locations = 17; - { - std::size_t data_size = std::size_t{8} * - ::_pbi::FromIntSize(this->_internal_major_tick_locations_size()) - ; - std::size_t tag_size = data_size == 0 - ? 0 - : 2 + ::_pbi::WireFormatLite::Int32Size( - static_cast(data_size)) - ; - total_size += tag_size + data_size; - } - // string id = 1; - if (!this->_internal_id().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_id()); - } - - // string label = 6; - if (!this->_internal_label().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_label()); - } - - // string label_font = 7; - if (!this->_internal_label_font().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_label_font()); - } - - // string ticks_font = 8; - if (!this->_internal_ticks_font().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_ticks_font()); - } - - // optional string format_pattern = 9; + _impl_.major_tick_locations_.Clear(); + _impl_.id_.ClearToEmpty(); + _impl_.label_.ClearToEmpty(); + _impl_.label_font_.ClearToEmpty(); + _impl_.ticks_font_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_format_pattern()); - } - - // string color = 10; - if (!this->_internal_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_color()); + _impl_.format_pattern_.ClearNonDefaultToEmpty(); } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; + _impl_.color_.ClearToEmpty(); if (cached_has_bits & 0x00000002u) { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.business_calendar_descriptor_); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; - if (this->_internal_format_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_format_type()); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; - if (this->_internal_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); - } - - // double min_range = 11; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_min_range = this->_internal_min_range(); - ::uint64_t raw_min_range; - memcpy(&raw_min_range, &tmp_min_range, sizeof(tmp_min_range)); - if (raw_min_range != 0) { - total_size += 9; - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; - if (this->_internal_position() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_position()); - } - - // bool log = 5; - if (this->_internal_log() != 0) { - total_size += 2; - } - - // bool minor_ticks_visible = 13; - if (this->_internal_minor_ticks_visible() != 0) { - total_size += 2; - } - - // bool major_ticks_visible = 14; - if (this->_internal_major_ticks_visible() != 0) { - total_size += 2; - } - - // bool invert = 19; - if (this->_internal_invert() != 0) { - total_size += 3; - } - - // double max_range = 12; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_max_range = this->_internal_max_range(); - ::uint64_t raw_max_range; - memcpy(&raw_max_range, &tmp_max_range, sizeof(tmp_max_range)); - if (raw_max_range != 0) { - total_size += 9; - } - - // optional double gap_between_major_ticks = 16; - if (cached_has_bits & 0x00000004u) { - total_size += 10; - } - - // int32 minor_tick_count = 15; - if (this->_internal_minor_tick_count() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_minor_tick_count()); - } - - // bool is_time_axis = 20; - if (this->_internal_is_time_axis() != 0) { - total_size += 3; - } - - // double tick_label_angle = 18; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_tick_label_angle = this->_internal_tick_label_angle(); - ::uint64_t raw_tick_label_angle; - memcpy(&raw_tick_label_angle, &tmp_tick_label_angle, sizeof(tmp_tick_label_angle)); - if (raw_tick_label_angle != 0) { - total_size += 10; + ABSL_DCHECK(_impl_.business_calendar_descriptor_ != nullptr); + _impl_.business_calendar_descriptor_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_AxisDescriptor::_class_data_ = { - FigureDescriptor_AxisDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_AxisDescriptor::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.format_type_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.max_range_) - + reinterpret_cast(&_impl_.format_type_)) + sizeof(_impl_.max_range_)); + _impl_.gap_between_major_ticks_ = 0; + ::memset(&_impl_.minor_tick_count_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.tick_label_angle_) - + reinterpret_cast(&_impl_.minor_tick_count_)) + sizeof(_impl_.tick_label_angle_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_AxisDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_AxisDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_AxisDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_AxisDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_AxisDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string id = 1; + if (!this_._internal_id().empty()) { + const std::string& _s = this_._internal_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; + if (this_._internal_format_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_format_type(), target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; + if (this_._internal_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_type(), target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; + if (this_._internal_position() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 4, this_._internal_position(), target); + } + + // bool log = 5; + if (this_._internal_log() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_log(), target); + } + + // string label = 6; + if (!this_._internal_label().empty()) { + const std::string& _s = this_._internal_label(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label"); + target = stream->WriteStringMaybeAliased(6, _s, target); + } + + // string label_font = 7; + if (!this_._internal_label_font().empty()) { + const std::string& _s = this_._internal_label_font(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font"); + target = stream->WriteStringMaybeAliased(7, _s, target); + } + + // string ticks_font = 8; + if (!this_._internal_ticks_font().empty()) { + const std::string& _s = this_._internal_ticks_font(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font"); + target = stream->WriteStringMaybeAliased(8, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string format_pattern = 9; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_format_pattern(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern"); + target = stream->WriteStringMaybeAliased(9, _s, target); + } + + // string color = 10; + if (!this_._internal_color().empty()) { + const std::string& _s = this_._internal_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color"); + target = stream->WriteStringMaybeAliased(10, _s, target); + } + + // double min_range = 11; + if (::absl::bit_cast<::uint64_t>(this_._internal_min_range()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 11, this_._internal_min_range(), target); + } + + // double max_range = 12; + if (::absl::bit_cast<::uint64_t>(this_._internal_max_range()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 12, this_._internal_max_range(), target); + } + + // bool minor_ticks_visible = 13; + if (this_._internal_minor_ticks_visible() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 13, this_._internal_minor_ticks_visible(), target); + } + + // bool major_ticks_visible = 14; + if (this_._internal_major_ticks_visible() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 14, this_._internal_major_ticks_visible(), target); + } + + // int32 minor_tick_count = 15; + if (this_._internal_minor_tick_count() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<15>( + stream, this_._internal_minor_tick_count(), target); + } + + // optional double gap_between_major_ticks = 16; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 16, this_._internal_gap_between_major_ticks(), target); + } + + // repeated double major_tick_locations = 17; + if (this_._internal_major_tick_locations_size() > 0) { + target = stream->WriteFixedPacked(17, this_._internal_major_tick_locations(), target); + } + + // double tick_label_angle = 18; + if (::absl::bit_cast<::uint64_t>(this_._internal_tick_label_angle()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 18, this_._internal_tick_label_angle(), target); + } + + // bool invert = 19; + if (this_._internal_invert() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 19, this_._internal_invert(), target); + } + + // bool is_time_axis = 20; + if (this_._internal_is_time_axis() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 20, this_._internal_is_time_axis(), target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 21, *this_._impl_.business_calendar_descriptor_, this_._impl_.business_calendar_descriptor_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_AxisDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_AxisDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_AxisDescriptor::ByteSizeLong() const { + const FigureDescriptor_AxisDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated double major_tick_locations = 17; + { + std::size_t data_size = std::size_t{8} * + ::_pbi::FromIntSize(this_._internal_major_tick_locations_size()) + ; + std::size_t tag_size = data_size == 0 + ? 0 + : 2 + ::_pbi::WireFormatLite::Int32Size( + static_cast(data_size)) + ; + total_size += tag_size + data_size; + } + } + { + // string id = 1; + if (!this_._internal_id().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_id()); + } + // string label = 6; + if (!this_._internal_label().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_label()); + } + // string label_font = 7; + if (!this_._internal_label_font().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_label_font()); + } + // string ticks_font = 8; + if (!this_._internal_ticks_font().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_ticks_font()); + } + } + { + // optional string format_pattern = 9; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_format_pattern()); + } + } + { + // string color = 10; + if (!this_._internal_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_color()); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; + if (cached_has_bits & 0x00000002u) { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.business_calendar_descriptor_); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; + if (this_._internal_format_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_format_type()); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; + if (this_._internal_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_type()); + } + // double min_range = 11; + if (::absl::bit_cast<::uint64_t>(this_._internal_min_range()) != 0) { + total_size += 9; + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; + if (this_._internal_position() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_position()); + } + // bool log = 5; + if (this_._internal_log() != 0) { + total_size += 2; + } + // bool minor_ticks_visible = 13; + if (this_._internal_minor_ticks_visible() != 0) { + total_size += 2; + } + // bool major_ticks_visible = 14; + if (this_._internal_major_ticks_visible() != 0) { + total_size += 2; + } + // bool invert = 19; + if (this_._internal_invert() != 0) { + total_size += 3; + } + // double max_range = 12; + if (::absl::bit_cast<::uint64_t>(this_._internal_max_range()) != 0) { + total_size += 9; + } + } + { + // optional double gap_between_major_ticks = 16; + if (cached_has_bits & 0x00000004u) { + total_size += 10; + } + } + { + // int32 minor_tick_count = 15; + if (this_._internal_minor_tick_count() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_minor_tick_count()); + } + // bool is_time_axis = 20; + if (this_._internal_is_time_axis() != 0) { + total_size += 3; + } + // double tick_label_angle = 18; + if (::absl::bit_cast<::uint64_t>(this_._internal_tick_label_angle()) != 0) { + total_size += 10; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_AxisDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -17787,70 +20032,62 @@ void FigureDescriptor_AxisDescriptor::MergeImpl(::google::protobuf::Message& to_ if (!from._internal_ticks_font().empty()) { _this->_internal_set_ticks_font(from._internal_ticks_font()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_format_pattern(from._internal_format_pattern()); } if (!from._internal_color().empty()) { _this->_internal_set_color(from._internal_color()); } - if ((from._impl_._has_bits_[0] & 0x00000002u) != 0) { - _this->_internal_mutable_business_calendar_descriptor()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor::MergeFrom( - from._internal_business_calendar_descriptor()); + if (cached_has_bits & 0x00000002u) { + ABSL_DCHECK(from._impl_.business_calendar_descriptor_ != nullptr); + if (_this->_impl_.business_calendar_descriptor_ == nullptr) { + _this->_impl_.business_calendar_descriptor_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>(arena, *from._impl_.business_calendar_descriptor_); + } else { + _this->_impl_.business_calendar_descriptor_->MergeFrom(*from._impl_.business_calendar_descriptor_); + } } if (from._internal_format_type() != 0) { - _this->_internal_set_format_type(from._internal_format_type()); + _this->_impl_.format_type_ = from._impl_.format_type_; } if (from._internal_type() != 0) { - _this->_internal_set_type(from._internal_type()); + _this->_impl_.type_ = from._impl_.type_; } - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_min_range = from._internal_min_range(); - ::uint64_t raw_min_range; - memcpy(&raw_min_range, &tmp_min_range, sizeof(tmp_min_range)); - if (raw_min_range != 0) { - _this->_internal_set_min_range(from._internal_min_range()); + if (::absl::bit_cast<::uint64_t>(from._internal_min_range()) != 0) { + _this->_impl_.min_range_ = from._impl_.min_range_; } if (from._internal_position() != 0) { - _this->_internal_set_position(from._internal_position()); + _this->_impl_.position_ = from._impl_.position_; } if (from._internal_log() != 0) { - _this->_internal_set_log(from._internal_log()); + _this->_impl_.log_ = from._impl_.log_; } if (from._internal_minor_ticks_visible() != 0) { - _this->_internal_set_minor_ticks_visible(from._internal_minor_ticks_visible()); + _this->_impl_.minor_ticks_visible_ = from._impl_.minor_ticks_visible_; } if (from._internal_major_ticks_visible() != 0) { - _this->_internal_set_major_ticks_visible(from._internal_major_ticks_visible()); + _this->_impl_.major_ticks_visible_ = from._impl_.major_ticks_visible_; } if (from._internal_invert() != 0) { - _this->_internal_set_invert(from._internal_invert()); + _this->_impl_.invert_ = from._impl_.invert_; } - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_max_range = from._internal_max_range(); - ::uint64_t raw_max_range; - memcpy(&raw_max_range, &tmp_max_range, sizeof(tmp_max_range)); - if (raw_max_range != 0) { - _this->_internal_set_max_range(from._internal_max_range()); + if (::absl::bit_cast<::uint64_t>(from._internal_max_range()) != 0) { + _this->_impl_.max_range_ = from._impl_.max_range_; } - if ((from._impl_._has_bits_[0] & 0x00000004u) != 0) { - _this->_internal_set_gap_between_major_ticks(from._internal_gap_between_major_ticks()); + if (cached_has_bits & 0x00000004u) { + _this->_impl_.gap_between_major_ticks_ = from._impl_.gap_between_major_ticks_; } if (from._internal_minor_tick_count() != 0) { - _this->_internal_set_minor_tick_count(from._internal_minor_tick_count()); + _this->_impl_.minor_tick_count_ = from._impl_.minor_tick_count_; } if (from._internal_is_time_axis() != 0) { - _this->_internal_set_is_time_axis(from._internal_is_time_axis()); + _this->_impl_.is_time_axis_ = from._impl_.is_time_axis_; } - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_tick_label_angle = from._internal_tick_label_angle(); - ::uint64_t raw_tick_label_angle; - memcpy(&raw_tick_label_angle, &tmp_tick_label_angle, sizeof(tmp_tick_label_angle)); - if (raw_tick_label_angle != 0) { - _this->_internal_set_tick_label_angle(from._internal_tick_label_angle()); + if (::absl::bit_cast<::uint64_t>(from._internal_tick_label_angle()) != 0) { + _this->_impl_.tick_label_angle_ = from._impl_.tick_label_angle_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -17861,13 +20098,7 @@ void FigureDescriptor_AxisDescriptor::CopyFrom(const FigureDescriptor_AxisDescri MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_AxisDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_AxisDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_AxisDescriptor::InternalSwap(FigureDescriptor_AxisDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -17890,9 +20121,7 @@ void FigureDescriptor_AxisDescriptor::InternalSwap(FigureDescriptor_AxisDescript } ::google::protobuf::Metadata FigureDescriptor_AxisDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[51]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -17901,13 +20130,17 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_Internal { }; FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from_msg) : open_(arena, from.open_), close_(arena, from.close_), _cached_size_{0} {} @@ -17915,12 +20148,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_Busine FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod( ::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) } @@ -17946,25 +20183,34 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::SharedDt _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.open_.ClearToEmpty(); - _impl_.close_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::ByteSizeLong, + &FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_._cached_size_), + false, + }, + &FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 117, 2> FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_table_ = { { @@ -17977,8 +20223,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 117, 2> FigureDescriptor_BusinessCalendarDes 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string close = 2; {::_pbi::TcParser::FastUS1, @@ -18005,70 +20255,90 @@ const ::_pbi::TcParseTable<1, 2, 0, 117, 2> FigureDescriptor_BusinessCalendarDes }}, }; -::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string open = 1; - if (!this->_internal_open().empty()) { - const std::string& _s = this->_internal_open(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string close = 2; - if (!this->_internal_close().empty()) { - const std::string& _s = this->_internal_close(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - return target; -} - -::size_t FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string open = 1; - if (!this->_internal_open().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_open()); - } - - // string close = 2; - if (!this->_internal_close().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_close()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_class_data_ = { - FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::GetClassData() const { - return &_class_data_; + _impl_.open_.ClearToEmpty(); + _impl_.close_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string open = 1; + if (!this_._internal_open().empty()) { + const std::string& _s = this_._internal_open(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string close = 2; + if (!this_._internal_close().empty()) { + const std::string& _s = this_._internal_close(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::ByteSizeLong() const { + const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string open = 1; + if (!this_._internal_open().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_open()); + } + // string close = 2; + if (!this_._internal_close().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_close()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) @@ -18092,13 +20362,7 @@ void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::CopyFrom(const MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -18109,34 +20373,30 @@ void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::InternalSwap(Fi } ::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[52]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_BusinessCalendarDescriptor_Holiday::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& date(const FigureDescriptor_BusinessCalendarDescriptor_Holiday* msg); - static void set_has_date(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& FigureDescriptor_BusinessCalendarDescriptor_Holiday::_Internal::date(const FigureDescriptor_BusinessCalendarDescriptor_Holiday* msg) { - return *msg->_impl_.date_; -} FigureDescriptor_BusinessCalendarDescriptor_Holiday::FigureDescriptor_BusinessCalendarDescriptor_Holiday(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_Holiday::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, business_periods_{visibility, arena, from.business_periods_} {} @@ -18144,16 +20404,20 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_Holida FigureDescriptor_BusinessCalendarDescriptor_Holiday::FigureDescriptor_BusinessCalendarDescriptor_Holiday( ::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_BusinessCalendarDescriptor_Holiday* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.date_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(arena, *from._impl_.date_) - : nullptr; + _impl_.date_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>( + arena, *from._impl_.date_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) } @@ -18178,30 +20442,34 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_Holiday::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.business_periods_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.date_ != nullptr); - _impl_.date_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_BusinessCalendarDescriptor_Holiday::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_BusinessCalendarDescriptor_Holiday::ByteSizeLong, + &FigureDescriptor_BusinessCalendarDescriptor_Holiday::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._cached_size_), + false, + }, + &FigureDescriptor_BusinessCalendarDescriptor_Holiday::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_BusinessCalendarDescriptor_Holiday::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FigureDescriptor_BusinessCalendarDescriptor_Holiday::_table_ = { { @@ -18214,8 +20482,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FigureDescriptor_BusinessCalendarDescr 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; {::_pbi::TcParser::FastMtR1, @@ -18239,73 +20511,107 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FigureDescriptor_BusinessCalendarDescr }}, }; -::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::date(this), - _Internal::date(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_business_periods_size()); i < n; i++) { - const auto& repfield = this->_internal_business_periods().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - return target; -} - -::size_t FigureDescriptor_BusinessCalendarDescriptor_Holiday::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_Holiday::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; - total_size += 1UL * this->_internal_business_periods_size(); - for (const auto& msg : this->_internal_business_periods()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; + _impl_.business_periods_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.date_); + ABSL_DCHECK(_impl_.date_ != nullptr); + _impl_.date_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_BusinessCalendarDescriptor_Holiday::_class_data_ = { - FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_BusinessCalendarDescriptor_Holiday::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_BusinessCalendarDescriptor_Holiday& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_BusinessCalendarDescriptor_Holiday& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.date_, this_._impl_.date_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_business_periods_size()); + i < n; i++) { + const auto& repfield = this_._internal_business_periods().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_BusinessCalendarDescriptor_Holiday::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_BusinessCalendarDescriptor_Holiday& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_BusinessCalendarDescriptor_Holiday::ByteSizeLong() const { + const FigureDescriptor_BusinessCalendarDescriptor_Holiday& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; + { + total_size += 1UL * this_._internal_business_periods_size(); + for (const auto& msg : this_._internal_business_periods()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.date_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -18313,10 +20619,17 @@ void FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl(::google::pr _this->_internal_mutable_business_periods()->MergeFrom( from._internal_business_periods()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_date()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeFrom( - from._internal_date()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.date_ != nullptr); + if (_this->_impl_.date_ == nullptr) { + _this->_impl_.date_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(arena, *from._impl_.date_); + } else { + _this->_impl_.date_->MergeFrom(*from._impl_.date_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -18327,13 +20640,7 @@ void FigureDescriptor_BusinessCalendarDescriptor_Holiday::CopyFrom(const FigureD MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_BusinessCalendarDescriptor_Holiday::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_BusinessCalendarDescriptor_Holiday::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_BusinessCalendarDescriptor_Holiday::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -18343,9 +20650,7 @@ void FigureDescriptor_BusinessCalendarDescriptor_Holiday::InternalSwap(FigureDes } ::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_Holiday::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[53]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -18354,7 +20659,11 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_Internal { }; FigureDescriptor_BusinessCalendarDescriptor_LocalDate::FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) } @@ -18387,26 +20696,34 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::SharedDtor() _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.year_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.day_) - - reinterpret_cast(&_impl_.year_)) + sizeof(_impl_.day_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_BusinessCalendarDescriptor_LocalDate::ByteSizeLong, + &FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_._cached_size_), + false, + }, + &FigureDescriptor_BusinessCalendarDescriptor_LocalDate::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 0, 2> FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_table_ = { { @@ -18419,8 +20736,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 0, 2> FigureDescriptor_BusinessCalendarDescr 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // int32 year = 1; @@ -18450,81 +20771,101 @@ const ::_pbi::TcParseTable<2, 3, 0, 0, 2> FigureDescriptor_BusinessCalendarDescr }}, }; -::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // int32 year = 1; - if (this->_internal_year() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<1>( - stream, this->_internal_year(), target); - } - - // int32 month = 2; - if (this->_internal_month() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_month(), target); - } - - // int32 day = 3; - if (this->_internal_day() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_day(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - return target; -} - -::size_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // int32 year = 1; - if (this->_internal_year() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_year()); - } - - // int32 month = 2; - if (this->_internal_month() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_month()); - } - - // int32 day = 3; - if (this->_internal_day() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_day()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_class_data_ = { - FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.year_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.day_) - + reinterpret_cast(&_impl_.year_)) + sizeof(_impl_.day_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 year = 1; + if (this_._internal_year() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this_._internal_year(), target); + } + + // int32 month = 2; + if (this_._internal_month() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_month(), target); + } + + // int32 day = 3; + if (this_._internal_day() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_day(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::ByteSizeLong() const { + const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // int32 year = 1; + if (this_._internal_year() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_year()); + } + // int32 month = 2; + if (this_._internal_month() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_month()); + } + // int32 day = 3; + if (this_._internal_day() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_day()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) @@ -18533,13 +20874,13 @@ void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl(::google:: (void) cached_has_bits; if (from._internal_year() != 0) { - _this->_internal_set_year(from._internal_year()); + _this->_impl_.year_ = from._impl_.year_; } if (from._internal_month() != 0) { - _this->_internal_set_month(from._internal_month()); + _this->_impl_.month_ = from._impl_.month_; } if (from._internal_day() != 0) { - _this->_internal_set_day(from._internal_day()); + _this->_impl_.day_ = from._impl_.day_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -18551,13 +20892,7 @@ void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::CopyFrom(const Figur MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_BusinessCalendarDescriptor_LocalDate::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_BusinessCalendarDescriptor_LocalDate::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -18570,9 +20905,7 @@ void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::InternalSwap(FigureD } ::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_LocalDate::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[54]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -18581,13 +20914,17 @@ class FigureDescriptor_BusinessCalendarDescriptor::_Internal { }; FigureDescriptor_BusinessCalendarDescriptor::FigureDescriptor_BusinessCalendarDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& from_msg) : business_days_{visibility, arena, from.business_days_}, _business_days_cached_byte_size_{0}, business_periods_{visibility, arena, from.business_periods_}, @@ -18599,12 +20936,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor::Impl_ FigureDescriptor_BusinessCalendarDescriptor::FigureDescriptor_BusinessCalendarDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_BusinessCalendarDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) } @@ -18634,28 +20975,34 @@ inline void FigureDescriptor_BusinessCalendarDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.business_days_.Clear(); - _impl_.business_periods_.Clear(); - _impl_.holidays_.Clear(); - _impl_.name_.ClearToEmpty(); - _impl_.time_zone_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_BusinessCalendarDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_BusinessCalendarDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_BusinessCalendarDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_BusinessCalendarDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_BusinessCalendarDescriptor::ByteSizeLong, + &FigureDescriptor_BusinessCalendarDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_BusinessCalendarDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_BusinessCalendarDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 2, 106, 2> FigureDescriptor_BusinessCalendarDescriptor::_table_ = { { @@ -18668,8 +21015,12 @@ const ::_pbi::TcParseTable<3, 5, 2, 106, 2> FigureDescriptor_BusinessCalendarDes 5, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_BusinessCalendarDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string name = 1; @@ -18718,124 +21069,158 @@ const ::_pbi::TcParseTable<3, 5, 2, 106, 2> FigureDescriptor_BusinessCalendarDes }}, }; -::uint8_t* FigureDescriptor_BusinessCalendarDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string name = 1; - if (!this->_internal_name().empty()) { - const std::string& _s = this->_internal_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string time_zone = 2; - if (!this->_internal_time_zone().empty()) { - const std::string& _s = this->_internal_time_zone(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; - { - std::size_t byte_size = _impl_._business_days_cached_byte_size_.Get(); - if (byte_size > 0) { - target = stream->WriteEnumPacked(3, _internal_business_days(), - byte_size, target); - } - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; - for (unsigned i = 0, - n = static_cast(this->_internal_business_periods_size()); i < n; i++) { - const auto& repfield = this->_internal_business_periods().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(4, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; - for (unsigned i = 0, - n = static_cast(this->_internal_holidays_size()); i < n; i++) { - const auto& repfield = this->_internal_holidays().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(5, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - return target; -} - -::size_t FigureDescriptor_BusinessCalendarDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_BusinessCalendarDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; - { - std::size_t data_size = 0; - auto count = static_cast(this->_internal_business_days_size()); - - for (std::size_t i = 0; i < count; ++i) { - data_size += ::_pbi::WireFormatLite::EnumSize( - this->_internal_business_days().Get(static_cast(i))); - } - total_size += data_size; - if (data_size > 0) { - total_size += 1; - total_size += ::_pbi::WireFormatLite::Int32Size( - static_cast(data_size)); - } - _impl_._business_days_cached_byte_size_.Set(::_pbi::ToCachedSize(data_size)); - } - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; - total_size += 1UL * this->_internal_business_periods_size(); - for (const auto& msg : this->_internal_business_periods()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; - total_size += 1UL * this->_internal_holidays_size(); - for (const auto& msg : this->_internal_holidays()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string name = 1; - if (!this->_internal_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_name()); - } - - // string time_zone = 2; - if (!this->_internal_time_zone().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_time_zone()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_BusinessCalendarDescriptor::_class_data_ = { - FigureDescriptor_BusinessCalendarDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_BusinessCalendarDescriptor::GetClassData() const { - return &_class_data_; + _impl_.business_days_.Clear(); + _impl_.business_periods_.Clear(); + _impl_.holidays_.Clear(); + _impl_.name_.ClearToEmpty(); + _impl_.time_zone_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_BusinessCalendarDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_BusinessCalendarDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_BusinessCalendarDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_BusinessCalendarDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string name = 1; + if (!this_._internal_name().empty()) { + const std::string& _s = this_._internal_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string time_zone = 2; + if (!this_._internal_time_zone().empty()) { + const std::string& _s = this_._internal_time_zone(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; + { + std::size_t byte_size = + this_._impl_._business_days_cached_byte_size_.Get(); + if (byte_size > 0) { + target = stream->WriteEnumPacked( + 3, this_._internal_business_days(), byte_size, target); + } + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; + for (unsigned i = 0, n = static_cast( + this_._internal_business_periods_size()); + i < n; i++) { + const auto& repfield = this_._internal_business_periods().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; + for (unsigned i = 0, n = static_cast( + this_._internal_holidays_size()); + i < n; i++) { + const auto& repfield = this_._internal_holidays().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_BusinessCalendarDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_BusinessCalendarDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_BusinessCalendarDescriptor::ByteSizeLong() const { + const FigureDescriptor_BusinessCalendarDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; + { + std::size_t data_size = 0; + auto count = static_cast(this_._internal_business_days_size()); + + for (std::size_t i = 0; i < count; ++i) { + data_size += ::_pbi::WireFormatLite::EnumSize( + this_._internal_business_days().Get(static_cast(i))); + } + total_size += data_size; + if (data_size > 0) { + total_size += 1; + total_size += ::_pbi::WireFormatLite::Int32Size( + static_cast(data_size)); + } + this_._impl_._business_days_cached_byte_size_.Set(::_pbi::ToCachedSize(data_size)); + } + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; + { + total_size += 1UL * this_._internal_business_periods_size(); + for (const auto& msg : this_._internal_business_periods()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; + { + total_size += 1UL * this_._internal_holidays_size(); + for (const auto& msg : this_._internal_holidays()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string name = 1; + if (!this_._internal_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_name()); + } + // string time_zone = 2; + if (!this_._internal_time_zone().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_time_zone()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_BusinessCalendarDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) @@ -18864,13 +21249,7 @@ void FigureDescriptor_BusinessCalendarDescriptor::CopyFrom(const FigureDescripto MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_BusinessCalendarDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_BusinessCalendarDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_BusinessCalendarDescriptor::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -18884,9 +21263,7 @@ void FigureDescriptor_BusinessCalendarDescriptor::InternalSwap(FigureDescriptor_ } ::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[55]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -18895,13 +21272,17 @@ class FigureDescriptor_MultiSeriesSourceDescriptor::_Internal { }; FigureDescriptor_MultiSeriesSourceDescriptor::FigureDescriptor_MultiSeriesSourceDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_MultiSeriesSourceDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor& from_msg) : axis_id_(arena, from.axis_id_), column_name_(arena, from.column_name_), _cached_size_{0} {} @@ -18909,12 +21290,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_MultiSeriesSourceDescriptor::Impl FigureDescriptor_MultiSeriesSourceDescriptor::FigureDescriptor_MultiSeriesSourceDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_MultiSeriesSourceDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_MultiSeriesSourceDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, type_), reinterpret_cast(&from._impl_) + @@ -18953,28 +21338,34 @@ inline void FigureDescriptor_MultiSeriesSourceDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_MultiSeriesSourceDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.axis_id_.ClearToEmpty(); - _impl_.column_name_.ClearToEmpty(); - ::memset(&_impl_.type_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.partitioned_table_id_) - - reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.partitioned_table_id_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_MultiSeriesSourceDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_MultiSeriesSourceDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_MultiSeriesSourceDescriptor::ByteSizeLong, + &FigureDescriptor_MultiSeriesSourceDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_MultiSeriesSourceDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_MultiSeriesSourceDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 0, 112, 2> FigureDescriptor_MultiSeriesSourceDescriptor::_table_ = { { @@ -18987,8 +21378,12 @@ const ::_pbi::TcParseTable<2, 4, 0, 112, 2> FigureDescriptor_MultiSeriesSourceDe 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column_name = 4; {::_pbi::TcParser::FastUS1, @@ -19027,96 +21422,117 @@ const ::_pbi::TcParseTable<2, 4, 0, 112, 2> FigureDescriptor_MultiSeriesSourceDe }}, }; -::uint8_t* FigureDescriptor_MultiSeriesSourceDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string axis_id = 1; - if (!this->_internal_axis_id().empty()) { - const std::string& _s = this->_internal_axis_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - if (this->_internal_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_type(), target); - } - - // int32 partitioned_table_id = 3; - if (this->_internal_partitioned_table_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_partitioned_table_id(), target); - } - - // string column_name = 4; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - return target; -} - -::size_t FigureDescriptor_MultiSeriesSourceDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_MultiSeriesSourceDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string axis_id = 1; - if (!this->_internal_axis_id().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_axis_id()); - } - - // string column_name = 4; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - if (this->_internal_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); - } - - // int32 partitioned_table_id = 3; - if (this->_internal_partitioned_table_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_partitioned_table_id()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_MultiSeriesSourceDescriptor::_class_data_ = { - FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_MultiSeriesSourceDescriptor::GetClassData() const { - return &_class_data_; + _impl_.axis_id_.ClearToEmpty(); + _impl_.column_name_.ClearToEmpty(); + ::memset(&_impl_.type_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.partitioned_table_id_) - + reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.partitioned_table_id_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_MultiSeriesSourceDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_MultiSeriesSourceDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_MultiSeriesSourceDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_MultiSeriesSourceDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string axis_id = 1; + if (!this_._internal_axis_id().empty()) { + const std::string& _s = this_._internal_axis_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; + if (this_._internal_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_type(), target); + } + + // int32 partitioned_table_id = 3; + if (this_._internal_partitioned_table_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_partitioned_table_id(), target); + } + + // string column_name = 4; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_MultiSeriesSourceDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_MultiSeriesSourceDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_MultiSeriesSourceDescriptor::ByteSizeLong() const { + const FigureDescriptor_MultiSeriesSourceDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string axis_id = 1; + if (!this_._internal_axis_id().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_axis_id()); + } + // string column_name = 4; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; + if (this_._internal_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_type()); + } + // int32 partitioned_table_id = 3; + if (this_._internal_partitioned_table_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_partitioned_table_id()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) @@ -19131,10 +21547,10 @@ void FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl(::google::protobuf: _this->_internal_set_column_name(from._internal_column_name()); } if (from._internal_type() != 0) { - _this->_internal_set_type(from._internal_type()); + _this->_impl_.type_ = from._impl_.type_; } if (from._internal_partitioned_table_id() != 0) { - _this->_internal_set_partitioned_table_id(from._internal_partitioned_table_id()); + _this->_impl_.partitioned_table_id_ = from._impl_.partitioned_table_id_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19146,13 +21562,7 @@ void FigureDescriptor_MultiSeriesSourceDescriptor::CopyFrom(const FigureDescript MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_MultiSeriesSourceDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_MultiSeriesSourceDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_MultiSeriesSourceDescriptor::InternalSwap(FigureDescriptor_MultiSeriesSourceDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -19169,34 +21579,30 @@ void FigureDescriptor_MultiSeriesSourceDescriptor::InternalSwap(FigureDescriptor } ::google::protobuf::Metadata FigureDescriptor_MultiSeriesSourceDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[56]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor_SourceDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& one_click(const FigureDescriptor_SourceDescriptor* msg); - static void set_has_one_click(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& FigureDescriptor_SourceDescriptor::_Internal::one_click(const FigureDescriptor_SourceDescriptor* msg) { - return *msg->_impl_.one_click_; -} FigureDescriptor_SourceDescriptor::FigureDescriptor_SourceDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_SourceDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, axis_id_(arena, from.axis_id_), @@ -19206,16 +21612,20 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_SourceDescriptor::Impl_::Impl_( FigureDescriptor_SourceDescriptor::FigureDescriptor_SourceDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_SourceDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_SourceDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.one_click_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>(arena, *from._impl_.one_click_) - : nullptr; + _impl_.one_click_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>( + arena, *from._impl_.one_click_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, type_), reinterpret_cast(&from._impl_) + @@ -19257,35 +21667,34 @@ inline void FigureDescriptor_SourceDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_SourceDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.axis_id_.ClearToEmpty(); - _impl_.column_name_.ClearToEmpty(); - _impl_.column_type_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.one_click_ != nullptr); - _impl_.one_click_->Clear(); - } - ::memset(&_impl_.type_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.partitioned_table_id_) - - reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.partitioned_table_id_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_SourceDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_SourceDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_SourceDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_SourceDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_SourceDescriptor::ByteSizeLong, + &FigureDescriptor_SourceDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_SourceDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_SourceDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 7, 1, 112, 2> FigureDescriptor_SourceDescriptor::_table_ = { { @@ -19298,8 +21707,12 @@ const ::_pbi::TcParseTable<3, 7, 1, 112, 2> FigureDescriptor_SourceDescriptor::_ 7, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_SourceDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string axis_id = 1; @@ -19358,140 +21771,171 @@ const ::_pbi::TcParseTable<3, 7, 1, 112, 2> FigureDescriptor_SourceDescriptor::_ }}, }; -::uint8_t* FigureDescriptor_SourceDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string axis_id = 1; - if (!this->_internal_axis_id().empty()) { - const std::string& _s = this->_internal_axis_id(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - if (this->_internal_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_type(), target); - } - - // int32 table_id = 3; - if (this->_internal_table_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_table_id(), target); - } - - // int32 partitioned_table_id = 4; - if (this->_internal_partitioned_table_id() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<4>( - stream, this->_internal_partitioned_table_id(), target); - } - - // string column_name = 5; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // string column_type = 6; - if (!this->_internal_column_type().empty()) { - const std::string& _s = this->_internal_column_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type"); - target = stream->WriteStringMaybeAliased(6, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::one_click(this), - _Internal::one_click(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - return target; -} - -::size_t FigureDescriptor_SourceDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_SourceDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string axis_id = 1; - if (!this->_internal_axis_id().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_axis_id()); - } - - // string column_name = 5; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - // string column_type = 6; - if (!this->_internal_column_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_type()); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; + _impl_.axis_id_.ClearToEmpty(); + _impl_.column_name_.ClearToEmpty(); + _impl_.column_type_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.one_click_); - } - - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - if (this->_internal_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); - } - - // int32 table_id = 3; - if (this->_internal_table_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_table_id()); - } - - // int32 partitioned_table_id = 4; - if (this->_internal_partitioned_table_id() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_partitioned_table_id()); + ABSL_DCHECK(_impl_.one_click_ != nullptr); + _impl_.one_click_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_SourceDescriptor::_class_data_ = { - FigureDescriptor_SourceDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_SourceDescriptor::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.type_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.partitioned_table_id_) - + reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.partitioned_table_id_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_SourceDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_SourceDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_SourceDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_SourceDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_SourceDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string axis_id = 1; + if (!this_._internal_axis_id().empty()) { + const std::string& _s = this_._internal_axis_id(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; + if (this_._internal_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_type(), target); + } + + // int32 table_id = 3; + if (this_._internal_table_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_table_id(), target); + } + + // int32 partitioned_table_id = 4; + if (this_._internal_partitioned_table_id() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<4>( + stream, this_._internal_partitioned_table_id(), target); + } + + // string column_name = 5; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // string column_type = 6; + if (!this_._internal_column_type().empty()) { + const std::string& _s = this_._internal_column_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type"); + target = stream->WriteStringMaybeAliased(6, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.one_click_, this_._impl_.one_click_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_SourceDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_SourceDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_SourceDescriptor::ByteSizeLong() const { + const FigureDescriptor_SourceDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string axis_id = 1; + if (!this_._internal_axis_id().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_axis_id()); + } + // string column_name = 5; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + // string column_type = 6; + if (!this_._internal_column_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_type()); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.one_click_); + } + } + { + // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; + if (this_._internal_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_type()); + } + // int32 table_id = 3; + if (this_._internal_table_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_table_id()); + } + // int32 partitioned_table_id = 4; + if (this_._internal_partitioned_table_id() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_partitioned_table_id()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_SourceDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -19506,19 +21950,26 @@ void FigureDescriptor_SourceDescriptor::MergeImpl(::google::protobuf::Message& t if (!from._internal_column_type().empty()) { _this->_internal_set_column_type(from._internal_column_type()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_one_click()->::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor::MergeFrom( - from._internal_one_click()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.one_click_ != nullptr); + if (_this->_impl_.one_click_ == nullptr) { + _this->_impl_.one_click_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>(arena, *from._impl_.one_click_); + } else { + _this->_impl_.one_click_->MergeFrom(*from._impl_.one_click_); + } } if (from._internal_type() != 0) { - _this->_internal_set_type(from._internal_type()); + _this->_impl_.type_ = from._impl_.type_; } if (from._internal_table_id() != 0) { - _this->_internal_set_table_id(from._internal_table_id()); + _this->_impl_.table_id_ = from._impl_.table_id_; } if (from._internal_partitioned_table_id() != 0) { - _this->_internal_set_partitioned_table_id(from._internal_partitioned_table_id()); + _this->_impl_.partitioned_table_id_ = from._impl_.partitioned_table_id_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19529,13 +21980,7 @@ void FigureDescriptor_SourceDescriptor::CopyFrom(const FigureDescriptor_SourceDe MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_SourceDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_SourceDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_SourceDescriptor::InternalSwap(FigureDescriptor_SourceDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -19554,9 +21999,7 @@ void FigureDescriptor_SourceDescriptor::InternalSwap(FigureDescriptor_SourceDesc } ::google::protobuf::Metadata FigureDescriptor_SourceDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[57]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -19565,13 +22008,17 @@ class FigureDescriptor_OneClickDescriptor::_Internal { }; FigureDescriptor_OneClickDescriptor::FigureDescriptor_OneClickDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_OneClickDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& from_msg) : columns_{visibility, arena, from.columns_}, column_types_{visibility, arena, from.column_types_}, _cached_size_{0} {} @@ -19579,12 +22026,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_OneClickDescriptor::Impl_::Impl_( FigureDescriptor_OneClickDescriptor::FigureDescriptor_OneClickDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor_OneClickDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor_OneClickDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.require_all_filters_to_display_ = from._impl_.require_all_filters_to_display_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) @@ -19610,26 +22061,34 @@ inline void FigureDescriptor_OneClickDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor_OneClickDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_.Clear(); - _impl_.column_types_.Clear(); - _impl_.require_all_filters_to_display_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor_OneClickDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor_OneClickDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_OneClickDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor_OneClickDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor_OneClickDescriptor::ByteSizeLong, + &FigureDescriptor_OneClickDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor_OneClickDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor_OneClickDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 104, 2> FigureDescriptor_OneClickDescriptor::_table_ = { { @@ -19642,8 +22101,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 104, 2> FigureDescriptor_OneClickDescriptor: 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FigureDescriptor_OneClickDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // repeated string columns = 1; @@ -19677,82 +22140,112 @@ const ::_pbi::TcParseTable<2, 3, 0, 104, 2> FigureDescriptor_OneClickDescriptor: }}, }; -::uint8_t* FigureDescriptor_OneClickDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated string columns = 1; - for (int i = 0, n = this->_internal_columns_size(); i < n; ++i) { - const auto& s = this->_internal_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns"); - target = stream->WriteString(1, s, target); - } - - // repeated string column_types = 2; - for (int i = 0, n = this->_internal_column_types_size(); i < n; ++i) { - const auto& s = this->_internal_column_types().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types"); - target = stream->WriteString(2, s, target); - } - - // bool require_all_filters_to_display = 3; - if (this->_internal_require_all_filters_to_display() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_require_all_filters_to_display(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - return target; -} - -::size_t FigureDescriptor_OneClickDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor_OneClickDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns().size()); - for (int i = 0, n = _internal_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns().Get(i)); - } - // repeated string column_types = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_column_types().size()); - for (int i = 0, n = _internal_column_types().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_column_types().Get(i)); - } - // bool require_all_filters_to_display = 3; - if (this->_internal_require_all_filters_to_display() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor_OneClickDescriptor::_class_data_ = { - FigureDescriptor_OneClickDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor_OneClickDescriptor::GetClassData() const { - return &_class_data_; + _impl_.columns_.Clear(); + _impl_.column_types_.Clear(); + _impl_.require_all_filters_to_display_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor_OneClickDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor_OneClickDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor_OneClickDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor_OneClickDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor_OneClickDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated string columns = 1; + for (int i = 0, n = this_._internal_columns_size(); i < n; ++i) { + const auto& s = this_._internal_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns"); + target = stream->WriteString(1, s, target); + } + + // repeated string column_types = 2; + for (int i = 0, n = this_._internal_column_types_size(); i < n; ++i) { + const auto& s = this_._internal_column_types().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types"); + target = stream->WriteString(2, s, target); + } + + // bool require_all_filters_to_display = 3; + if (this_._internal_require_all_filters_to_display() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_require_all_filters_to_display(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor_OneClickDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor_OneClickDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor_OneClickDescriptor::ByteSizeLong() const { + const FigureDescriptor_OneClickDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns().size()); + for (int i = 0, n = this_._internal_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns().Get(i)); + } + } + // repeated string column_types = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_column_types().size()); + for (int i = 0, n = this_._internal_column_types().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_types().Get(i)); + } + } + } + { + // bool require_all_filters_to_display = 3; + if (this_._internal_require_all_filters_to_display() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor_OneClickDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) @@ -19763,7 +22256,7 @@ void FigureDescriptor_OneClickDescriptor::MergeImpl(::google::protobuf::Message& _this->_internal_mutable_columns()->MergeFrom(from._internal_columns()); _this->_internal_mutable_column_types()->MergeFrom(from._internal_column_types()); if (from._internal_require_all_filters_to_display() != 0) { - _this->_internal_set_require_all_filters_to_display(from._internal_require_all_filters_to_display()); + _this->_impl_.require_all_filters_to_display_ = from._impl_.require_all_filters_to_display_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19775,13 +22268,7 @@ void FigureDescriptor_OneClickDescriptor::CopyFrom(const FigureDescriptor_OneCli MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor_OneClickDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor_OneClickDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor_OneClickDescriptor::InternalSwap(FigureDescriptor_OneClickDescriptor* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -19791,30 +22278,30 @@ void FigureDescriptor_OneClickDescriptor::InternalSwap(FigureDescriptor_OneClick } ::google::protobuf::Metadata FigureDescriptor_OneClickDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[58]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FigureDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_._has_bits_); - static void set_has_title(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_._has_bits_); }; FigureDescriptor::FigureDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) } inline PROTOBUF_NDEBUG_INLINE FigureDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, charts_{visibility, arena, from.charts_}, @@ -19826,12 +22313,16 @@ inline PROTOBUF_NDEBUG_INLINE FigureDescriptor::Impl_::Impl_( FigureDescriptor::FigureDescriptor( ::google::protobuf::Arena* arena, const FigureDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FigureDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, update_interval_), reinterpret_cast(&from._impl_) + @@ -19874,35 +22365,34 @@ inline void FigureDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FigureDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.charts_.Clear(); - _impl_.errors_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.title_.ClearNonDefaultToEmpty(); - } - _impl_.title_font_.ClearToEmpty(); - _impl_.title_color_.ClearToEmpty(); - ::memset(&_impl_.update_interval_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.rows_) - - reinterpret_cast(&_impl_.update_interval_)) + sizeof(_impl_.rows_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FigureDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FigureDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FigureDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FigureDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FigureDescriptor::ByteSizeLong, + &FigureDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_._cached_size_), + false, + }, + &FigureDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fconsole_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FigureDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 8, 1, 106, 2> FigureDescriptor::_table_ = { { @@ -19915,8 +22405,12 @@ const ::_pbi::TcParseTable<4, 8, 1, 106, 2> FigureDescriptor::_table_ = { 8, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FigureDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // optional string title = 1; @@ -19989,153 +22483,191 @@ const ::_pbi::TcParseTable<4, 8, 1, 106, 2> FigureDescriptor::_table_ = { }}, }; -::uint8_t* FigureDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional string title = 1; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_title(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string title_font = 2; - if (!this->_internal_title_font().empty()) { - const std::string& _s = this->_internal_title_font(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // string title_color = 3; - if (!this->_internal_title_color().empty()) { - const std::string& _s = this->_internal_title_color(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // int64 update_interval = 7 [jstype = JS_STRING]; - if (this->_internal_update_interval() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<7>( - stream, this->_internal_update_interval(), target); - } - - // int32 cols = 8; - if (this->_internal_cols() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<8>( - stream, this->_internal_cols(), target); - } - - // int32 rows = 9; - if (this->_internal_rows() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<9>( - stream, this->_internal_rows(), target); - } - - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; - for (unsigned i = 0, - n = static_cast(this->_internal_charts_size()); i < n; i++) { - const auto& repfield = this->_internal_charts().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(10, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated string errors = 13; - for (int i = 0, n = this->_internal_errors_size(); i < n; ++i) { - const auto& s = this->_internal_errors().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors"); - target = stream->WriteString(13, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - return target; -} - -::size_t FigureDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FigureDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; - total_size += 1UL * this->_internal_charts_size(); - for (const auto& msg : this->_internal_charts()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string errors = 13; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_errors().size()); - for (int i = 0, n = _internal_errors().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_errors().Get(i)); - } - // optional string title = 1; + _impl_.charts_.Clear(); + _impl_.errors_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title()); - } - - // string title_font = 2; - if (!this->_internal_title_font().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title_font()); - } - - // string title_color = 3; - if (!this->_internal_title_color().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_title_color()); - } - - // int64 update_interval = 7 [jstype = JS_STRING]; - if (this->_internal_update_interval() != 0) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_update_interval()); - } - - // int32 cols = 8; - if (this->_internal_cols() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_cols()); - } - - // int32 rows = 9; - if (this->_internal_rows() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_rows()); + _impl_.title_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FigureDescriptor::_class_data_ = { - FigureDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FigureDescriptor::GetClassData() const { - return &_class_data_; + _impl_.title_font_.ClearToEmpty(); + _impl_.title_color_.ClearToEmpty(); + ::memset(&_impl_.update_interval_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.rows_) - + reinterpret_cast(&_impl_.update_interval_)) + sizeof(_impl_.rows_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FigureDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FigureDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FigureDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FigureDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FigureDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string title = 1; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_title(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string title_font = 2; + if (!this_._internal_title_font().empty()) { + const std::string& _s = this_._internal_title_font(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // string title_color = 3; + if (!this_._internal_title_color().empty()) { + const std::string& _s = this_._internal_title_color(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // int64 update_interval = 7 [jstype = JS_STRING]; + if (this_._internal_update_interval() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<7>( + stream, this_._internal_update_interval(), target); + } + + // int32 cols = 8; + if (this_._internal_cols() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<8>( + stream, this_._internal_cols(), target); + } + + // int32 rows = 9; + if (this_._internal_rows() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<9>( + stream, this_._internal_rows(), target); + } + + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; + for (unsigned i = 0, n = static_cast( + this_._internal_charts_size()); + i < n; i++) { + const auto& repfield = this_._internal_charts().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated string errors = 13; + for (int i = 0, n = this_._internal_errors_size(); i < n; ++i) { + const auto& s = this_._internal_errors().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors"); + target = stream->WriteString(13, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FigureDescriptor::ByteSizeLong(const MessageLite& base) { + const FigureDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FigureDescriptor::ByteSizeLong() const { + const FigureDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; + { + total_size += 1UL * this_._internal_charts_size(); + for (const auto& msg : this_._internal_charts()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string errors = 13; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_errors().size()); + for (int i = 0, n = this_._internal_errors().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_errors().Get(i)); + } + } + } + { + // optional string title = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title()); + } + } + { + // string title_font = 2; + if (!this_._internal_title_font().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title_font()); + } + // string title_color = 3; + if (!this_._internal_title_color().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_title_color()); + } + // int64 update_interval = 7 [jstype = JS_STRING]; + if (this_._internal_update_interval() != 0) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_update_interval()); + } + // int32 cols = 8; + if (this_._internal_cols() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_cols()); + } + // int32 rows = 9; + if (this_._internal_rows() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_rows()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FigureDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) @@ -20146,7 +22678,8 @@ void FigureDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::go _this->_internal_mutable_charts()->MergeFrom( from._internal_charts()); _this->_internal_mutable_errors()->MergeFrom(from._internal_errors()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_title(from._internal_title()); } if (!from._internal_title_font().empty()) { @@ -20156,14 +22689,15 @@ void FigureDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::go _this->_internal_set_title_color(from._internal_title_color()); } if (from._internal_update_interval() != 0) { - _this->_internal_set_update_interval(from._internal_update_interval()); + _this->_impl_.update_interval_ = from._impl_.update_interval_; } if (from._internal_cols() != 0) { - _this->_internal_set_cols(from._internal_cols()); + _this->_impl_.cols_ = from._impl_.cols_; } if (from._internal_rows() != 0) { - _this->_internal_set_rows(from._internal_rows()); + _this->_impl_.rows_ = from._impl_.rows_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -20174,13 +22708,7 @@ void FigureDescriptor::CopyFrom(const FigureDescriptor& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FigureDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FigureDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FigureDescriptor::InternalSwap(FigureDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -20201,9 +22729,7 @@ void FigureDescriptor::InternalSwap(FigureDescriptor* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata FigureDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_getter, &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - file_level_metadata_deephaven_2fproto_2fconsole_2eproto[59]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -20217,4 +22743,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.h index 1a8ae0328a1..7478199fbb4 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/console.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconsole_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconsole_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -613,21 +607,18 @@ inline bool FigureDescriptor_SourceType_Parse(absl::string_view name, FigureDesc // ------------------------------------------------------------------- -class VersionedTextDocumentIdentifier final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) */ { +class VersionedTextDocumentIdentifier final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) */ { public: inline VersionedTextDocumentIdentifier() : VersionedTextDocumentIdentifier(nullptr) {} - ~VersionedTextDocumentIdentifier() override; - template - explicit PROTOBUF_CONSTEXPR VersionedTextDocumentIdentifier(::google::protobuf::internal::ConstantInitialized); - - inline VersionedTextDocumentIdentifier(const VersionedTextDocumentIdentifier& from) - : VersionedTextDocumentIdentifier(nullptr, from) {} - VersionedTextDocumentIdentifier(VersionedTextDocumentIdentifier&& from) noexcept - : VersionedTextDocumentIdentifier() { - *this = ::std::move(from); - } - + ~VersionedTextDocumentIdentifier() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR VersionedTextDocumentIdentifier( + ::google::protobuf::internal::ConstantInitialized); + + inline VersionedTextDocumentIdentifier(const VersionedTextDocumentIdentifier& from) : VersionedTextDocumentIdentifier(nullptr, from) {} + inline VersionedTextDocumentIdentifier(VersionedTextDocumentIdentifier&& from) noexcept + : VersionedTextDocumentIdentifier(nullptr, std::move(from)) {} inline VersionedTextDocumentIdentifier& operator=(const VersionedTextDocumentIdentifier& from) { CopyFrom(from); return *this; @@ -635,9 +626,9 @@ class VersionedTextDocumentIdentifier final : inline VersionedTextDocumentIdentifier& operator=(VersionedTextDocumentIdentifier&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -669,22 +660,17 @@ class VersionedTextDocumentIdentifier final : } static inline const VersionedTextDocumentIdentifier* internal_default_instance() { return reinterpret_cast( - &_VersionedTextDocumentIdentifier_default_instance_); - } - static constexpr int kIndexInFileMessages = - 25; - - friend void swap(VersionedTextDocumentIdentifier& a, VersionedTextDocumentIdentifier& b) { - a.Swap(&b); + &_VersionedTextDocumentIdentifier_default_instance_); } + static constexpr int kIndexInFileMessages = 25; + friend void swap(VersionedTextDocumentIdentifier& a, VersionedTextDocumentIdentifier& b) { a.Swap(&b); } inline void Swap(VersionedTextDocumentIdentifier* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -698,52 +684,69 @@ class VersionedTextDocumentIdentifier final : // implements Message ---------------------------------------------- - VersionedTextDocumentIdentifier* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + VersionedTextDocumentIdentifier* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const VersionedTextDocumentIdentifier& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const VersionedTextDocumentIdentifier& from) { - VersionedTextDocumentIdentifier::MergeImpl(*this, from); - } + void MergeFrom(const VersionedTextDocumentIdentifier& from) { VersionedTextDocumentIdentifier::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(VersionedTextDocumentIdentifier* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier"; } + + protected: explicit VersionedTextDocumentIdentifier(::google::protobuf::Arena* arena); VersionedTextDocumentIdentifier(::google::protobuf::Arena* arena, const VersionedTextDocumentIdentifier& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + VersionedTextDocumentIdentifier(::google::protobuf::Arena* arena, VersionedTextDocumentIdentifier&& from) noexcept + : VersionedTextDocumentIdentifier(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kUriFieldNumber = 1, kVersionFieldNumber = 2, @@ -777,12 +780,15 @@ class VersionedTextDocumentIdentifier final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 84, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_VersionedTextDocumentIdentifier_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -790,13 +796,13 @@ class VersionedTextDocumentIdentifier final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const VersionedTextDocumentIdentifier& from_msg); ::google::protobuf::internal::ArenaStringPtr uri_; ::int32_t version_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -804,23 +810,21 @@ class VersionedTextDocumentIdentifier final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TextDocumentItem final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) */ { +class TextDocumentItem final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) */ { public: inline TextDocumentItem() : TextDocumentItem(nullptr) {} - ~TextDocumentItem() override; - template - explicit PROTOBUF_CONSTEXPR TextDocumentItem(::google::protobuf::internal::ConstantInitialized); - - inline TextDocumentItem(const TextDocumentItem& from) - : TextDocumentItem(nullptr, from) {} - TextDocumentItem(TextDocumentItem&& from) noexcept - : TextDocumentItem() { - *this = ::std::move(from); - } - + ~TextDocumentItem() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TextDocumentItem( + ::google::protobuf::internal::ConstantInitialized); + + inline TextDocumentItem(const TextDocumentItem& from) : TextDocumentItem(nullptr, from) {} + inline TextDocumentItem(TextDocumentItem&& from) noexcept + : TextDocumentItem(nullptr, std::move(from)) {} inline TextDocumentItem& operator=(const TextDocumentItem& from) { CopyFrom(from); return *this; @@ -828,9 +832,9 @@ class TextDocumentItem final : inline TextDocumentItem& operator=(TextDocumentItem&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -862,22 +866,17 @@ class TextDocumentItem final : } static inline const TextDocumentItem* internal_default_instance() { return reinterpret_cast( - &_TextDocumentItem_default_instance_); - } - static constexpr int kIndexInFileMessages = - 20; - - friend void swap(TextDocumentItem& a, TextDocumentItem& b) { - a.Swap(&b); + &_TextDocumentItem_default_instance_); } + static constexpr int kIndexInFileMessages = 20; + friend void swap(TextDocumentItem& a, TextDocumentItem& b) { a.Swap(&b); } inline void Swap(TextDocumentItem* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -891,52 +890,69 @@ class TextDocumentItem final : // implements Message ---------------------------------------------- - TextDocumentItem* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TextDocumentItem* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TextDocumentItem& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TextDocumentItem& from) { - TextDocumentItem::MergeImpl(*this, from); - } + void MergeFrom(const TextDocumentItem& from) { TextDocumentItem::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TextDocumentItem* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.TextDocumentItem"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.TextDocumentItem"; } + + protected: explicit TextDocumentItem(::google::protobuf::Arena* arena); TextDocumentItem(::google::protobuf::Arena* arena, const TextDocumentItem& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TextDocumentItem(::google::protobuf::Arena* arena, TextDocumentItem&& from) noexcept + : TextDocumentItem(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kUriFieldNumber = 1, kLanguageIdFieldNumber = 2, @@ -1004,12 +1020,15 @@ class TextDocumentItem final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, 84, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TextDocumentItem_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1017,13 +1036,13 @@ class TextDocumentItem final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TextDocumentItem& from_msg); ::google::protobuf::internal::ArenaStringPtr uri_; ::google::protobuf::internal::ArenaStringPtr language_id_; ::google::protobuf::internal::ArenaStringPtr text_; @@ -1033,23 +1052,21 @@ class TextDocumentItem final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Position final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Position) */ { +class Position final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Position) */ { public: inline Position() : Position(nullptr) {} - ~Position() override; - template - explicit PROTOBUF_CONSTEXPR Position(::google::protobuf::internal::ConstantInitialized); - - inline Position(const Position& from) - : Position(nullptr, from) {} - Position(Position&& from) noexcept - : Position() { - *this = ::std::move(from); - } - + ~Position() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Position( + ::google::protobuf::internal::ConstantInitialized); + + inline Position(const Position& from) : Position(nullptr, from) {} + inline Position(Position&& from) noexcept + : Position(nullptr, std::move(from)) {} inline Position& operator=(const Position& from) { CopyFrom(from); return *this; @@ -1057,9 +1074,9 @@ class Position final : inline Position& operator=(Position&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1091,22 +1108,17 @@ class Position final : } static inline const Position* internal_default_instance() { return reinterpret_cast( - &_Position_default_instance_); - } - static constexpr int kIndexInFileMessages = - 26; - - friend void swap(Position& a, Position& b) { - a.Swap(&b); + &_Position_default_instance_); } + static constexpr int kIndexInFileMessages = 26; + friend void swap(Position& a, Position& b) { a.Swap(&b); } inline void Swap(Position* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1120,52 +1132,69 @@ class Position final : // implements Message ---------------------------------------------- - Position* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Position* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Position& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Position& from) { - Position::MergeImpl(*this, from); - } + void MergeFrom(const Position& from) { Position::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Position* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.Position"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.Position"; } + + protected: explicit Position(::google::protobuf::Arena* arena); Position(::google::protobuf::Arena* arena, const Position& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Position(::google::protobuf::Arena* arena, Position&& from) noexcept + : Position(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kLineFieldNumber = 1, kCharacterFieldNumber = 2, @@ -1193,12 +1222,15 @@ class Position final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.Position) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Position_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1206,13 +1238,13 @@ class Position final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Position& from_msg); ::int32_t line_; ::int32_t character_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1220,23 +1252,21 @@ class Position final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MarkupContent final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.MarkupContent) */ { +class MarkupContent final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.MarkupContent) */ { public: inline MarkupContent() : MarkupContent(nullptr) {} - ~MarkupContent() override; - template - explicit PROTOBUF_CONSTEXPR MarkupContent(::google::protobuf::internal::ConstantInitialized); - - inline MarkupContent(const MarkupContent& from) - : MarkupContent(nullptr, from) {} - MarkupContent(MarkupContent&& from) noexcept - : MarkupContent() { - *this = ::std::move(from); - } - + ~MarkupContent() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MarkupContent( + ::google::protobuf::internal::ConstantInitialized); + + inline MarkupContent(const MarkupContent& from) : MarkupContent(nullptr, from) {} + inline MarkupContent(MarkupContent&& from) noexcept + : MarkupContent(nullptr, std::move(from)) {} inline MarkupContent& operator=(const MarkupContent& from) { CopyFrom(from); return *this; @@ -1244,9 +1274,9 @@ class MarkupContent final : inline MarkupContent& operator=(MarkupContent&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1278,22 +1308,17 @@ class MarkupContent final : } static inline const MarkupContent* internal_default_instance() { return reinterpret_cast( - &_MarkupContent_default_instance_); - } - static constexpr int kIndexInFileMessages = - 27; - - friend void swap(MarkupContent& a, MarkupContent& b) { - a.Swap(&b); + &_MarkupContent_default_instance_); } + static constexpr int kIndexInFileMessages = 27; + friend void swap(MarkupContent& a, MarkupContent& b) { a.Swap(&b); } inline void Swap(MarkupContent* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1307,52 +1332,69 @@ class MarkupContent final : // implements Message ---------------------------------------------- - MarkupContent* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MarkupContent* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MarkupContent& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MarkupContent& from) { - MarkupContent::MergeImpl(*this, from); - } + void MergeFrom(const MarkupContent& from) { MarkupContent::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MarkupContent* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.MarkupContent"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.MarkupContent"; } + + protected: explicit MarkupContent(::google::protobuf::Arena* arena); MarkupContent(::google::protobuf::Arena* arena, const MarkupContent& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MarkupContent(::google::protobuf::Arena* arena, MarkupContent&& from) noexcept + : MarkupContent(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKindFieldNumber = 1, kValueFieldNumber = 2, @@ -1392,12 +1434,15 @@ class MarkupContent final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.MarkupContent) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 72, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MarkupContent_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1405,13 +1450,13 @@ class MarkupContent final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MarkupContent& from_msg); ::google::protobuf::internal::ArenaStringPtr kind_; ::google::protobuf::internal::ArenaStringPtr value_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1419,23 +1464,21 @@ class MarkupContent final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class LogSubscriptionRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) */ { +class LogSubscriptionRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) */ { public: inline LogSubscriptionRequest() : LogSubscriptionRequest(nullptr) {} - ~LogSubscriptionRequest() override; - template - explicit PROTOBUF_CONSTEXPR LogSubscriptionRequest(::google::protobuf::internal::ConstantInitialized); - - inline LogSubscriptionRequest(const LogSubscriptionRequest& from) - : LogSubscriptionRequest(nullptr, from) {} - LogSubscriptionRequest(LogSubscriptionRequest&& from) noexcept - : LogSubscriptionRequest() { - *this = ::std::move(from); - } - + ~LogSubscriptionRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR LogSubscriptionRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline LogSubscriptionRequest(const LogSubscriptionRequest& from) : LogSubscriptionRequest(nullptr, from) {} + inline LogSubscriptionRequest(LogSubscriptionRequest&& from) noexcept + : LogSubscriptionRequest(nullptr, std::move(from)) {} inline LogSubscriptionRequest& operator=(const LogSubscriptionRequest& from) { CopyFrom(from); return *this; @@ -1443,9 +1486,9 @@ class LogSubscriptionRequest final : inline LogSubscriptionRequest& operator=(LogSubscriptionRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1477,22 +1520,17 @@ class LogSubscriptionRequest final : } static inline const LogSubscriptionRequest* internal_default_instance() { return reinterpret_cast( - &_LogSubscriptionRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(LogSubscriptionRequest& a, LogSubscriptionRequest& b) { - a.Swap(&b); + &_LogSubscriptionRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(LogSubscriptionRequest& a, LogSubscriptionRequest& b) { a.Swap(&b); } inline void Swap(LogSubscriptionRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1506,52 +1544,69 @@ class LogSubscriptionRequest final : // implements Message ---------------------------------------------- - LogSubscriptionRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + LogSubscriptionRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const LogSubscriptionRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const LogSubscriptionRequest& from) { - LogSubscriptionRequest::MergeImpl(*this, from); - } + void MergeFrom(const LogSubscriptionRequest& from) { LogSubscriptionRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(LogSubscriptionRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest"; } + + protected: explicit LogSubscriptionRequest(::google::protobuf::Arena* arena); LogSubscriptionRequest(::google::protobuf::Arena* arena, const LogSubscriptionRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + LogSubscriptionRequest(::google::protobuf::Arena* arena, LogSubscriptionRequest&& from) noexcept + : LogSubscriptionRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kLevelsFieldNumber = 2, kLastSeenLogTimestampFieldNumber = 1, @@ -1565,17 +1620,11 @@ class LogSubscriptionRequest final : void clear_levels() ; const std::string& levels(int index) const; std::string* mutable_levels(int index); - void set_levels(int index, const std::string& value); - void set_levels(int index, std::string&& value); - void set_levels(int index, const char* value); - void set_levels(int index, const char* value, std::size_t size); - void set_levels(int index, absl::string_view value); + template + void set_levels(int index, Arg_&& value, Args_... args); std::string* add_levels(); - void add_levels(const std::string& value); - void add_levels(std::string&& value); - void add_levels(const char* value); - void add_levels(const char* value, std::size_t size); - void add_levels(absl::string_view value); + template + void add_levels(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& levels() const; ::google::protobuf::RepeatedPtrField* mutable_levels(); @@ -1597,12 +1646,15 @@ class LogSubscriptionRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 78, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_LogSubscriptionRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1610,13 +1662,13 @@ class LogSubscriptionRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const LogSubscriptionRequest& from_msg); ::google::protobuf::RepeatedPtrField levels_; ::int64_t last_seen_log_timestamp_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1624,23 +1676,21 @@ class LogSubscriptionRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class LogSubscriptionData final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) */ { +class LogSubscriptionData final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) */ { public: inline LogSubscriptionData() : LogSubscriptionData(nullptr) {} - ~LogSubscriptionData() override; - template - explicit PROTOBUF_CONSTEXPR LogSubscriptionData(::google::protobuf::internal::ConstantInitialized); - - inline LogSubscriptionData(const LogSubscriptionData& from) - : LogSubscriptionData(nullptr, from) {} - LogSubscriptionData(LogSubscriptionData&& from) noexcept - : LogSubscriptionData() { - *this = ::std::move(from); - } - + ~LogSubscriptionData() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR LogSubscriptionData( + ::google::protobuf::internal::ConstantInitialized); + + inline LogSubscriptionData(const LogSubscriptionData& from) : LogSubscriptionData(nullptr, from) {} + inline LogSubscriptionData(LogSubscriptionData&& from) noexcept + : LogSubscriptionData(nullptr, std::move(from)) {} inline LogSubscriptionData& operator=(const LogSubscriptionData& from) { CopyFrom(from); return *this; @@ -1648,9 +1698,9 @@ class LogSubscriptionData final : inline LogSubscriptionData& operator=(LogSubscriptionData&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1682,22 +1732,17 @@ class LogSubscriptionData final : } static inline const LogSubscriptionData* internal_default_instance() { return reinterpret_cast( - &_LogSubscriptionData_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(LogSubscriptionData& a, LogSubscriptionData& b) { - a.Swap(&b); + &_LogSubscriptionData_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(LogSubscriptionData& a, LogSubscriptionData& b) { a.Swap(&b); } inline void Swap(LogSubscriptionData* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1711,52 +1756,69 @@ class LogSubscriptionData final : // implements Message ---------------------------------------------- - LogSubscriptionData* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + LogSubscriptionData* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const LogSubscriptionData& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const LogSubscriptionData& from) { - LogSubscriptionData::MergeImpl(*this, from); - } + void MergeFrom(const LogSubscriptionData& from) { LogSubscriptionData::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(LogSubscriptionData* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData"; } + + protected: explicit LogSubscriptionData(::google::protobuf::Arena* arena); LogSubscriptionData(::google::protobuf::Arena* arena, const LogSubscriptionData& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + LogSubscriptionData(::google::protobuf::Arena* arena, LogSubscriptionData&& from) noexcept + : LogSubscriptionData(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kLogLevelFieldNumber = 2, kMessageFieldNumber = 3, @@ -1807,12 +1869,15 @@ class LogSubscriptionData final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 85, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_LogSubscriptionData_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1820,13 +1885,13 @@ class LogSubscriptionData final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const LogSubscriptionData& from_msg); ::google::protobuf::internal::ArenaStringPtr log_level_; ::google::protobuf::internal::ArenaStringPtr message_; ::int64_t micros_; @@ -1835,23 +1900,21 @@ class LogSubscriptionData final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetHeapInfoResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) */ { +class GetHeapInfoResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) */ { public: inline GetHeapInfoResponse() : GetHeapInfoResponse(nullptr) {} - ~GetHeapInfoResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetHeapInfoResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetHeapInfoResponse(const GetHeapInfoResponse& from) - : GetHeapInfoResponse(nullptr, from) {} - GetHeapInfoResponse(GetHeapInfoResponse&& from) noexcept - : GetHeapInfoResponse() { - *this = ::std::move(from); - } - + ~GetHeapInfoResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetHeapInfoResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetHeapInfoResponse(const GetHeapInfoResponse& from) : GetHeapInfoResponse(nullptr, from) {} + inline GetHeapInfoResponse(GetHeapInfoResponse&& from) noexcept + : GetHeapInfoResponse(nullptr, std::move(from)) {} inline GetHeapInfoResponse& operator=(const GetHeapInfoResponse& from) { CopyFrom(from); return *this; @@ -1859,9 +1922,9 @@ class GetHeapInfoResponse final : inline GetHeapInfoResponse& operator=(GetHeapInfoResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1893,22 +1956,17 @@ class GetHeapInfoResponse final : } static inline const GetHeapInfoResponse* internal_default_instance() { return reinterpret_cast( - &_GetHeapInfoResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(GetHeapInfoResponse& a, GetHeapInfoResponse& b) { - a.Swap(&b); + &_GetHeapInfoResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(GetHeapInfoResponse& a, GetHeapInfoResponse& b) { a.Swap(&b); } inline void Swap(GetHeapInfoResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1922,52 +1980,69 @@ class GetHeapInfoResponse final : // implements Message ---------------------------------------------- - GetHeapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetHeapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetHeapInfoResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetHeapInfoResponse& from) { - GetHeapInfoResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetHeapInfoResponse& from) { GetHeapInfoResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetHeapInfoResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse"; } + + protected: explicit GetHeapInfoResponse(::google::protobuf::Arena* arena); GetHeapInfoResponse(::google::protobuf::Arena* arena, const GetHeapInfoResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetHeapInfoResponse(::google::protobuf::Arena* arena, GetHeapInfoResponse&& from) noexcept + : GetHeapInfoResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMaxMemoryFieldNumber = 1, kTotalMemoryFieldNumber = 2, @@ -2006,12 +2081,15 @@ class GetHeapInfoResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetHeapInfoResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2019,13 +2097,13 @@ class GetHeapInfoResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetHeapInfoResponse& from_msg); ::int64_t max_memory_; ::int64_t total_memory_; ::int64_t free_memory_; @@ -2034,22 +2112,20 @@ class GetHeapInfoResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetHeapInfoRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest) */ { +class GetHeapInfoRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest) */ { public: inline GetHeapInfoRequest() : GetHeapInfoRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR GetHeapInfoRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetHeapInfoRequest(const GetHeapInfoRequest& from) - : GetHeapInfoRequest(nullptr, from) {} - GetHeapInfoRequest(GetHeapInfoRequest&& from) noexcept - : GetHeapInfoRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR GetHeapInfoRequest( + ::google::protobuf::internal::ConstantInitialized); + inline GetHeapInfoRequest(const GetHeapInfoRequest& from) : GetHeapInfoRequest(nullptr, from) {} + inline GetHeapInfoRequest(GetHeapInfoRequest&& from) noexcept + : GetHeapInfoRequest(nullptr, std::move(from)) {} inline GetHeapInfoRequest& operator=(const GetHeapInfoRequest& from) { CopyFrom(from); return *this; @@ -2057,9 +2133,9 @@ class GetHeapInfoRequest final : inline GetHeapInfoRequest& operator=(GetHeapInfoRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2091,22 +2167,17 @@ class GetHeapInfoRequest final : } static inline const GetHeapInfoRequest* internal_default_instance() { return reinterpret_cast( - &_GetHeapInfoRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(GetHeapInfoRequest& a, GetHeapInfoRequest& b) { - a.Swap(&b); + &_GetHeapInfoRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(GetHeapInfoRequest& a, GetHeapInfoRequest& b) { a.Swap(&b); } inline void Swap(GetHeapInfoRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2120,8 +2191,8 @@ class GetHeapInfoRequest final : // implements Message ---------------------------------------------- - GetHeapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetHeapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const GetHeapInfoRequest& from) { @@ -2131,27 +2202,41 @@ class GetHeapInfoRequest final : void MergeFrom(const GetHeapInfoRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest"; } + + protected: explicit GetHeapInfoRequest(::google::protobuf::Arena* arena); GetHeapInfoRequest(::google::protobuf::Arena* arena, const GetHeapInfoRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + GetHeapInfoRequest(::google::protobuf::Arena* arena, GetHeapInfoRequest&& from) noexcept + : GetHeapInfoRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetHeapInfoRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetHeapInfoRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2160,33 +2245,31 @@ class GetHeapInfoRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetHeapInfoRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetConsoleTypesResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) */ { +class GetConsoleTypesResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) */ { public: inline GetConsoleTypesResponse() : GetConsoleTypesResponse(nullptr) {} - ~GetConsoleTypesResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetConsoleTypesResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetConsoleTypesResponse(const GetConsoleTypesResponse& from) - : GetConsoleTypesResponse(nullptr, from) {} - GetConsoleTypesResponse(GetConsoleTypesResponse&& from) noexcept - : GetConsoleTypesResponse() { - *this = ::std::move(from); - } - + ~GetConsoleTypesResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetConsoleTypesResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetConsoleTypesResponse(const GetConsoleTypesResponse& from) : GetConsoleTypesResponse(nullptr, from) {} + inline GetConsoleTypesResponse(GetConsoleTypesResponse&& from) noexcept + : GetConsoleTypesResponse(nullptr, std::move(from)) {} inline GetConsoleTypesResponse& operator=(const GetConsoleTypesResponse& from) { CopyFrom(from); return *this; @@ -2194,9 +2277,9 @@ class GetConsoleTypesResponse final : inline GetConsoleTypesResponse& operator=(GetConsoleTypesResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2228,22 +2311,17 @@ class GetConsoleTypesResponse final : } static inline const GetConsoleTypesResponse* internal_default_instance() { return reinterpret_cast( - &_GetConsoleTypesResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(GetConsoleTypesResponse& a, GetConsoleTypesResponse& b) { - a.Swap(&b); + &_GetConsoleTypesResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(GetConsoleTypesResponse& a, GetConsoleTypesResponse& b) { a.Swap(&b); } inline void Swap(GetConsoleTypesResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2257,52 +2335,69 @@ class GetConsoleTypesResponse final : // implements Message ---------------------------------------------- - GetConsoleTypesResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetConsoleTypesResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetConsoleTypesResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetConsoleTypesResponse& from) { - GetConsoleTypesResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetConsoleTypesResponse& from) { GetConsoleTypesResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); - public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); - ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; + public: + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE + ::size_t ByteSizeLong() const final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetConsoleTypesResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse"; } + + protected: explicit GetConsoleTypesResponse(::google::protobuf::Arena* arena); GetConsoleTypesResponse(::google::protobuf::Arena* arena, const GetConsoleTypesResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetConsoleTypesResponse(::google::protobuf::Arena* arena, GetConsoleTypesResponse&& from) noexcept + : GetConsoleTypesResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleTypesFieldNumber = 1, }; @@ -2315,17 +2410,11 @@ class GetConsoleTypesResponse final : void clear_console_types() ; const std::string& console_types(int index) const; std::string* mutable_console_types(int index); - void set_console_types(int index, const std::string& value); - void set_console_types(int index, std::string&& value); - void set_console_types(int index, const char* value); - void set_console_types(int index, const char* value, std::size_t size); - void set_console_types(int index, absl::string_view value); + template + void set_console_types(int index, Arg_&& value, Args_... args); std::string* add_console_types(); - void add_console_types(const std::string& value); - void add_console_types(std::string&& value); - void add_console_types(const char* value); - void add_console_types(const char* value, std::size_t size); - void add_console_types(absl::string_view value); + template + void add_console_types(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& console_types() const; ::google::protobuf::RepeatedPtrField* mutable_console_types(); @@ -2337,12 +2426,15 @@ class GetConsoleTypesResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 86, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetConsoleTypesResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2350,35 +2442,33 @@ class GetConsoleTypesResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetConsoleTypesResponse& from_msg); ::google::protobuf::RepeatedPtrField console_types_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetConsoleTypesRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest) */ { +class GetConsoleTypesRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest) */ { public: inline GetConsoleTypesRequest() : GetConsoleTypesRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR GetConsoleTypesRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetConsoleTypesRequest(const GetConsoleTypesRequest& from) - : GetConsoleTypesRequest(nullptr, from) {} - GetConsoleTypesRequest(GetConsoleTypesRequest&& from) noexcept - : GetConsoleTypesRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR GetConsoleTypesRequest( + ::google::protobuf::internal::ConstantInitialized); + inline GetConsoleTypesRequest(const GetConsoleTypesRequest& from) : GetConsoleTypesRequest(nullptr, from) {} + inline GetConsoleTypesRequest(GetConsoleTypesRequest&& from) noexcept + : GetConsoleTypesRequest(nullptr, std::move(from)) {} inline GetConsoleTypesRequest& operator=(const GetConsoleTypesRequest& from) { CopyFrom(from); return *this; @@ -2386,9 +2476,9 @@ class GetConsoleTypesRequest final : inline GetConsoleTypesRequest& operator=(GetConsoleTypesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2420,22 +2510,17 @@ class GetConsoleTypesRequest final : } static inline const GetConsoleTypesRequest* internal_default_instance() { return reinterpret_cast( - &_GetConsoleTypesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(GetConsoleTypesRequest& a, GetConsoleTypesRequest& b) { - a.Swap(&b); + &_GetConsoleTypesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(GetConsoleTypesRequest& a, GetConsoleTypesRequest& b) { a.Swap(&b); } inline void Swap(GetConsoleTypesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2449,8 +2534,8 @@ class GetConsoleTypesRequest final : // implements Message ---------------------------------------------- - GetConsoleTypesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetConsoleTypesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const GetConsoleTypesRequest& from) { @@ -2460,27 +2545,41 @@ class GetConsoleTypesRequest final : void MergeFrom(const GetConsoleTypesRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest"; } + + protected: explicit GetConsoleTypesRequest(::google::protobuf::Arena* arena); GetConsoleTypesRequest(::google::protobuf::Arena* arena, const GetConsoleTypesRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + GetConsoleTypesRequest(::google::protobuf::Arena* arena, GetConsoleTypesRequest&& from) noexcept + : GetConsoleTypesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetConsoleTypesRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2489,33 +2588,31 @@ class GetConsoleTypesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetConsoleTypesRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_StringMapWithDefault final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) */ { +class FigureDescriptor_StringMapWithDefault final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) */ { public: inline FigureDescriptor_StringMapWithDefault() : FigureDescriptor_StringMapWithDefault(nullptr) {} - ~FigureDescriptor_StringMapWithDefault() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_StringMapWithDefault(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_StringMapWithDefault(const FigureDescriptor_StringMapWithDefault& from) - : FigureDescriptor_StringMapWithDefault(nullptr, from) {} - FigureDescriptor_StringMapWithDefault(FigureDescriptor_StringMapWithDefault&& from) noexcept - : FigureDescriptor_StringMapWithDefault() { - *this = ::std::move(from); - } - + ~FigureDescriptor_StringMapWithDefault() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_StringMapWithDefault( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_StringMapWithDefault(const FigureDescriptor_StringMapWithDefault& from) : FigureDescriptor_StringMapWithDefault(nullptr, from) {} + inline FigureDescriptor_StringMapWithDefault(FigureDescriptor_StringMapWithDefault&& from) noexcept + : FigureDescriptor_StringMapWithDefault(nullptr, std::move(from)) {} inline FigureDescriptor_StringMapWithDefault& operator=(const FigureDescriptor_StringMapWithDefault& from) { CopyFrom(from); return *this; @@ -2523,9 +2620,9 @@ class FigureDescriptor_StringMapWithDefault final : inline FigureDescriptor_StringMapWithDefault& operator=(FigureDescriptor_StringMapWithDefault&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2557,22 +2654,17 @@ class FigureDescriptor_StringMapWithDefault final : } static inline const FigureDescriptor_StringMapWithDefault* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_StringMapWithDefault_default_instance_); - } - static constexpr int kIndexInFileMessages = - 48; - - friend void swap(FigureDescriptor_StringMapWithDefault& a, FigureDescriptor_StringMapWithDefault& b) { - a.Swap(&b); + &_FigureDescriptor_StringMapWithDefault_default_instance_); } + static constexpr int kIndexInFileMessages = 48; + friend void swap(FigureDescriptor_StringMapWithDefault& a, FigureDescriptor_StringMapWithDefault& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_StringMapWithDefault* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2586,52 +2678,69 @@ class FigureDescriptor_StringMapWithDefault final : // implements Message ---------------------------------------------- - FigureDescriptor_StringMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_StringMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_StringMapWithDefault& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_StringMapWithDefault& from) { - FigureDescriptor_StringMapWithDefault::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_StringMapWithDefault& from) { FigureDescriptor_StringMapWithDefault::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_StringMapWithDefault* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault"; } + + protected: explicit FigureDescriptor_StringMapWithDefault(::google::protobuf::Arena* arena); FigureDescriptor_StringMapWithDefault(::google::protobuf::Arena* arena, const FigureDescriptor_StringMapWithDefault& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_StringMapWithDefault(::google::protobuf::Arena* arena, FigureDescriptor_StringMapWithDefault&& from) noexcept + : FigureDescriptor_StringMapWithDefault(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeysFieldNumber = 2, kValuesFieldNumber = 3, @@ -2646,17 +2755,11 @@ class FigureDescriptor_StringMapWithDefault final : void clear_keys() ; const std::string& keys(int index) const; std::string* mutable_keys(int index); - void set_keys(int index, const std::string& value); - void set_keys(int index, std::string&& value); - void set_keys(int index, const char* value); - void set_keys(int index, const char* value, std::size_t size); - void set_keys(int index, absl::string_view value); + template + void set_keys(int index, Arg_&& value, Args_... args); std::string* add_keys(); - void add_keys(const std::string& value); - void add_keys(std::string&& value); - void add_keys(const char* value); - void add_keys(const char* value, std::size_t size); - void add_keys(absl::string_view value); + template + void add_keys(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& keys() const; ::google::protobuf::RepeatedPtrField* mutable_keys(); @@ -2674,17 +2777,11 @@ class FigureDescriptor_StringMapWithDefault final : void clear_values() ; const std::string& values(int index) const; std::string* mutable_values(int index); - void set_values(int index, const std::string& value); - void set_values(int index, std::string&& value); - void set_values(int index, const char* value); - void set_values(int index, const char* value, std::size_t size); - void set_values(int index, absl::string_view value); + template + void set_values(int index, Arg_&& value, Args_... args); std::string* add_values(); - void add_values(const std::string& value); - void add_values(std::string&& value); - void add_values(const char* value); - void add_values(const char* value, std::size_t size); - void add_values(absl::string_view value); + template + void add_values(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& values() const; ::google::protobuf::RepeatedPtrField* mutable_values(); @@ -2713,12 +2810,15 @@ class FigureDescriptor_StringMapWithDefault final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 111, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_StringMapWithDefault_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2726,13 +2826,13 @@ class FigureDescriptor_StringMapWithDefault final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_StringMapWithDefault& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField keys_; @@ -2742,23 +2842,21 @@ class FigureDescriptor_StringMapWithDefault final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_OneClickDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) */ { +class FigureDescriptor_OneClickDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) */ { public: inline FigureDescriptor_OneClickDescriptor() : FigureDescriptor_OneClickDescriptor(nullptr) {} - ~FigureDescriptor_OneClickDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_OneClickDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_OneClickDescriptor(const FigureDescriptor_OneClickDescriptor& from) - : FigureDescriptor_OneClickDescriptor(nullptr, from) {} - FigureDescriptor_OneClickDescriptor(FigureDescriptor_OneClickDescriptor&& from) noexcept - : FigureDescriptor_OneClickDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_OneClickDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_OneClickDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_OneClickDescriptor(const FigureDescriptor_OneClickDescriptor& from) : FigureDescriptor_OneClickDescriptor(nullptr, from) {} + inline FigureDescriptor_OneClickDescriptor(FigureDescriptor_OneClickDescriptor&& from) noexcept + : FigureDescriptor_OneClickDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_OneClickDescriptor& operator=(const FigureDescriptor_OneClickDescriptor& from) { CopyFrom(from); return *this; @@ -2766,9 +2864,9 @@ class FigureDescriptor_OneClickDescriptor final : inline FigureDescriptor_OneClickDescriptor& operator=(FigureDescriptor_OneClickDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2800,22 +2898,17 @@ class FigureDescriptor_OneClickDescriptor final : } static inline const FigureDescriptor_OneClickDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_OneClickDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 58; - - friend void swap(FigureDescriptor_OneClickDescriptor& a, FigureDescriptor_OneClickDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_OneClickDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 58; + friend void swap(FigureDescriptor_OneClickDescriptor& a, FigureDescriptor_OneClickDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_OneClickDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2829,52 +2922,69 @@ class FigureDescriptor_OneClickDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_OneClickDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_OneClickDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_OneClickDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_OneClickDescriptor& from) { - FigureDescriptor_OneClickDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_OneClickDescriptor& from) { FigureDescriptor_OneClickDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_OneClickDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor"; } + + protected: explicit FigureDescriptor_OneClickDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_OneClickDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_OneClickDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_OneClickDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_OneClickDescriptor&& from) noexcept + : FigureDescriptor_OneClickDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsFieldNumber = 1, kColumnTypesFieldNumber = 2, @@ -2889,17 +2999,11 @@ class FigureDescriptor_OneClickDescriptor final : void clear_columns() ; const std::string& columns(int index) const; std::string* mutable_columns(int index); - void set_columns(int index, const std::string& value); - void set_columns(int index, std::string&& value); - void set_columns(int index, const char* value); - void set_columns(int index, const char* value, std::size_t size); - void set_columns(int index, absl::string_view value); + template + void set_columns(int index, Arg_&& value, Args_... args); std::string* add_columns(); - void add_columns(const std::string& value); - void add_columns(std::string&& value); - void add_columns(const char* value); - void add_columns(const char* value, std::size_t size); - void add_columns(absl::string_view value); + template + void add_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns() const; ::google::protobuf::RepeatedPtrField* mutable_columns(); @@ -2917,17 +3021,11 @@ class FigureDescriptor_OneClickDescriptor final : void clear_column_types() ; const std::string& column_types(int index) const; std::string* mutable_column_types(int index); - void set_column_types(int index, const std::string& value); - void set_column_types(int index, std::string&& value); - void set_column_types(int index, const char* value); - void set_column_types(int index, const char* value, std::size_t size); - void set_column_types(int index, absl::string_view value); + template + void set_column_types(int index, Arg_&& value, Args_... args); std::string* add_column_types(); - void add_column_types(const std::string& value); - void add_column_types(std::string&& value); - void add_column_types(const char* value); - void add_column_types(const char* value, std::size_t size); - void add_column_types(absl::string_view value); + template + void add_column_types(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& column_types() const; ::google::protobuf::RepeatedPtrField* mutable_column_types(); @@ -2949,12 +3047,15 @@ class FigureDescriptor_OneClickDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 104, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_OneClickDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2962,13 +3063,13 @@ class FigureDescriptor_OneClickDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_OneClickDescriptor& from_msg); ::google::protobuf::RepeatedPtrField columns_; ::google::protobuf::RepeatedPtrField column_types_; bool require_all_filters_to_display_; @@ -2977,23 +3078,21 @@ class FigureDescriptor_OneClickDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_MultiSeriesSourceDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) */ { +class FigureDescriptor_MultiSeriesSourceDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) */ { public: inline FigureDescriptor_MultiSeriesSourceDescriptor() : FigureDescriptor_MultiSeriesSourceDescriptor(nullptr) {} - ~FigureDescriptor_MultiSeriesSourceDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesSourceDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_MultiSeriesSourceDescriptor(const FigureDescriptor_MultiSeriesSourceDescriptor& from) - : FigureDescriptor_MultiSeriesSourceDescriptor(nullptr, from) {} - FigureDescriptor_MultiSeriesSourceDescriptor(FigureDescriptor_MultiSeriesSourceDescriptor&& from) noexcept - : FigureDescriptor_MultiSeriesSourceDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_MultiSeriesSourceDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesSourceDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_MultiSeriesSourceDescriptor(const FigureDescriptor_MultiSeriesSourceDescriptor& from) : FigureDescriptor_MultiSeriesSourceDescriptor(nullptr, from) {} + inline FigureDescriptor_MultiSeriesSourceDescriptor(FigureDescriptor_MultiSeriesSourceDescriptor&& from) noexcept + : FigureDescriptor_MultiSeriesSourceDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_MultiSeriesSourceDescriptor& operator=(const FigureDescriptor_MultiSeriesSourceDescriptor& from) { CopyFrom(from); return *this; @@ -3001,9 +3100,9 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : inline FigureDescriptor_MultiSeriesSourceDescriptor& operator=(FigureDescriptor_MultiSeriesSourceDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3035,22 +3134,17 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : } static inline const FigureDescriptor_MultiSeriesSourceDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 56; - - friend void swap(FigureDescriptor_MultiSeriesSourceDescriptor& a, FigureDescriptor_MultiSeriesSourceDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 56; + friend void swap(FigureDescriptor_MultiSeriesSourceDescriptor& a, FigureDescriptor_MultiSeriesSourceDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_MultiSeriesSourceDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3064,52 +3158,69 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_MultiSeriesSourceDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_MultiSeriesSourceDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_MultiSeriesSourceDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_MultiSeriesSourceDescriptor& from) { - FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_MultiSeriesSourceDescriptor& from) { FigureDescriptor_MultiSeriesSourceDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_MultiSeriesSourceDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor"; } + + protected: explicit FigureDescriptor_MultiSeriesSourceDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_MultiSeriesSourceDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_MultiSeriesSourceDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_MultiSeriesSourceDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_MultiSeriesSourceDescriptor&& from) noexcept + : FigureDescriptor_MultiSeriesSourceDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAxisIdFieldNumber = 1, kColumnNameFieldNumber = 4, @@ -3171,12 +3282,15 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, 112, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3184,13 +3298,13 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_MultiSeriesSourceDescriptor& from_msg); ::google::protobuf::internal::ArenaStringPtr axis_id_; ::google::protobuf::internal::ArenaStringPtr column_name_; int type_; @@ -3200,23 +3314,21 @@ class FigureDescriptor_MultiSeriesSourceDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_DoubleMapWithDefault final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) */ { +class FigureDescriptor_DoubleMapWithDefault final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) */ { public: inline FigureDescriptor_DoubleMapWithDefault() : FigureDescriptor_DoubleMapWithDefault(nullptr) {} - ~FigureDescriptor_DoubleMapWithDefault() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_DoubleMapWithDefault(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_DoubleMapWithDefault(const FigureDescriptor_DoubleMapWithDefault& from) - : FigureDescriptor_DoubleMapWithDefault(nullptr, from) {} - FigureDescriptor_DoubleMapWithDefault(FigureDescriptor_DoubleMapWithDefault&& from) noexcept - : FigureDescriptor_DoubleMapWithDefault() { - *this = ::std::move(from); - } - + ~FigureDescriptor_DoubleMapWithDefault() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_DoubleMapWithDefault( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_DoubleMapWithDefault(const FigureDescriptor_DoubleMapWithDefault& from) : FigureDescriptor_DoubleMapWithDefault(nullptr, from) {} + inline FigureDescriptor_DoubleMapWithDefault(FigureDescriptor_DoubleMapWithDefault&& from) noexcept + : FigureDescriptor_DoubleMapWithDefault(nullptr, std::move(from)) {} inline FigureDescriptor_DoubleMapWithDefault& operator=(const FigureDescriptor_DoubleMapWithDefault& from) { CopyFrom(from); return *this; @@ -3224,9 +3336,9 @@ class FigureDescriptor_DoubleMapWithDefault final : inline FigureDescriptor_DoubleMapWithDefault& operator=(FigureDescriptor_DoubleMapWithDefault&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3258,22 +3370,17 @@ class FigureDescriptor_DoubleMapWithDefault final : } static inline const FigureDescriptor_DoubleMapWithDefault* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_DoubleMapWithDefault_default_instance_); - } - static constexpr int kIndexInFileMessages = - 49; - - friend void swap(FigureDescriptor_DoubleMapWithDefault& a, FigureDescriptor_DoubleMapWithDefault& b) { - a.Swap(&b); + &_FigureDescriptor_DoubleMapWithDefault_default_instance_); } + static constexpr int kIndexInFileMessages = 49; + friend void swap(FigureDescriptor_DoubleMapWithDefault& a, FigureDescriptor_DoubleMapWithDefault& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_DoubleMapWithDefault* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3287,52 +3394,69 @@ class FigureDescriptor_DoubleMapWithDefault final : // implements Message ---------------------------------------------- - FigureDescriptor_DoubleMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_DoubleMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_DoubleMapWithDefault& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_DoubleMapWithDefault& from) { - FigureDescriptor_DoubleMapWithDefault::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_DoubleMapWithDefault& from) { FigureDescriptor_DoubleMapWithDefault::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_DoubleMapWithDefault* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault"; } + + protected: explicit FigureDescriptor_DoubleMapWithDefault(::google::protobuf::Arena* arena); FigureDescriptor_DoubleMapWithDefault(::google::protobuf::Arena* arena, const FigureDescriptor_DoubleMapWithDefault& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_DoubleMapWithDefault(::google::protobuf::Arena* arena, FigureDescriptor_DoubleMapWithDefault&& from) noexcept + : FigureDescriptor_DoubleMapWithDefault(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeysFieldNumber = 2, kValuesFieldNumber = 3, @@ -3347,17 +3471,11 @@ class FigureDescriptor_DoubleMapWithDefault final : void clear_keys() ; const std::string& keys(int index) const; std::string* mutable_keys(int index); - void set_keys(int index, const std::string& value); - void set_keys(int index, std::string&& value); - void set_keys(int index, const char* value); - void set_keys(int index, const char* value, std::size_t size); - void set_keys(int index, absl::string_view value); + template + void set_keys(int index, Arg_&& value, Args_... args); std::string* add_keys(); - void add_keys(const std::string& value); - void add_keys(std::string&& value); - void add_keys(const char* value); - void add_keys(const char* value, std::size_t size); - void add_keys(absl::string_view value); + template + void add_keys(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& keys() const; ::google::protobuf::RepeatedPtrField* mutable_keys(); @@ -3398,12 +3516,15 @@ class FigureDescriptor_DoubleMapWithDefault final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 91, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_DoubleMapWithDefault_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3411,13 +3532,13 @@ class FigureDescriptor_DoubleMapWithDefault final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_DoubleMapWithDefault& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField keys_; @@ -3427,23 +3548,21 @@ class FigureDescriptor_DoubleMapWithDefault final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) */ { +class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) */ { public: inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate() : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(nullptr) {} - ~FigureDescriptor_BusinessCalendarDescriptor_LocalDate() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) - : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(nullptr, from) {} - FigureDescriptor_BusinessCalendarDescriptor_LocalDate(FigureDescriptor_BusinessCalendarDescriptor_LocalDate&& from) noexcept - : FigureDescriptor_BusinessCalendarDescriptor_LocalDate() { - *this = ::std::move(from); - } - + ~FigureDescriptor_BusinessCalendarDescriptor_LocalDate() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_LocalDate( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(nullptr, from) {} + inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate(FigureDescriptor_BusinessCalendarDescriptor_LocalDate&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(nullptr, std::move(from)) {} inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate& operator=(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) { CopyFrom(from); return *this; @@ -3451,9 +3570,9 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate& operator=(FigureDescriptor_BusinessCalendarDescriptor_LocalDate&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3485,22 +3604,17 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : } static inline const FigureDescriptor_BusinessCalendarDescriptor_LocalDate* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_); - } - static constexpr int kIndexInFileMessages = - 54; - - friend void swap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate& a, FigureDescriptor_BusinessCalendarDescriptor_LocalDate& b) { - a.Swap(&b); + &_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_); } + static constexpr int kIndexInFileMessages = 54; + friend void swap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate& a, FigureDescriptor_BusinessCalendarDescriptor_LocalDate& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3514,52 +3628,69 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : // implements Message ---------------------------------------------- - FigureDescriptor_BusinessCalendarDescriptor_LocalDate* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_BusinessCalendarDescriptor_LocalDate* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) { - FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) { FigureDescriptor_BusinessCalendarDescriptor_LocalDate::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate"; } + + protected: explicit FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::google::protobuf::Arena* arena); FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::google::protobuf::Arena* arena, FigureDescriptor_BusinessCalendarDescriptor_LocalDate&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kYearFieldNumber = 1, kMonthFieldNumber = 2, @@ -3598,12 +3729,15 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3611,13 +3745,13 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from_msg); ::int32_t year_; ::int32_t month_; ::int32_t day_; @@ -3626,23 +3760,21 @@ class FigureDescriptor_BusinessCalendarDescriptor_LocalDate final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) */ { +class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) */ { public: inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(nullptr) {} - ~FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) - : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(nullptr, from) {} - FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod&& from) noexcept - : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() { - *this = ::std::move(from); - } - + ~FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(nullptr, from) {} + inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(nullptr, std::move(from)) {} inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& operator=(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) { CopyFrom(from); return *this; @@ -3650,9 +3782,9 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& operator=(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3684,22 +3816,17 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : } static inline const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_); - } - static constexpr int kIndexInFileMessages = - 52; - - friend void swap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& a, FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& b) { - a.Swap(&b); + &_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_); } + static constexpr int kIndexInFileMessages = 52; + friend void swap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& a, FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3713,52 +3840,69 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : // implements Message ---------------------------------------------- - FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) { - FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) { FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod"; } + + protected: explicit FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::google::protobuf::Arena* arena); FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::google::protobuf::Arena* arena, FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOpenFieldNumber = 1, kCloseFieldNumber = 2, @@ -3798,12 +3942,15 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 117, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3811,13 +3958,13 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from_msg); ::google::protobuf::internal::ArenaStringPtr open_; ::google::protobuf::internal::ArenaStringPtr close_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -3825,23 +3972,21 @@ class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_BoolMapWithDefault final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) */ { +class FigureDescriptor_BoolMapWithDefault final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) */ { public: inline FigureDescriptor_BoolMapWithDefault() : FigureDescriptor_BoolMapWithDefault(nullptr) {} - ~FigureDescriptor_BoolMapWithDefault() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_BoolMapWithDefault(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_BoolMapWithDefault(const FigureDescriptor_BoolMapWithDefault& from) - : FigureDescriptor_BoolMapWithDefault(nullptr, from) {} - FigureDescriptor_BoolMapWithDefault(FigureDescriptor_BoolMapWithDefault&& from) noexcept - : FigureDescriptor_BoolMapWithDefault() { - *this = ::std::move(from); - } - + ~FigureDescriptor_BoolMapWithDefault() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_BoolMapWithDefault( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_BoolMapWithDefault(const FigureDescriptor_BoolMapWithDefault& from) : FigureDescriptor_BoolMapWithDefault(nullptr, from) {} + inline FigureDescriptor_BoolMapWithDefault(FigureDescriptor_BoolMapWithDefault&& from) noexcept + : FigureDescriptor_BoolMapWithDefault(nullptr, std::move(from)) {} inline FigureDescriptor_BoolMapWithDefault& operator=(const FigureDescriptor_BoolMapWithDefault& from) { CopyFrom(from); return *this; @@ -3849,9 +3994,9 @@ class FigureDescriptor_BoolMapWithDefault final : inline FigureDescriptor_BoolMapWithDefault& operator=(FigureDescriptor_BoolMapWithDefault&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3883,22 +4028,17 @@ class FigureDescriptor_BoolMapWithDefault final : } static inline const FigureDescriptor_BoolMapWithDefault* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_BoolMapWithDefault_default_instance_); - } - static constexpr int kIndexInFileMessages = - 50; - - friend void swap(FigureDescriptor_BoolMapWithDefault& a, FigureDescriptor_BoolMapWithDefault& b) { - a.Swap(&b); + &_FigureDescriptor_BoolMapWithDefault_default_instance_); } + static constexpr int kIndexInFileMessages = 50; + friend void swap(FigureDescriptor_BoolMapWithDefault& a, FigureDescriptor_BoolMapWithDefault& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_BoolMapWithDefault* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3912,52 +4052,69 @@ class FigureDescriptor_BoolMapWithDefault final : // implements Message ---------------------------------------------- - FigureDescriptor_BoolMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_BoolMapWithDefault* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_BoolMapWithDefault& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_BoolMapWithDefault& from) { - FigureDescriptor_BoolMapWithDefault::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_BoolMapWithDefault& from) { FigureDescriptor_BoolMapWithDefault::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_BoolMapWithDefault* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault"; } + + protected: explicit FigureDescriptor_BoolMapWithDefault(::google::protobuf::Arena* arena); FigureDescriptor_BoolMapWithDefault(::google::protobuf::Arena* arena, const FigureDescriptor_BoolMapWithDefault& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_BoolMapWithDefault(::google::protobuf::Arena* arena, FigureDescriptor_BoolMapWithDefault&& from) noexcept + : FigureDescriptor_BoolMapWithDefault(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeysFieldNumber = 2, kValuesFieldNumber = 3, @@ -3972,17 +4129,11 @@ class FigureDescriptor_BoolMapWithDefault final : void clear_keys() ; const std::string& keys(int index) const; std::string* mutable_keys(int index); - void set_keys(int index, const std::string& value); - void set_keys(int index, std::string&& value); - void set_keys(int index, const char* value); - void set_keys(int index, const char* value, std::size_t size); - void set_keys(int index, absl::string_view value); + template + void set_keys(int index, Arg_&& value, Args_... args); std::string* add_keys(); - void add_keys(const std::string& value); - void add_keys(std::string&& value); - void add_keys(const char* value); - void add_keys(const char* value, std::size_t size); - void add_keys(absl::string_view value); + template + void add_keys(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& keys() const; ::google::protobuf::RepeatedPtrField* mutable_keys(); @@ -4023,12 +4174,15 @@ class FigureDescriptor_BoolMapWithDefault final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 89, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_BoolMapWithDefault_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4036,13 +4190,13 @@ class FigureDescriptor_BoolMapWithDefault final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_BoolMapWithDefault& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField keys_; @@ -4052,23 +4206,21 @@ class FigureDescriptor_BoolMapWithDefault final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Diagnostic_CodeDescription final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) */ { +class Diagnostic_CodeDescription final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) */ { public: inline Diagnostic_CodeDescription() : Diagnostic_CodeDescription(nullptr) {} - ~Diagnostic_CodeDescription() override; - template - explicit PROTOBUF_CONSTEXPR Diagnostic_CodeDescription(::google::protobuf::internal::ConstantInitialized); - - inline Diagnostic_CodeDescription(const Diagnostic_CodeDescription& from) - : Diagnostic_CodeDescription(nullptr, from) {} - Diagnostic_CodeDescription(Diagnostic_CodeDescription&& from) noexcept - : Diagnostic_CodeDescription() { - *this = ::std::move(from); - } - + ~Diagnostic_CodeDescription() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Diagnostic_CodeDescription( + ::google::protobuf::internal::ConstantInitialized); + + inline Diagnostic_CodeDescription(const Diagnostic_CodeDescription& from) : Diagnostic_CodeDescription(nullptr, from) {} + inline Diagnostic_CodeDescription(Diagnostic_CodeDescription&& from) noexcept + : Diagnostic_CodeDescription(nullptr, std::move(from)) {} inline Diagnostic_CodeDescription& operator=(const Diagnostic_CodeDescription& from) { CopyFrom(from); return *this; @@ -4076,9 +4228,9 @@ class Diagnostic_CodeDescription final : inline Diagnostic_CodeDescription& operator=(Diagnostic_CodeDescription&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4110,22 +4262,17 @@ class Diagnostic_CodeDescription final : } static inline const Diagnostic_CodeDescription* internal_default_instance() { return reinterpret_cast( - &_Diagnostic_CodeDescription_default_instance_); - } - static constexpr int kIndexInFileMessages = - 43; - - friend void swap(Diagnostic_CodeDescription& a, Diagnostic_CodeDescription& b) { - a.Swap(&b); + &_Diagnostic_CodeDescription_default_instance_); } + static constexpr int kIndexInFileMessages = 43; + friend void swap(Diagnostic_CodeDescription& a, Diagnostic_CodeDescription& b) { a.Swap(&b); } inline void Swap(Diagnostic_CodeDescription* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4139,52 +4286,69 @@ class Diagnostic_CodeDescription final : // implements Message ---------------------------------------------- - Diagnostic_CodeDescription* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Diagnostic_CodeDescription* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Diagnostic_CodeDescription& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Diagnostic_CodeDescription& from) { - Diagnostic_CodeDescription::MergeImpl(*this, from); - } + void MergeFrom(const Diagnostic_CodeDescription& from) { Diagnostic_CodeDescription::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Diagnostic_CodeDescription* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription"; } + + protected: explicit Diagnostic_CodeDescription(::google::protobuf::Arena* arena); Diagnostic_CodeDescription(::google::protobuf::Arena* arena, const Diagnostic_CodeDescription& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Diagnostic_CodeDescription(::google::protobuf::Arena* arena, Diagnostic_CodeDescription&& from) noexcept + : Diagnostic_CodeDescription(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kHrefFieldNumber = 1, }; @@ -4207,12 +4371,15 @@ class Diagnostic_CodeDescription final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 80, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Diagnostic_CodeDescription_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4220,36 +4387,34 @@ class Diagnostic_CodeDescription final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Diagnostic_CodeDescription& from_msg); ::google::protobuf::internal::ArenaStringPtr href_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CompletionContext final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CompletionContext) */ { +class CompletionContext final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CompletionContext) */ { public: inline CompletionContext() : CompletionContext(nullptr) {} - ~CompletionContext() override; - template - explicit PROTOBUF_CONSTEXPR CompletionContext(::google::protobuf::internal::ConstantInitialized); - - inline CompletionContext(const CompletionContext& from) - : CompletionContext(nullptr, from) {} - CompletionContext(CompletionContext&& from) noexcept - : CompletionContext() { - *this = ::std::move(from); - } - + ~CompletionContext() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CompletionContext( + ::google::protobuf::internal::ConstantInitialized); + + inline CompletionContext(const CompletionContext& from) : CompletionContext(nullptr, from) {} + inline CompletionContext(CompletionContext&& from) noexcept + : CompletionContext(nullptr, std::move(from)) {} inline CompletionContext& operator=(const CompletionContext& from) { CopyFrom(from); return *this; @@ -4257,9 +4422,9 @@ class CompletionContext final : inline CompletionContext& operator=(CompletionContext&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4291,22 +4456,17 @@ class CompletionContext final : } static inline const CompletionContext* internal_default_instance() { return reinterpret_cast( - &_CompletionContext_default_instance_); - } - static constexpr int kIndexInFileMessages = - 29; - - friend void swap(CompletionContext& a, CompletionContext& b) { - a.Swap(&b); + &_CompletionContext_default_instance_); } + static constexpr int kIndexInFileMessages = 29; + friend void swap(CompletionContext& a, CompletionContext& b) { a.Swap(&b); } inline void Swap(CompletionContext* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4320,52 +4480,69 @@ class CompletionContext final : // implements Message ---------------------------------------------- - CompletionContext* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CompletionContext* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CompletionContext& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CompletionContext& from) { - CompletionContext::MergeImpl(*this, from); - } + void MergeFrom(const CompletionContext& from) { CompletionContext::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CompletionContext* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CompletionContext"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CompletionContext"; } + + protected: explicit CompletionContext(::google::protobuf::Arena* arena); CompletionContext(::google::protobuf::Arena* arena, const CompletionContext& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CompletionContext(::google::protobuf::Arena* arena, CompletionContext&& from) noexcept + : CompletionContext(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTriggerCharacterFieldNumber = 2, kTriggerKindFieldNumber = 1, @@ -4399,12 +4576,15 @@ class CompletionContext final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CompletionContext) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 84, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CompletionContext_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4412,13 +4592,13 @@ class CompletionContext final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CompletionContext& from_msg); ::google::protobuf::internal::ArenaStringPtr trigger_character_; ::int32_t trigger_kind_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4426,22 +4606,20 @@ class CompletionContext final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CancelCommandResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelCommandResponse) */ { +class CancelCommandResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelCommandResponse) */ { public: inline CancelCommandResponse() : CancelCommandResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CancelCommandResponse(::google::protobuf::internal::ConstantInitialized); - - inline CancelCommandResponse(const CancelCommandResponse& from) - : CancelCommandResponse(nullptr, from) {} - CancelCommandResponse(CancelCommandResponse&& from) noexcept - : CancelCommandResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CancelCommandResponse( + ::google::protobuf::internal::ConstantInitialized); + inline CancelCommandResponse(const CancelCommandResponse& from) : CancelCommandResponse(nullptr, from) {} + inline CancelCommandResponse(CancelCommandResponse&& from) noexcept + : CancelCommandResponse(nullptr, std::move(from)) {} inline CancelCommandResponse& operator=(const CancelCommandResponse& from) { CopyFrom(from); return *this; @@ -4449,9 +4627,9 @@ class CancelCommandResponse final : inline CancelCommandResponse& operator=(CancelCommandResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4483,22 +4661,17 @@ class CancelCommandResponse final : } static inline const CancelCommandResponse* internal_default_instance() { return reinterpret_cast( - &_CancelCommandResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 13; - - friend void swap(CancelCommandResponse& a, CancelCommandResponse& b) { - a.Swap(&b); + &_CancelCommandResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 13; + friend void swap(CancelCommandResponse& a, CancelCommandResponse& b) { a.Swap(&b); } inline void Swap(CancelCommandResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4512,8 +4685,8 @@ class CancelCommandResponse final : // implements Message ---------------------------------------------- - CancelCommandResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CancelCommandResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CancelCommandResponse& from) { @@ -4523,27 +4696,41 @@ class CancelCommandResponse final : void MergeFrom(const CancelCommandResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CancelCommandResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CancelCommandResponse"; } + + protected: explicit CancelCommandResponse(::google::protobuf::Arena* arena); CancelCommandResponse(::google::protobuf::Arena* arena, const CancelCommandResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CancelCommandResponse(::google::protobuf::Arena* arena, CancelCommandResponse&& from) noexcept + : CancelCommandResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CancelCommandResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CancelCommandResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4552,32 +4739,30 @@ class CancelCommandResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CancelCommandResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CancelAutoCompleteResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse) */ { +class CancelAutoCompleteResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse) */ { public: inline CancelAutoCompleteResponse() : CancelAutoCompleteResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CancelAutoCompleteResponse(::google::protobuf::internal::ConstantInitialized); - - inline CancelAutoCompleteResponse(const CancelAutoCompleteResponse& from) - : CancelAutoCompleteResponse(nullptr, from) {} - CancelAutoCompleteResponse(CancelAutoCompleteResponse&& from) noexcept - : CancelAutoCompleteResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CancelAutoCompleteResponse( + ::google::protobuf::internal::ConstantInitialized); + inline CancelAutoCompleteResponse(const CancelAutoCompleteResponse& from) : CancelAutoCompleteResponse(nullptr, from) {} + inline CancelAutoCompleteResponse(CancelAutoCompleteResponse&& from) noexcept + : CancelAutoCompleteResponse(nullptr, std::move(from)) {} inline CancelAutoCompleteResponse& operator=(const CancelAutoCompleteResponse& from) { CopyFrom(from); return *this; @@ -4585,9 +4770,9 @@ class CancelAutoCompleteResponse final : inline CancelAutoCompleteResponse& operator=(CancelAutoCompleteResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4619,22 +4804,17 @@ class CancelAutoCompleteResponse final : } static inline const CancelAutoCompleteResponse* internal_default_instance() { return reinterpret_cast( - &_CancelAutoCompleteResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 15; - - friend void swap(CancelAutoCompleteResponse& a, CancelAutoCompleteResponse& b) { - a.Swap(&b); + &_CancelAutoCompleteResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 15; + friend void swap(CancelAutoCompleteResponse& a, CancelAutoCompleteResponse& b) { a.Swap(&b); } inline void Swap(CancelAutoCompleteResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4648,8 +4828,8 @@ class CancelAutoCompleteResponse final : // implements Message ---------------------------------------------- - CancelAutoCompleteResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CancelAutoCompleteResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CancelAutoCompleteResponse& from) { @@ -4659,27 +4839,41 @@ class CancelAutoCompleteResponse final : void MergeFrom(const CancelAutoCompleteResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse"; } + + protected: explicit CancelAutoCompleteResponse(::google::protobuf::Arena* arena); CancelAutoCompleteResponse(::google::protobuf::Arena* arena, const CancelAutoCompleteResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CancelAutoCompleteResponse(::google::protobuf::Arena* arena, CancelAutoCompleteResponse&& from) noexcept + : CancelAutoCompleteResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CancelAutoCompleteResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4688,32 +4882,30 @@ class CancelAutoCompleteResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CancelAutoCompleteResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class BrowserNextResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BrowserNextResponse) */ { +class BrowserNextResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BrowserNextResponse) */ { public: inline BrowserNextResponse() : BrowserNextResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR BrowserNextResponse(::google::protobuf::internal::ConstantInitialized); - - inline BrowserNextResponse(const BrowserNextResponse& from) - : BrowserNextResponse(nullptr, from) {} - BrowserNextResponse(BrowserNextResponse&& from) noexcept - : BrowserNextResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR BrowserNextResponse( + ::google::protobuf::internal::ConstantInitialized); + inline BrowserNextResponse(const BrowserNextResponse& from) : BrowserNextResponse(nullptr, from) {} + inline BrowserNextResponse(BrowserNextResponse&& from) noexcept + : BrowserNextResponse(nullptr, std::move(from)) {} inline BrowserNextResponse& operator=(const BrowserNextResponse& from) { CopyFrom(from); return *this; @@ -4721,9 +4913,9 @@ class BrowserNextResponse final : inline BrowserNextResponse& operator=(BrowserNextResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4755,22 +4947,17 @@ class BrowserNextResponse final : } static inline const BrowserNextResponse* internal_default_instance() { return reinterpret_cast( - &_BrowserNextResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 18; - - friend void swap(BrowserNextResponse& a, BrowserNextResponse& b) { - a.Swap(&b); + &_BrowserNextResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 18; + friend void swap(BrowserNextResponse& a, BrowserNextResponse& b) { a.Swap(&b); } inline void Swap(BrowserNextResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4784,8 +4971,8 @@ class BrowserNextResponse final : // implements Message ---------------------------------------------- - BrowserNextResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BrowserNextResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const BrowserNextResponse& from) { @@ -4795,27 +4982,41 @@ class BrowserNextResponse final : void MergeFrom(const BrowserNextResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.BrowserNextResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.BrowserNextResponse"; } + + protected: explicit BrowserNextResponse(::google::protobuf::Arena* arena); BrowserNextResponse(::google::protobuf::Arena* arena, const BrowserNextResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + BrowserNextResponse(::google::protobuf::Arena* arena, BrowserNextResponse&& from) noexcept + : BrowserNextResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.BrowserNextResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_BrowserNextResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4824,32 +5025,30 @@ class BrowserNextResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BrowserNextResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class BindTableToVariableResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse) */ { +class BindTableToVariableResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse) */ { public: inline BindTableToVariableResponse() : BindTableToVariableResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR BindTableToVariableResponse(::google::protobuf::internal::ConstantInitialized); - - inline BindTableToVariableResponse(const BindTableToVariableResponse& from) - : BindTableToVariableResponse(nullptr, from) {} - BindTableToVariableResponse(BindTableToVariableResponse&& from) noexcept - : BindTableToVariableResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR BindTableToVariableResponse( + ::google::protobuf::internal::ConstantInitialized); + inline BindTableToVariableResponse(const BindTableToVariableResponse& from) : BindTableToVariableResponse(nullptr, from) {} + inline BindTableToVariableResponse(BindTableToVariableResponse&& from) noexcept + : BindTableToVariableResponse(nullptr, std::move(from)) {} inline BindTableToVariableResponse& operator=(const BindTableToVariableResponse& from) { CopyFrom(from); return *this; @@ -4857,9 +5056,9 @@ class BindTableToVariableResponse final : inline BindTableToVariableResponse& operator=(BindTableToVariableResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4891,22 +5090,17 @@ class BindTableToVariableResponse final : } static inline const BindTableToVariableResponse* internal_default_instance() { return reinterpret_cast( - &_BindTableToVariableResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 11; - - friend void swap(BindTableToVariableResponse& a, BindTableToVariableResponse& b) { - a.Swap(&b); + &_BindTableToVariableResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 11; + friend void swap(BindTableToVariableResponse& a, BindTableToVariableResponse& b) { a.Swap(&b); } inline void Swap(BindTableToVariableResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4920,8 +5114,8 @@ class BindTableToVariableResponse final : // implements Message ---------------------------------------------- - BindTableToVariableResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BindTableToVariableResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const BindTableToVariableResponse& from) { @@ -4931,27 +5125,41 @@ class BindTableToVariableResponse final : void MergeFrom(const BindTableToVariableResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse"; } + + protected: explicit BindTableToVariableResponse(::google::protobuf::Arena* arena); BindTableToVariableResponse(::google::protobuf::Arena* arena, const BindTableToVariableResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + BindTableToVariableResponse(::google::protobuf::Arena* arena, BindTableToVariableResponse&& from) noexcept + : BindTableToVariableResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.BindTableToVariableResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_BindTableToVariableResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4960,33 +5168,31 @@ class BindTableToVariableResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BindTableToVariableResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class StartConsoleResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) */ { +class StartConsoleResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) */ { public: inline StartConsoleResponse() : StartConsoleResponse(nullptr) {} - ~StartConsoleResponse() override; - template - explicit PROTOBUF_CONSTEXPR StartConsoleResponse(::google::protobuf::internal::ConstantInitialized); - - inline StartConsoleResponse(const StartConsoleResponse& from) - : StartConsoleResponse(nullptr, from) {} - StartConsoleResponse(StartConsoleResponse&& from) noexcept - : StartConsoleResponse() { - *this = ::std::move(from); - } - + ~StartConsoleResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR StartConsoleResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline StartConsoleResponse(const StartConsoleResponse& from) : StartConsoleResponse(nullptr, from) {} + inline StartConsoleResponse(StartConsoleResponse&& from) noexcept + : StartConsoleResponse(nullptr, std::move(from)) {} inline StartConsoleResponse& operator=(const StartConsoleResponse& from) { CopyFrom(from); return *this; @@ -4994,9 +5200,9 @@ class StartConsoleResponse final : inline StartConsoleResponse& operator=(StartConsoleResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5028,22 +5234,17 @@ class StartConsoleResponse final : } static inline const StartConsoleResponse* internal_default_instance() { return reinterpret_cast( - &_StartConsoleResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(StartConsoleResponse& a, StartConsoleResponse& b) { - a.Swap(&b); + &_StartConsoleResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(StartConsoleResponse& a, StartConsoleResponse& b) { a.Swap(&b); } inline void Swap(StartConsoleResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5057,52 +5258,69 @@ class StartConsoleResponse final : // implements Message ---------------------------------------------- - StartConsoleResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + StartConsoleResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const StartConsoleResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const StartConsoleResponse& from) { - StartConsoleResponse::MergeImpl(*this, from); - } + void MergeFrom(const StartConsoleResponse& from) { StartConsoleResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(StartConsoleResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.StartConsoleResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.StartConsoleResponse"; } + + protected: explicit StartConsoleResponse(::google::protobuf::Arena* arena); StartConsoleResponse(::google::protobuf::Arena* arena, const StartConsoleResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + StartConsoleResponse(::google::protobuf::Arena* arena, StartConsoleResponse&& from) noexcept + : StartConsoleResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, }; @@ -5124,12 +5342,15 @@ class StartConsoleResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_StartConsoleResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5137,13 +5358,13 @@ class StartConsoleResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const StartConsoleResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -5151,23 +5372,21 @@ class StartConsoleResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class StartConsoleRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) */ { +class StartConsoleRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) */ { public: inline StartConsoleRequest() : StartConsoleRequest(nullptr) {} - ~StartConsoleRequest() override; - template - explicit PROTOBUF_CONSTEXPR StartConsoleRequest(::google::protobuf::internal::ConstantInitialized); - - inline StartConsoleRequest(const StartConsoleRequest& from) - : StartConsoleRequest(nullptr, from) {} - StartConsoleRequest(StartConsoleRequest&& from) noexcept - : StartConsoleRequest() { - *this = ::std::move(from); - } - + ~StartConsoleRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR StartConsoleRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline StartConsoleRequest(const StartConsoleRequest& from) : StartConsoleRequest(nullptr, from) {} + inline StartConsoleRequest(StartConsoleRequest&& from) noexcept + : StartConsoleRequest(nullptr, std::move(from)) {} inline StartConsoleRequest& operator=(const StartConsoleRequest& from) { CopyFrom(from); return *this; @@ -5175,9 +5394,9 @@ class StartConsoleRequest final : inline StartConsoleRequest& operator=(StartConsoleRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5209,22 +5428,17 @@ class StartConsoleRequest final : } static inline const StartConsoleRequest* internal_default_instance() { return reinterpret_cast( - &_StartConsoleRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(StartConsoleRequest& a, StartConsoleRequest& b) { - a.Swap(&b); + &_StartConsoleRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(StartConsoleRequest& a, StartConsoleRequest& b) { a.Swap(&b); } inline void Swap(StartConsoleRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5238,52 +5452,69 @@ class StartConsoleRequest final : // implements Message ---------------------------------------------- - StartConsoleRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + StartConsoleRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const StartConsoleRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const StartConsoleRequest& from) { - StartConsoleRequest::MergeImpl(*this, from); - } + void MergeFrom(const StartConsoleRequest& from) { StartConsoleRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(StartConsoleRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.StartConsoleRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.StartConsoleRequest"; } + + protected: explicit StartConsoleRequest(::google::protobuf::Arena* arena); StartConsoleRequest(::google::protobuf::Arena* arena, const StartConsoleRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + StartConsoleRequest(::google::protobuf::Arena* arena, StartConsoleRequest&& from) noexcept + : StartConsoleRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSessionTypeFieldNumber = 2, kResultIdFieldNumber = 1, @@ -5322,12 +5553,15 @@ class StartConsoleRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 81, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_StartConsoleRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5335,13 +5569,13 @@ class StartConsoleRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const StartConsoleRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr session_type_; @@ -5350,23 +5584,21 @@ class StartConsoleRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ParameterInformation final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ParameterInformation) */ { +class ParameterInformation final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ParameterInformation) */ { public: inline ParameterInformation() : ParameterInformation(nullptr) {} - ~ParameterInformation() override; - template - explicit PROTOBUF_CONSTEXPR ParameterInformation(::google::protobuf::internal::ConstantInitialized); - - inline ParameterInformation(const ParameterInformation& from) - : ParameterInformation(nullptr, from) {} - ParameterInformation(ParameterInformation&& from) noexcept - : ParameterInformation() { - *this = ::std::move(from); - } - + ~ParameterInformation() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ParameterInformation( + ::google::protobuf::internal::ConstantInitialized); + + inline ParameterInformation(const ParameterInformation& from) : ParameterInformation(nullptr, from) {} + inline ParameterInformation(ParameterInformation&& from) noexcept + : ParameterInformation(nullptr, std::move(from)) {} inline ParameterInformation& operator=(const ParameterInformation& from) { CopyFrom(from); return *this; @@ -5374,9 +5606,9 @@ class ParameterInformation final : inline ParameterInformation& operator=(ParameterInformation&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5408,22 +5640,17 @@ class ParameterInformation final : } static inline const ParameterInformation* internal_default_instance() { return reinterpret_cast( - &_ParameterInformation_default_instance_); - } - static constexpr int kIndexInFileMessages = - 37; - - friend void swap(ParameterInformation& a, ParameterInformation& b) { - a.Swap(&b); + &_ParameterInformation_default_instance_); } + static constexpr int kIndexInFileMessages = 37; + friend void swap(ParameterInformation& a, ParameterInformation& b) { a.Swap(&b); } inline void Swap(ParameterInformation* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5437,52 +5664,69 @@ class ParameterInformation final : // implements Message ---------------------------------------------- - ParameterInformation* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ParameterInformation* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ParameterInformation& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ParameterInformation& from) { - ParameterInformation::MergeImpl(*this, from); - } + void MergeFrom(const ParameterInformation& from) { ParameterInformation::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ParameterInformation* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.ParameterInformation"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.ParameterInformation"; } + + protected: explicit ParameterInformation(::google::protobuf::Arena* arena); ParameterInformation(::google::protobuf::Arena* arena, const ParameterInformation& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ParameterInformation(::google::protobuf::Arena* arena, ParameterInformation&& from) noexcept + : ParameterInformation(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kLabelFieldNumber = 1, kDocumentationFieldNumber = 2, @@ -5521,12 +5765,15 @@ class ParameterInformation final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ParameterInformation) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ParameterInformation_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5534,13 +5781,13 @@ class ParameterInformation final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ParameterInformation& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr label_; @@ -5549,23 +5796,21 @@ class ParameterInformation final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class OpenDocumentRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) */ { +class OpenDocumentRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) */ { public: inline OpenDocumentRequest() : OpenDocumentRequest(nullptr) {} - ~OpenDocumentRequest() override; - template - explicit PROTOBUF_CONSTEXPR OpenDocumentRequest(::google::protobuf::internal::ConstantInitialized); - - inline OpenDocumentRequest(const OpenDocumentRequest& from) - : OpenDocumentRequest(nullptr, from) {} - OpenDocumentRequest(OpenDocumentRequest&& from) noexcept - : OpenDocumentRequest() { - *this = ::std::move(from); - } - + ~OpenDocumentRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR OpenDocumentRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline OpenDocumentRequest(const OpenDocumentRequest& from) : OpenDocumentRequest(nullptr, from) {} + inline OpenDocumentRequest(OpenDocumentRequest&& from) noexcept + : OpenDocumentRequest(nullptr, std::move(from)) {} inline OpenDocumentRequest& operator=(const OpenDocumentRequest& from) { CopyFrom(from); return *this; @@ -5573,9 +5818,9 @@ class OpenDocumentRequest final : inline OpenDocumentRequest& operator=(OpenDocumentRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5607,22 +5852,17 @@ class OpenDocumentRequest final : } static inline const OpenDocumentRequest* internal_default_instance() { return reinterpret_cast( - &_OpenDocumentRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 19; - - friend void swap(OpenDocumentRequest& a, OpenDocumentRequest& b) { - a.Swap(&b); + &_OpenDocumentRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 19; + friend void swap(OpenDocumentRequest& a, OpenDocumentRequest& b) { a.Swap(&b); } inline void Swap(OpenDocumentRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5636,52 +5876,69 @@ class OpenDocumentRequest final : // implements Message ---------------------------------------------- - OpenDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + OpenDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const OpenDocumentRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const OpenDocumentRequest& from) { - OpenDocumentRequest::MergeImpl(*this, from); - } + void MergeFrom(const OpenDocumentRequest& from) { OpenDocumentRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(OpenDocumentRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest"; } + + protected: explicit OpenDocumentRequest(::google::protobuf::Arena* arena); OpenDocumentRequest(::google::protobuf::Arena* arena, const OpenDocumentRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + OpenDocumentRequest(::google::protobuf::Arena* arena, OpenDocumentRequest&& from) noexcept + : OpenDocumentRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 1, kTextDocumentFieldNumber = 2, @@ -5719,12 +5976,15 @@ class OpenDocumentRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_OpenDocumentRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5732,13 +5992,13 @@ class OpenDocumentRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const OpenDocumentRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; @@ -5747,23 +6007,21 @@ class OpenDocumentRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetHoverRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) */ { +class GetHoverRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) */ { public: inline GetHoverRequest() : GetHoverRequest(nullptr) {} - ~GetHoverRequest() override; - template - explicit PROTOBUF_CONSTEXPR GetHoverRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetHoverRequest(const GetHoverRequest& from) - : GetHoverRequest(nullptr, from) {} - GetHoverRequest(GetHoverRequest&& from) noexcept - : GetHoverRequest() { - *this = ::std::move(from); - } - + ~GetHoverRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetHoverRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline GetHoverRequest(const GetHoverRequest& from) : GetHoverRequest(nullptr, from) {} + inline GetHoverRequest(GetHoverRequest&& from) noexcept + : GetHoverRequest(nullptr, std::move(from)) {} inline GetHoverRequest& operator=(const GetHoverRequest& from) { CopyFrom(from); return *this; @@ -5771,9 +6029,9 @@ class GetHoverRequest final : inline GetHoverRequest& operator=(GetHoverRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5805,22 +6063,17 @@ class GetHoverRequest final : } static inline const GetHoverRequest* internal_default_instance() { return reinterpret_cast( - &_GetHoverRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 38; - - friend void swap(GetHoverRequest& a, GetHoverRequest& b) { - a.Swap(&b); + &_GetHoverRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 38; + friend void swap(GetHoverRequest& a, GetHoverRequest& b) { a.Swap(&b); } inline void Swap(GetHoverRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5834,52 +6087,69 @@ class GetHoverRequest final : // implements Message ---------------------------------------------- - GetHoverRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetHoverRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetHoverRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetHoverRequest& from) { - GetHoverRequest::MergeImpl(*this, from); - } + void MergeFrom(const GetHoverRequest& from) { GetHoverRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetHoverRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetHoverRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetHoverRequest"; } + + protected: explicit GetHoverRequest(::google::protobuf::Arena* arena); GetHoverRequest(::google::protobuf::Arena* arena, const GetHoverRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetHoverRequest(::google::protobuf::Arena* arena, GetHoverRequest&& from) noexcept + : GetHoverRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTextDocumentFieldNumber = 1, kPositionFieldNumber = 2, @@ -5917,12 +6187,15 @@ class GetHoverRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetHoverRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5930,13 +6203,13 @@ class GetHoverRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetHoverRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; @@ -5945,23 +6218,21 @@ class GetHoverRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetDiagnosticRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) */ { +class GetDiagnosticRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) */ { public: inline GetDiagnosticRequest() : GetDiagnosticRequest(nullptr) {} - ~GetDiagnosticRequest() override; - template - explicit PROTOBUF_CONSTEXPR GetDiagnosticRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetDiagnosticRequest(const GetDiagnosticRequest& from) - : GetDiagnosticRequest(nullptr, from) {} - GetDiagnosticRequest(GetDiagnosticRequest&& from) noexcept - : GetDiagnosticRequest() { - *this = ::std::move(from); - } - + ~GetDiagnosticRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetDiagnosticRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline GetDiagnosticRequest(const GetDiagnosticRequest& from) : GetDiagnosticRequest(nullptr, from) {} + inline GetDiagnosticRequest(GetDiagnosticRequest&& from) noexcept + : GetDiagnosticRequest(nullptr, std::move(from)) {} inline GetDiagnosticRequest& operator=(const GetDiagnosticRequest& from) { CopyFrom(from); return *this; @@ -5969,9 +6240,9 @@ class GetDiagnosticRequest final : inline GetDiagnosticRequest& operator=(GetDiagnosticRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6003,22 +6274,17 @@ class GetDiagnosticRequest final : } static inline const GetDiagnosticRequest* internal_default_instance() { return reinterpret_cast( - &_GetDiagnosticRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 40; - - friend void swap(GetDiagnosticRequest& a, GetDiagnosticRequest& b) { - a.Swap(&b); + &_GetDiagnosticRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 40; + friend void swap(GetDiagnosticRequest& a, GetDiagnosticRequest& b) { a.Swap(&b); } inline void Swap(GetDiagnosticRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6032,52 +6298,69 @@ class GetDiagnosticRequest final : // implements Message ---------------------------------------------- - GetDiagnosticRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetDiagnosticRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetDiagnosticRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetDiagnosticRequest& from) { - GetDiagnosticRequest::MergeImpl(*this, from); - } + void MergeFrom(const GetDiagnosticRequest& from) { GetDiagnosticRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetDiagnosticRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest"; } + + protected: explicit GetDiagnosticRequest(::google::protobuf::Arena* arena); GetDiagnosticRequest(::google::protobuf::Arena* arena, const GetDiagnosticRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetDiagnosticRequest(::google::protobuf::Arena* arena, GetDiagnosticRequest&& from) noexcept + : GetDiagnosticRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kIdentifierFieldNumber = 2, kPreviousResultIdFieldNumber = 3, @@ -6135,12 +6418,15 @@ class GetDiagnosticRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 98, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetDiagnosticRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -6148,13 +6434,13 @@ class GetDiagnosticRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetDiagnosticRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr identifier_; @@ -6164,23 +6450,21 @@ class GetDiagnosticRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetCompletionItemsRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) */ { +class GetCompletionItemsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) */ { public: inline GetCompletionItemsRequest() : GetCompletionItemsRequest(nullptr) {} - ~GetCompletionItemsRequest() override; - template - explicit PROTOBUF_CONSTEXPR GetCompletionItemsRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetCompletionItemsRequest(const GetCompletionItemsRequest& from) - : GetCompletionItemsRequest(nullptr, from) {} - GetCompletionItemsRequest(GetCompletionItemsRequest&& from) noexcept - : GetCompletionItemsRequest() { - *this = ::std::move(from); - } - + ~GetCompletionItemsRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetCompletionItemsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline GetCompletionItemsRequest(const GetCompletionItemsRequest& from) : GetCompletionItemsRequest(nullptr, from) {} + inline GetCompletionItemsRequest(GetCompletionItemsRequest&& from) noexcept + : GetCompletionItemsRequest(nullptr, std::move(from)) {} inline GetCompletionItemsRequest& operator=(const GetCompletionItemsRequest& from) { CopyFrom(from); return *this; @@ -6188,9 +6472,9 @@ class GetCompletionItemsRequest final : inline GetCompletionItemsRequest& operator=(GetCompletionItemsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6222,22 +6506,17 @@ class GetCompletionItemsRequest final : } static inline const GetCompletionItemsRequest* internal_default_instance() { return reinterpret_cast( - &_GetCompletionItemsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 28; - - friend void swap(GetCompletionItemsRequest& a, GetCompletionItemsRequest& b) { - a.Swap(&b); + &_GetCompletionItemsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 28; + friend void swap(GetCompletionItemsRequest& a, GetCompletionItemsRequest& b) { a.Swap(&b); } inline void Swap(GetCompletionItemsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6251,52 +6530,69 @@ class GetCompletionItemsRequest final : // implements Message ---------------------------------------------- - GetCompletionItemsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetCompletionItemsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetCompletionItemsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetCompletionItemsRequest& from) { - GetCompletionItemsRequest::MergeImpl(*this, from); - } + void MergeFrom(const GetCompletionItemsRequest& from) { GetCompletionItemsRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetCompletionItemsRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest"; } + + protected: explicit GetCompletionItemsRequest(::google::protobuf::Arena* arena); GetCompletionItemsRequest(::google::protobuf::Arena* arena, const GetCompletionItemsRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetCompletionItemsRequest(::google::protobuf::Arena* arena, GetCompletionItemsRequest&& from) noexcept + : GetCompletionItemsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 1, kContextFieldNumber = 2, @@ -6377,12 +6673,15 @@ class GetCompletionItemsRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 4, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetCompletionItemsRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -6390,13 +6689,13 @@ class GetCompletionItemsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetCompletionItemsRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; @@ -6408,23 +6707,21 @@ class GetCompletionItemsRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_SourceDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) */ { +class FigureDescriptor_SourceDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) */ { public: inline FigureDescriptor_SourceDescriptor() : FigureDescriptor_SourceDescriptor(nullptr) {} - ~FigureDescriptor_SourceDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_SourceDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_SourceDescriptor(const FigureDescriptor_SourceDescriptor& from) - : FigureDescriptor_SourceDescriptor(nullptr, from) {} - FigureDescriptor_SourceDescriptor(FigureDescriptor_SourceDescriptor&& from) noexcept - : FigureDescriptor_SourceDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_SourceDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_SourceDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_SourceDescriptor(const FigureDescriptor_SourceDescriptor& from) : FigureDescriptor_SourceDescriptor(nullptr, from) {} + inline FigureDescriptor_SourceDescriptor(FigureDescriptor_SourceDescriptor&& from) noexcept + : FigureDescriptor_SourceDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_SourceDescriptor& operator=(const FigureDescriptor_SourceDescriptor& from) { CopyFrom(from); return *this; @@ -6432,9 +6729,9 @@ class FigureDescriptor_SourceDescriptor final : inline FigureDescriptor_SourceDescriptor& operator=(FigureDescriptor_SourceDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6466,22 +6763,17 @@ class FigureDescriptor_SourceDescriptor final : } static inline const FigureDescriptor_SourceDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_SourceDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 57; - - friend void swap(FigureDescriptor_SourceDescriptor& a, FigureDescriptor_SourceDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_SourceDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 57; + friend void swap(FigureDescriptor_SourceDescriptor& a, FigureDescriptor_SourceDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_SourceDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6495,52 +6787,69 @@ class FigureDescriptor_SourceDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_SourceDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_SourceDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_SourceDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_SourceDescriptor& from) { - FigureDescriptor_SourceDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_SourceDescriptor& from) { FigureDescriptor_SourceDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_SourceDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor"; } + + protected: explicit FigureDescriptor_SourceDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_SourceDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_SourceDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_SourceDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_SourceDescriptor&& from) noexcept + : FigureDescriptor_SourceDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAxisIdFieldNumber = 1, kColumnNameFieldNumber = 5, @@ -6646,12 +6955,15 @@ class FigureDescriptor_SourceDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 7, 1, 112, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_SourceDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -6659,13 +6971,13 @@ class FigureDescriptor_SourceDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_SourceDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr axis_id_; @@ -6679,23 +6991,21 @@ class FigureDescriptor_SourceDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_MultiSeriesDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) */ { +class FigureDescriptor_MultiSeriesDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) */ { public: inline FigureDescriptor_MultiSeriesDescriptor() : FigureDescriptor_MultiSeriesDescriptor(nullptr) {} - ~FigureDescriptor_MultiSeriesDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_MultiSeriesDescriptor(const FigureDescriptor_MultiSeriesDescriptor& from) - : FigureDescriptor_MultiSeriesDescriptor(nullptr, from) {} - FigureDescriptor_MultiSeriesDescriptor(FigureDescriptor_MultiSeriesDescriptor&& from) noexcept - : FigureDescriptor_MultiSeriesDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_MultiSeriesDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_MultiSeriesDescriptor(const FigureDescriptor_MultiSeriesDescriptor& from) : FigureDescriptor_MultiSeriesDescriptor(nullptr, from) {} + inline FigureDescriptor_MultiSeriesDescriptor(FigureDescriptor_MultiSeriesDescriptor&& from) noexcept + : FigureDescriptor_MultiSeriesDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_MultiSeriesDescriptor& operator=(const FigureDescriptor_MultiSeriesDescriptor& from) { CopyFrom(from); return *this; @@ -6703,9 +7013,9 @@ class FigureDescriptor_MultiSeriesDescriptor final : inline FigureDescriptor_MultiSeriesDescriptor& operator=(FigureDescriptor_MultiSeriesDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6737,22 +7047,17 @@ class FigureDescriptor_MultiSeriesDescriptor final : } static inline const FigureDescriptor_MultiSeriesDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_MultiSeriesDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 47; - - friend void swap(FigureDescriptor_MultiSeriesDescriptor& a, FigureDescriptor_MultiSeriesDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_MultiSeriesDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 47; + friend void swap(FigureDescriptor_MultiSeriesDescriptor& a, FigureDescriptor_MultiSeriesDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_MultiSeriesDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6766,52 +7071,69 @@ class FigureDescriptor_MultiSeriesDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_MultiSeriesDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_MultiSeriesDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_MultiSeriesDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_MultiSeriesDescriptor& from) { - FigureDescriptor_MultiSeriesDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_MultiSeriesDescriptor& from) { FigureDescriptor_MultiSeriesDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_MultiSeriesDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor"; } + + protected: explicit FigureDescriptor_MultiSeriesDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_MultiSeriesDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_MultiSeriesDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_MultiSeriesDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_MultiSeriesDescriptor&& from) noexcept + : FigureDescriptor_MultiSeriesDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kDataSourcesFieldNumber = 14, kNameFieldNumber = 2, @@ -6836,16 +7158,15 @@ class FigureDescriptor_MultiSeriesDescriptor final : public: void clear_data_sources() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* mutable_data_sources(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor >* - mutable_data_sources(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>* mutable_data_sources(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>& _internal_data_sources() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>* _internal_mutable_data_sources(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor& data_sources(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* add_data_sources(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor >& - data_sources() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>& data_sources() const; // string name = 2; void clear_name() ; const std::string& name() const; @@ -7040,12 +7361,15 @@ class FigureDescriptor_MultiSeriesDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 14, 12, 100, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_MultiSeriesDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7053,13 +7377,13 @@ class FigureDescriptor_MultiSeriesDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_MultiSeriesDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor > data_sources_; @@ -7080,23 +7404,21 @@ class FigureDescriptor_MultiSeriesDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) */ { +class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) */ { public: inline FigureDescriptor_BusinessCalendarDescriptor_Holiday() : FigureDescriptor_BusinessCalendarDescriptor_Holiday(nullptr) {} - ~FigureDescriptor_BusinessCalendarDescriptor_Holiday() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_Holiday(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_BusinessCalendarDescriptor_Holiday(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) - : FigureDescriptor_BusinessCalendarDescriptor_Holiday(nullptr, from) {} - FigureDescriptor_BusinessCalendarDescriptor_Holiday(FigureDescriptor_BusinessCalendarDescriptor_Holiday&& from) noexcept - : FigureDescriptor_BusinessCalendarDescriptor_Holiday() { - *this = ::std::move(from); - } - + ~FigureDescriptor_BusinessCalendarDescriptor_Holiday() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_Holiday( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_BusinessCalendarDescriptor_Holiday(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) : FigureDescriptor_BusinessCalendarDescriptor_Holiday(nullptr, from) {} + inline FigureDescriptor_BusinessCalendarDescriptor_Holiday(FigureDescriptor_BusinessCalendarDescriptor_Holiday&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_Holiday(nullptr, std::move(from)) {} inline FigureDescriptor_BusinessCalendarDescriptor_Holiday& operator=(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) { CopyFrom(from); return *this; @@ -7104,9 +7426,9 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : inline FigureDescriptor_BusinessCalendarDescriptor_Holiday& operator=(FigureDescriptor_BusinessCalendarDescriptor_Holiday&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7138,22 +7460,17 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : } static inline const FigureDescriptor_BusinessCalendarDescriptor_Holiday* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_); - } - static constexpr int kIndexInFileMessages = - 53; - - friend void swap(FigureDescriptor_BusinessCalendarDescriptor_Holiday& a, FigureDescriptor_BusinessCalendarDescriptor_Holiday& b) { - a.Swap(&b); + &_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_); } + static constexpr int kIndexInFileMessages = 53; + friend void swap(FigureDescriptor_BusinessCalendarDescriptor_Holiday& a, FigureDescriptor_BusinessCalendarDescriptor_Holiday& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7167,52 +7484,69 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : // implements Message ---------------------------------------------- - FigureDescriptor_BusinessCalendarDescriptor_Holiday* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_BusinessCalendarDescriptor_Holiday* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) { - FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) { FigureDescriptor_BusinessCalendarDescriptor_Holiday::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday"; } + + protected: explicit FigureDescriptor_BusinessCalendarDescriptor_Holiday(::google::protobuf::Arena* arena); FigureDescriptor_BusinessCalendarDescriptor_Holiday(::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_BusinessCalendarDescriptor_Holiday(::google::protobuf::Arena* arena, FigureDescriptor_BusinessCalendarDescriptor_Holiday&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor_Holiday(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kBusinessPeriodsFieldNumber = 2, kDateFieldNumber = 1, @@ -7225,16 +7559,15 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : public: void clear_business_periods() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* mutable_business_periods(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod >* - mutable_business_periods(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* mutable_business_periods(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& _internal_business_periods() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* _internal_mutable_business_periods(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& business_periods(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* add_business_periods(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod >& - business_periods() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& business_periods() const; // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; bool has_date() const; void clear_date() ; @@ -7253,12 +7586,15 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7266,13 +7602,13 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod > business_periods_; @@ -7281,23 +7617,21 @@ class FigureDescriptor_BusinessCalendarDescriptor_Holiday final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExecuteCommandRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) */ { +class ExecuteCommandRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) */ { public: inline ExecuteCommandRequest() : ExecuteCommandRequest(nullptr) {} - ~ExecuteCommandRequest() override; - template - explicit PROTOBUF_CONSTEXPR ExecuteCommandRequest(::google::protobuf::internal::ConstantInitialized); - - inline ExecuteCommandRequest(const ExecuteCommandRequest& from) - : ExecuteCommandRequest(nullptr, from) {} - ExecuteCommandRequest(ExecuteCommandRequest&& from) noexcept - : ExecuteCommandRequest() { - *this = ::std::move(from); - } - + ~ExecuteCommandRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExecuteCommandRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ExecuteCommandRequest(const ExecuteCommandRequest& from) : ExecuteCommandRequest(nullptr, from) {} + inline ExecuteCommandRequest(ExecuteCommandRequest&& from) noexcept + : ExecuteCommandRequest(nullptr, std::move(from)) {} inline ExecuteCommandRequest& operator=(const ExecuteCommandRequest& from) { CopyFrom(from); return *this; @@ -7305,9 +7639,9 @@ class ExecuteCommandRequest final : inline ExecuteCommandRequest& operator=(ExecuteCommandRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7339,22 +7673,17 @@ class ExecuteCommandRequest final : } static inline const ExecuteCommandRequest* internal_default_instance() { return reinterpret_cast( - &_ExecuteCommandRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 8; - - friend void swap(ExecuteCommandRequest& a, ExecuteCommandRequest& b) { - a.Swap(&b); + &_ExecuteCommandRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 8; + friend void swap(ExecuteCommandRequest& a, ExecuteCommandRequest& b) { a.Swap(&b); } inline void Swap(ExecuteCommandRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7368,52 +7697,69 @@ class ExecuteCommandRequest final : // implements Message ---------------------------------------------- - ExecuteCommandRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExecuteCommandRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExecuteCommandRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExecuteCommandRequest& from) { - ExecuteCommandRequest::MergeImpl(*this, from); - } + void MergeFrom(const ExecuteCommandRequest& from) { ExecuteCommandRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExecuteCommandRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest"; } + + protected: explicit ExecuteCommandRequest(::google::protobuf::Arena* arena); ExecuteCommandRequest(::google::protobuf::Arena* arena, const ExecuteCommandRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExecuteCommandRequest(::google::protobuf::Arena* arena, ExecuteCommandRequest&& from) noexcept + : ExecuteCommandRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kCodeFieldNumber = 3, kConsoleIdFieldNumber = 1, @@ -7452,12 +7798,15 @@ class ExecuteCommandRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 2, 1, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExecuteCommandRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7465,13 +7814,13 @@ class ExecuteCommandRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExecuteCommandRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr code_; @@ -7480,23 +7829,21 @@ class ExecuteCommandRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class DocumentRange final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.DocumentRange) */ { +class DocumentRange final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.DocumentRange) */ { public: inline DocumentRange() : DocumentRange(nullptr) {} - ~DocumentRange() override; - template - explicit PROTOBUF_CONSTEXPR DocumentRange(::google::protobuf::internal::ConstantInitialized); - - inline DocumentRange(const DocumentRange& from) - : DocumentRange(nullptr, from) {} - DocumentRange(DocumentRange&& from) noexcept - : DocumentRange() { - *this = ::std::move(from); - } - + ~DocumentRange() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR DocumentRange( + ::google::protobuf::internal::ConstantInitialized); + + inline DocumentRange(const DocumentRange& from) : DocumentRange(nullptr, from) {} + inline DocumentRange(DocumentRange&& from) noexcept + : DocumentRange(nullptr, std::move(from)) {} inline DocumentRange& operator=(const DocumentRange& from) { CopyFrom(from); return *this; @@ -7504,9 +7851,9 @@ class DocumentRange final : inline DocumentRange& operator=(DocumentRange&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7538,22 +7885,17 @@ class DocumentRange final : } static inline const DocumentRange* internal_default_instance() { return reinterpret_cast( - &_DocumentRange_default_instance_); - } - static constexpr int kIndexInFileMessages = - 24; - - friend void swap(DocumentRange& a, DocumentRange& b) { - a.Swap(&b); + &_DocumentRange_default_instance_); } + static constexpr int kIndexInFileMessages = 24; + friend void swap(DocumentRange& a, DocumentRange& b) { a.Swap(&b); } inline void Swap(DocumentRange* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7567,52 +7909,69 @@ class DocumentRange final : // implements Message ---------------------------------------------- - DocumentRange* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DocumentRange* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const DocumentRange& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const DocumentRange& from) { - DocumentRange::MergeImpl(*this, from); - } + void MergeFrom(const DocumentRange& from) { DocumentRange::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(DocumentRange* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.DocumentRange"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.DocumentRange"; } + + protected: explicit DocumentRange(::google::protobuf::Arena* arena); DocumentRange(::google::protobuf::Arena* arena, const DocumentRange& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + DocumentRange(::google::protobuf::Arena* arena, DocumentRange&& from) noexcept + : DocumentRange(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kStartFieldNumber = 1, kEndFieldNumber = 2, @@ -7650,12 +8009,15 @@ class DocumentRange final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.DocumentRange) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_DocumentRange_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7663,13 +8025,13 @@ class DocumentRange final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DocumentRange& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::script::grpc::Position* start_; @@ -7678,23 +8040,21 @@ class DocumentRange final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CloseDocumentRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) */ { +class CloseDocumentRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) */ { public: inline CloseDocumentRequest() : CloseDocumentRequest(nullptr) {} - ~CloseDocumentRequest() override; - template - explicit PROTOBUF_CONSTEXPR CloseDocumentRequest(::google::protobuf::internal::ConstantInitialized); - - inline CloseDocumentRequest(const CloseDocumentRequest& from) - : CloseDocumentRequest(nullptr, from) {} - CloseDocumentRequest(CloseDocumentRequest&& from) noexcept - : CloseDocumentRequest() { - *this = ::std::move(from); - } - + ~CloseDocumentRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CloseDocumentRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CloseDocumentRequest(const CloseDocumentRequest& from) : CloseDocumentRequest(nullptr, from) {} + inline CloseDocumentRequest(CloseDocumentRequest&& from) noexcept + : CloseDocumentRequest(nullptr, std::move(from)) {} inline CloseDocumentRequest& operator=(const CloseDocumentRequest& from) { CopyFrom(from); return *this; @@ -7702,9 +8062,9 @@ class CloseDocumentRequest final : inline CloseDocumentRequest& operator=(CloseDocumentRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7736,22 +8096,17 @@ class CloseDocumentRequest final : } static inline const CloseDocumentRequest* internal_default_instance() { return reinterpret_cast( - &_CloseDocumentRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 21; - - friend void swap(CloseDocumentRequest& a, CloseDocumentRequest& b) { - a.Swap(&b); + &_CloseDocumentRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 21; + friend void swap(CloseDocumentRequest& a, CloseDocumentRequest& b) { a.Swap(&b); } inline void Swap(CloseDocumentRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7765,52 +8120,69 @@ class CloseDocumentRequest final : // implements Message ---------------------------------------------- - CloseDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CloseDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CloseDocumentRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CloseDocumentRequest& from) { - CloseDocumentRequest::MergeImpl(*this, from); - } + void MergeFrom(const CloseDocumentRequest& from) { CloseDocumentRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CloseDocumentRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest"; } + + protected: explicit CloseDocumentRequest(::google::protobuf::Arena* arena); CloseDocumentRequest(::google::protobuf::Arena* arena, const CloseDocumentRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CloseDocumentRequest(::google::protobuf::Arena* arena, CloseDocumentRequest&& from) noexcept + : CloseDocumentRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 1, kTextDocumentFieldNumber = 2, @@ -7848,12 +8220,15 @@ class CloseDocumentRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CloseDocumentRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7861,13 +8236,13 @@ class CloseDocumentRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CloseDocumentRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; @@ -7876,23 +8251,21 @@ class CloseDocumentRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CancelCommandRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) */ { +class CancelCommandRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) */ { public: inline CancelCommandRequest() : CancelCommandRequest(nullptr) {} - ~CancelCommandRequest() override; - template - explicit PROTOBUF_CONSTEXPR CancelCommandRequest(::google::protobuf::internal::ConstantInitialized); - - inline CancelCommandRequest(const CancelCommandRequest& from) - : CancelCommandRequest(nullptr, from) {} - CancelCommandRequest(CancelCommandRequest&& from) noexcept - : CancelCommandRequest() { - *this = ::std::move(from); - } - + ~CancelCommandRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CancelCommandRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CancelCommandRequest(const CancelCommandRequest& from) : CancelCommandRequest(nullptr, from) {} + inline CancelCommandRequest(CancelCommandRequest&& from) noexcept + : CancelCommandRequest(nullptr, std::move(from)) {} inline CancelCommandRequest& operator=(const CancelCommandRequest& from) { CopyFrom(from); return *this; @@ -7900,9 +8273,9 @@ class CancelCommandRequest final : inline CancelCommandRequest& operator=(CancelCommandRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7934,22 +8307,17 @@ class CancelCommandRequest final : } static inline const CancelCommandRequest* internal_default_instance() { return reinterpret_cast( - &_CancelCommandRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 12; - - friend void swap(CancelCommandRequest& a, CancelCommandRequest& b) { - a.Swap(&b); + &_CancelCommandRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 12; + friend void swap(CancelCommandRequest& a, CancelCommandRequest& b) { a.Swap(&b); } inline void Swap(CancelCommandRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7963,52 +8331,69 @@ class CancelCommandRequest final : // implements Message ---------------------------------------------- - CancelCommandRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CancelCommandRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CancelCommandRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CancelCommandRequest& from) { - CancelCommandRequest::MergeImpl(*this, from); - } + void MergeFrom(const CancelCommandRequest& from) { CancelCommandRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CancelCommandRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CancelCommandRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CancelCommandRequest"; } + + protected: explicit CancelCommandRequest(::google::protobuf::Arena* arena); CancelCommandRequest(::google::protobuf::Arena* arena, const CancelCommandRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CancelCommandRequest(::google::protobuf::Arena* arena, CancelCommandRequest&& from) noexcept + : CancelCommandRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 1, kCommandIdFieldNumber = 2, @@ -8046,12 +8431,15 @@ class CancelCommandRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CancelCommandRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8059,13 +8447,13 @@ class CancelCommandRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CancelCommandRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; @@ -8074,23 +8462,21 @@ class CancelCommandRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CancelAutoCompleteRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) */ { +class CancelAutoCompleteRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) */ { public: inline CancelAutoCompleteRequest() : CancelAutoCompleteRequest(nullptr) {} - ~CancelAutoCompleteRequest() override; - template - explicit PROTOBUF_CONSTEXPR CancelAutoCompleteRequest(::google::protobuf::internal::ConstantInitialized); - - inline CancelAutoCompleteRequest(const CancelAutoCompleteRequest& from) - : CancelAutoCompleteRequest(nullptr, from) {} - CancelAutoCompleteRequest(CancelAutoCompleteRequest&& from) noexcept - : CancelAutoCompleteRequest() { - *this = ::std::move(from); - } - + ~CancelAutoCompleteRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CancelAutoCompleteRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CancelAutoCompleteRequest(const CancelAutoCompleteRequest& from) : CancelAutoCompleteRequest(nullptr, from) {} + inline CancelAutoCompleteRequest(CancelAutoCompleteRequest&& from) noexcept + : CancelAutoCompleteRequest(nullptr, std::move(from)) {} inline CancelAutoCompleteRequest& operator=(const CancelAutoCompleteRequest& from) { CopyFrom(from); return *this; @@ -8098,9 +8484,9 @@ class CancelAutoCompleteRequest final : inline CancelAutoCompleteRequest& operator=(CancelAutoCompleteRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8132,22 +8518,17 @@ class CancelAutoCompleteRequest final : } static inline const CancelAutoCompleteRequest* internal_default_instance() { return reinterpret_cast( - &_CancelAutoCompleteRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 14; - - friend void swap(CancelAutoCompleteRequest& a, CancelAutoCompleteRequest& b) { - a.Swap(&b); + &_CancelAutoCompleteRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 14; + friend void swap(CancelAutoCompleteRequest& a, CancelAutoCompleteRequest& b) { a.Swap(&b); } inline void Swap(CancelAutoCompleteRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8161,52 +8542,69 @@ class CancelAutoCompleteRequest final : // implements Message ---------------------------------------------- - CancelAutoCompleteRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CancelAutoCompleteRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CancelAutoCompleteRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CancelAutoCompleteRequest& from) { - CancelAutoCompleteRequest::MergeImpl(*this, from); - } + void MergeFrom(const CancelAutoCompleteRequest& from) { CancelAutoCompleteRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CancelAutoCompleteRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest"; } + + protected: explicit CancelAutoCompleteRequest(::google::protobuf::Arena* arena); CancelAutoCompleteRequest(::google::protobuf::Arena* arena, const CancelAutoCompleteRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CancelAutoCompleteRequest(::google::protobuf::Arena* arena, CancelAutoCompleteRequest&& from) noexcept + : CancelAutoCompleteRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 1, kRequestIdFieldNumber = 2, @@ -8239,12 +8637,15 @@ class CancelAutoCompleteRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CancelAutoCompleteRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8252,13 +8653,13 @@ class CancelAutoCompleteRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CancelAutoCompleteRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; @@ -8267,23 +8668,21 @@ class CancelAutoCompleteRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class BindTableToVariableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) */ { +class BindTableToVariableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) */ { public: inline BindTableToVariableRequest() : BindTableToVariableRequest(nullptr) {} - ~BindTableToVariableRequest() override; - template - explicit PROTOBUF_CONSTEXPR BindTableToVariableRequest(::google::protobuf::internal::ConstantInitialized); - - inline BindTableToVariableRequest(const BindTableToVariableRequest& from) - : BindTableToVariableRequest(nullptr, from) {} - BindTableToVariableRequest(BindTableToVariableRequest&& from) noexcept - : BindTableToVariableRequest() { - *this = ::std::move(from); - } - + ~BindTableToVariableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR BindTableToVariableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline BindTableToVariableRequest(const BindTableToVariableRequest& from) : BindTableToVariableRequest(nullptr, from) {} + inline BindTableToVariableRequest(BindTableToVariableRequest&& from) noexcept + : BindTableToVariableRequest(nullptr, std::move(from)) {} inline BindTableToVariableRequest& operator=(const BindTableToVariableRequest& from) { CopyFrom(from); return *this; @@ -8291,9 +8690,9 @@ class BindTableToVariableRequest final : inline BindTableToVariableRequest& operator=(BindTableToVariableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8325,22 +8724,17 @@ class BindTableToVariableRequest final : } static inline const BindTableToVariableRequest* internal_default_instance() { return reinterpret_cast( - &_BindTableToVariableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 10; - - friend void swap(BindTableToVariableRequest& a, BindTableToVariableRequest& b) { - a.Swap(&b); + &_BindTableToVariableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 10; + friend void swap(BindTableToVariableRequest& a, BindTableToVariableRequest& b) { a.Swap(&b); } inline void Swap(BindTableToVariableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8354,52 +8748,69 @@ class BindTableToVariableRequest final : // implements Message ---------------------------------------------- - BindTableToVariableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BindTableToVariableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const BindTableToVariableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const BindTableToVariableRequest& from) { - BindTableToVariableRequest::MergeImpl(*this, from); - } + void MergeFrom(const BindTableToVariableRequest& from) { BindTableToVariableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(BindTableToVariableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest"; } + + protected: explicit BindTableToVariableRequest(::google::protobuf::Arena* arena); BindTableToVariableRequest(::google::protobuf::Arena* arena, const BindTableToVariableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + BindTableToVariableRequest(::google::protobuf::Arena* arena, BindTableToVariableRequest&& from) noexcept + : BindTableToVariableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kVariableNameFieldNumber = 3, kConsoleIdFieldNumber = 1, @@ -8454,12 +8865,15 @@ class BindTableToVariableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 89, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_BindTableToVariableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8467,13 +8881,13 @@ class BindTableToVariableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BindTableToVariableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr variable_name_; @@ -8483,23 +8897,21 @@ class BindTableToVariableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TextEdit final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.TextEdit) */ { +class TextEdit final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.TextEdit) */ { public: inline TextEdit() : TextEdit(nullptr) {} - ~TextEdit() override; - template - explicit PROTOBUF_CONSTEXPR TextEdit(::google::protobuf::internal::ConstantInitialized); - - inline TextEdit(const TextEdit& from) - : TextEdit(nullptr, from) {} - TextEdit(TextEdit&& from) noexcept - : TextEdit() { - *this = ::std::move(from); - } - + ~TextEdit() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TextEdit( + ::google::protobuf::internal::ConstantInitialized); + + inline TextEdit(const TextEdit& from) : TextEdit(nullptr, from) {} + inline TextEdit(TextEdit&& from) noexcept + : TextEdit(nullptr, std::move(from)) {} inline TextEdit& operator=(const TextEdit& from) { CopyFrom(from); return *this; @@ -8507,9 +8919,9 @@ class TextEdit final : inline TextEdit& operator=(TextEdit&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8541,22 +8953,17 @@ class TextEdit final : } static inline const TextEdit* internal_default_instance() { return reinterpret_cast( - &_TextEdit_default_instance_); - } - static constexpr int kIndexInFileMessages = - 32; - - friend void swap(TextEdit& a, TextEdit& b) { - a.Swap(&b); + &_TextEdit_default_instance_); } + static constexpr int kIndexInFileMessages = 32; + friend void swap(TextEdit& a, TextEdit& b) { a.Swap(&b); } inline void Swap(TextEdit* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8570,52 +8977,69 @@ class TextEdit final : // implements Message ---------------------------------------------- - TextEdit* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TextEdit* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TextEdit& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TextEdit& from) { - TextEdit::MergeImpl(*this, from); - } + void MergeFrom(const TextEdit& from) { TextEdit::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TextEdit* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.TextEdit"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.TextEdit"; } + + protected: explicit TextEdit(::google::protobuf::Arena* arena); TextEdit(::google::protobuf::Arena* arena, const TextEdit& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TextEdit(::google::protobuf::Arena* arena, TextEdit&& from) noexcept + : TextEdit(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTextFieldNumber = 2, kRangeFieldNumber = 1, @@ -8654,12 +9078,15 @@ class TextEdit final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.TextEdit) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 62, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TextEdit_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8667,13 +9094,13 @@ class TextEdit final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TextEdit& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr text_; @@ -8682,23 +9109,21 @@ class TextEdit final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SignatureInformation final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.SignatureInformation) */ { +class SignatureInformation final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.SignatureInformation) */ { public: inline SignatureInformation() : SignatureInformation(nullptr) {} - ~SignatureInformation() override; - template - explicit PROTOBUF_CONSTEXPR SignatureInformation(::google::protobuf::internal::ConstantInitialized); - - inline SignatureInformation(const SignatureInformation& from) - : SignatureInformation(nullptr, from) {} - SignatureInformation(SignatureInformation&& from) noexcept - : SignatureInformation() { - *this = ::std::move(from); - } - + ~SignatureInformation() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SignatureInformation( + ::google::protobuf::internal::ConstantInitialized); + + inline SignatureInformation(const SignatureInformation& from) : SignatureInformation(nullptr, from) {} + inline SignatureInformation(SignatureInformation&& from) noexcept + : SignatureInformation(nullptr, std::move(from)) {} inline SignatureInformation& operator=(const SignatureInformation& from) { CopyFrom(from); return *this; @@ -8706,9 +9131,9 @@ class SignatureInformation final : inline SignatureInformation& operator=(SignatureInformation&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8740,22 +9165,17 @@ class SignatureInformation final : } static inline const SignatureInformation* internal_default_instance() { return reinterpret_cast( - &_SignatureInformation_default_instance_); - } - static constexpr int kIndexInFileMessages = - 36; - - friend void swap(SignatureInformation& a, SignatureInformation& b) { - a.Swap(&b); + &_SignatureInformation_default_instance_); } + static constexpr int kIndexInFileMessages = 36; + friend void swap(SignatureInformation& a, SignatureInformation& b) { a.Swap(&b); } inline void Swap(SignatureInformation* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8769,52 +9189,69 @@ class SignatureInformation final : // implements Message ---------------------------------------------- - SignatureInformation* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SignatureInformation* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SignatureInformation& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SignatureInformation& from) { - SignatureInformation::MergeImpl(*this, from); - } + void MergeFrom(const SignatureInformation& from) { SignatureInformation::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SignatureInformation* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.SignatureInformation"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.SignatureInformation"; } + + protected: explicit SignatureInformation(::google::protobuf::Arena* arena); SignatureInformation(::google::protobuf::Arena* arena, const SignatureInformation& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SignatureInformation(::google::protobuf::Arena* arena, SignatureInformation&& from) noexcept + : SignatureInformation(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kParametersFieldNumber = 3, kLabelFieldNumber = 1, @@ -8829,16 +9266,15 @@ class SignatureInformation final : public: void clear_parameters() ; ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* mutable_parameters(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ParameterInformation >* - mutable_parameters(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>* mutable_parameters(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>& _internal_parameters() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>* _internal_mutable_parameters(); public: const ::io::deephaven::proto::backplane::script::grpc::ParameterInformation& parameters(int index) const; ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* add_parameters(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ParameterInformation >& - parameters() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>& parameters() const; // string label = 1; void clear_label() ; const std::string& label() const; @@ -8884,12 +9320,15 @@ class SignatureInformation final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.SignatureInformation) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SignatureInformation_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8897,13 +9336,13 @@ class SignatureInformation final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SignatureInformation& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ParameterInformation > parameters_; @@ -8914,23 +9353,21 @@ class SignatureInformation final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetHoverResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) */ { +class GetHoverResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) */ { public: inline GetHoverResponse() : GetHoverResponse(nullptr) {} - ~GetHoverResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetHoverResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetHoverResponse(const GetHoverResponse& from) - : GetHoverResponse(nullptr, from) {} - GetHoverResponse(GetHoverResponse&& from) noexcept - : GetHoverResponse() { - *this = ::std::move(from); - } - + ~GetHoverResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetHoverResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetHoverResponse(const GetHoverResponse& from) : GetHoverResponse(nullptr, from) {} + inline GetHoverResponse(GetHoverResponse&& from) noexcept + : GetHoverResponse(nullptr, std::move(from)) {} inline GetHoverResponse& operator=(const GetHoverResponse& from) { CopyFrom(from); return *this; @@ -8938,9 +9375,9 @@ class GetHoverResponse final : inline GetHoverResponse& operator=(GetHoverResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8972,22 +9409,17 @@ class GetHoverResponse final : } static inline const GetHoverResponse* internal_default_instance() { return reinterpret_cast( - &_GetHoverResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 39; - - friend void swap(GetHoverResponse& a, GetHoverResponse& b) { - a.Swap(&b); + &_GetHoverResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 39; + friend void swap(GetHoverResponse& a, GetHoverResponse& b) { a.Swap(&b); } inline void Swap(GetHoverResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9001,52 +9433,69 @@ class GetHoverResponse final : // implements Message ---------------------------------------------- - GetHoverResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetHoverResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetHoverResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetHoverResponse& from) { - GetHoverResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetHoverResponse& from) { GetHoverResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetHoverResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetHoverResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetHoverResponse"; } + + protected: explicit GetHoverResponse(::google::protobuf::Arena* arena); GetHoverResponse(::google::protobuf::Arena* arena, const GetHoverResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetHoverResponse(::google::protobuf::Arena* arena, GetHoverResponse&& from) noexcept + : GetHoverResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kContentsFieldNumber = 1, kRangeFieldNumber = 2, @@ -9084,12 +9533,15 @@ class GetHoverResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetHoverResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9097,13 +9549,13 @@ class GetHoverResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetHoverResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* contents_; @@ -9112,23 +9564,21 @@ class GetHoverResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_SeriesDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) */ { +class FigureDescriptor_SeriesDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) */ { public: inline FigureDescriptor_SeriesDescriptor() : FigureDescriptor_SeriesDescriptor(nullptr) {} - ~FigureDescriptor_SeriesDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_SeriesDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_SeriesDescriptor(const FigureDescriptor_SeriesDescriptor& from) - : FigureDescriptor_SeriesDescriptor(nullptr, from) {} - FigureDescriptor_SeriesDescriptor(FigureDescriptor_SeriesDescriptor&& from) noexcept - : FigureDescriptor_SeriesDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_SeriesDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_SeriesDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_SeriesDescriptor(const FigureDescriptor_SeriesDescriptor& from) : FigureDescriptor_SeriesDescriptor(nullptr, from) {} + inline FigureDescriptor_SeriesDescriptor(FigureDescriptor_SeriesDescriptor&& from) noexcept + : FigureDescriptor_SeriesDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_SeriesDescriptor& operator=(const FigureDescriptor_SeriesDescriptor& from) { CopyFrom(from); return *this; @@ -9136,9 +9586,9 @@ class FigureDescriptor_SeriesDescriptor final : inline FigureDescriptor_SeriesDescriptor& operator=(FigureDescriptor_SeriesDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9170,22 +9620,17 @@ class FigureDescriptor_SeriesDescriptor final : } static inline const FigureDescriptor_SeriesDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_SeriesDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 46; - - friend void swap(FigureDescriptor_SeriesDescriptor& a, FigureDescriptor_SeriesDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_SeriesDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 46; + friend void swap(FigureDescriptor_SeriesDescriptor& a, FigureDescriptor_SeriesDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_SeriesDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9199,52 +9644,69 @@ class FigureDescriptor_SeriesDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_SeriesDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_SeriesDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_SeriesDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_SeriesDescriptor& from) { - FigureDescriptor_SeriesDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_SeriesDescriptor& from) { FigureDescriptor_SeriesDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_SeriesDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor"; } + + protected: explicit FigureDescriptor_SeriesDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_SeriesDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_SeriesDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_SeriesDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_SeriesDescriptor&& from) noexcept + : FigureDescriptor_SeriesDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kDataSourcesFieldNumber = 15, kNameFieldNumber = 2, @@ -9269,16 +9731,15 @@ class FigureDescriptor_SeriesDescriptor final : public: void clear_data_sources() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* mutable_data_sources(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor >* - mutable_data_sources(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>* mutable_data_sources(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>& _internal_data_sources() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>* _internal_mutable_data_sources(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor& data_sources(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* add_data_sources(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor >& - data_sources() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>& data_sources() const; // string name = 2; void clear_name() ; const std::string& name() const; @@ -9466,12 +9927,15 @@ class FigureDescriptor_SeriesDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 14, 1, 186, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_SeriesDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9479,13 +9943,13 @@ class FigureDescriptor_SeriesDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_SeriesDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor > data_sources_; @@ -9506,23 +9970,21 @@ class FigureDescriptor_SeriesDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_BusinessCalendarDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) */ { +class FigureDescriptor_BusinessCalendarDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) */ { public: inline FigureDescriptor_BusinessCalendarDescriptor() : FigureDescriptor_BusinessCalendarDescriptor(nullptr) {} - ~FigureDescriptor_BusinessCalendarDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_BusinessCalendarDescriptor(const FigureDescriptor_BusinessCalendarDescriptor& from) - : FigureDescriptor_BusinessCalendarDescriptor(nullptr, from) {} - FigureDescriptor_BusinessCalendarDescriptor(FigureDescriptor_BusinessCalendarDescriptor&& from) noexcept - : FigureDescriptor_BusinessCalendarDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_BusinessCalendarDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_BusinessCalendarDescriptor(const FigureDescriptor_BusinessCalendarDescriptor& from) : FigureDescriptor_BusinessCalendarDescriptor(nullptr, from) {} + inline FigureDescriptor_BusinessCalendarDescriptor(FigureDescriptor_BusinessCalendarDescriptor&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_BusinessCalendarDescriptor& operator=(const FigureDescriptor_BusinessCalendarDescriptor& from) { CopyFrom(from); return *this; @@ -9530,9 +9992,9 @@ class FigureDescriptor_BusinessCalendarDescriptor final : inline FigureDescriptor_BusinessCalendarDescriptor& operator=(FigureDescriptor_BusinessCalendarDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9564,22 +10026,17 @@ class FigureDescriptor_BusinessCalendarDescriptor final : } static inline const FigureDescriptor_BusinessCalendarDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_BusinessCalendarDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 55; - - friend void swap(FigureDescriptor_BusinessCalendarDescriptor& a, FigureDescriptor_BusinessCalendarDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_BusinessCalendarDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 55; + friend void swap(FigureDescriptor_BusinessCalendarDescriptor& a, FigureDescriptor_BusinessCalendarDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_BusinessCalendarDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9593,54 +10050,70 @@ class FigureDescriptor_BusinessCalendarDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_BusinessCalendarDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_BusinessCalendarDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_BusinessCalendarDescriptor& from) { - FigureDescriptor_BusinessCalendarDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_BusinessCalendarDescriptor& from) { FigureDescriptor_BusinessCalendarDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor"; } + + protected: explicit FigureDescriptor_BusinessCalendarDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_BusinessCalendarDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_BusinessCalendarDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_BusinessCalendarDescriptor&& from) noexcept + : FigureDescriptor_BusinessCalendarDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using BusinessPeriod = FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod; using Holiday = FigureDescriptor_BusinessCalendarDescriptor_Holiday; using LocalDate = FigureDescriptor_BusinessCalendarDescriptor_LocalDate; - using DayOfWeek = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek; static constexpr DayOfWeek SUNDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_SUNDAY; static constexpr DayOfWeek MONDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_MONDAY; @@ -9667,7 +10140,6 @@ class FigureDescriptor_BusinessCalendarDescriptor final : } // accessors ------------------------------------------------------- - enum : int { kBusinessDaysFieldNumber = 3, kBusinessPeriodsFieldNumber = 4, @@ -9702,16 +10174,15 @@ class FigureDescriptor_BusinessCalendarDescriptor final : public: void clear_business_periods() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* mutable_business_periods(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod >* - mutable_business_periods(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* mutable_business_periods(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& _internal_business_periods() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* _internal_mutable_business_periods(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& business_periods(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* add_business_periods(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod >& - business_periods() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& business_periods() const; // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; int holidays_size() const; private: @@ -9720,16 +10191,15 @@ class FigureDescriptor_BusinessCalendarDescriptor final : public: void clear_holidays() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* mutable_holidays(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday >* - mutable_holidays(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>* mutable_holidays(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>& _internal_holidays() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>* _internal_mutable_holidays(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday& holidays(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* add_holidays(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday >& - holidays() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>& holidays() const; // string name = 1; void clear_name() ; const std::string& name() const; @@ -9765,12 +10235,15 @@ class FigureDescriptor_BusinessCalendarDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 2, 106, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_BusinessCalendarDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9778,13 +10251,13 @@ class FigureDescriptor_BusinessCalendarDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_BusinessCalendarDescriptor& from_msg); ::google::protobuf::RepeatedField business_days_; mutable ::google::protobuf::internal::CachedSize _business_days_cached_byte_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod > business_periods_; @@ -9796,23 +10269,21 @@ class FigureDescriptor_BusinessCalendarDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Diagnostic final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Diagnostic) */ { +class Diagnostic final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.Diagnostic) */ { public: inline Diagnostic() : Diagnostic(nullptr) {} - ~Diagnostic() override; - template - explicit PROTOBUF_CONSTEXPR Diagnostic(::google::protobuf::internal::ConstantInitialized); - - inline Diagnostic(const Diagnostic& from) - : Diagnostic(nullptr, from) {} - Diagnostic(Diagnostic&& from) noexcept - : Diagnostic() { - *this = ::std::move(from); - } - + ~Diagnostic() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Diagnostic( + ::google::protobuf::internal::ConstantInitialized); + + inline Diagnostic(const Diagnostic& from) : Diagnostic(nullptr, from) {} + inline Diagnostic(Diagnostic&& from) noexcept + : Diagnostic(nullptr, std::move(from)) {} inline Diagnostic& operator=(const Diagnostic& from) { CopyFrom(from); return *this; @@ -9820,9 +10291,9 @@ class Diagnostic final : inline Diagnostic& operator=(Diagnostic&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9854,22 +10325,17 @@ class Diagnostic final : } static inline const Diagnostic* internal_default_instance() { return reinterpret_cast( - &_Diagnostic_default_instance_); - } - static constexpr int kIndexInFileMessages = - 44; - - friend void swap(Diagnostic& a, Diagnostic& b) { - a.Swap(&b); + &_Diagnostic_default_instance_); } + static constexpr int kIndexInFileMessages = 44; + friend void swap(Diagnostic& a, Diagnostic& b) { a.Swap(&b); } inline void Swap(Diagnostic* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9883,52 +10349,68 @@ class Diagnostic final : // implements Message ---------------------------------------------- - Diagnostic* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Diagnostic* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Diagnostic& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Diagnostic& from) { - Diagnostic::MergeImpl(*this, from); - } + void MergeFrom(const Diagnostic& from) { Diagnostic::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Diagnostic* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.Diagnostic"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.Diagnostic"; } + + protected: explicit Diagnostic(::google::protobuf::Arena* arena); Diagnostic(::google::protobuf::Arena* arena, const Diagnostic& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Diagnostic(::google::protobuf::Arena* arena, Diagnostic&& from) noexcept + : Diagnostic(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using CodeDescription = Diagnostic_CodeDescription; - using DiagnosticSeverity = Diagnostic_DiagnosticSeverity; static constexpr DiagnosticSeverity NOT_SET_SEVERITY = Diagnostic_DiagnosticSeverity_NOT_SET_SEVERITY; static constexpr DiagnosticSeverity ERROR = Diagnostic_DiagnosticSeverity_ERROR; @@ -9951,7 +10433,6 @@ class Diagnostic final : static inline bool DiagnosticSeverity_Parse(absl::string_view name, DiagnosticSeverity* value) { return Diagnostic_DiagnosticSeverity_Parse(name, value); } - using DiagnosticTag = Diagnostic_DiagnosticTag; static constexpr DiagnosticTag NOT_SET_TAG = Diagnostic_DiagnosticTag_NOT_SET_TAG; static constexpr DiagnosticTag UNNECESSARY = Diagnostic_DiagnosticTag_UNNECESSARY; @@ -9974,7 +10455,6 @@ class Diagnostic final : } // accessors ------------------------------------------------------- - enum : int { kTagsFieldNumber = 7, kCodeFieldNumber = 3, @@ -10114,12 +10594,15 @@ class Diagnostic final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.Diagnostic) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 8, 2, 85, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Diagnostic_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10127,13 +10610,13 @@ class Diagnostic final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Diagnostic& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedField tags_; @@ -10149,23 +10632,21 @@ class Diagnostic final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ChangeDocumentRequest_TextDocumentContentChangeEvent final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) */ { +class ChangeDocumentRequest_TextDocumentContentChangeEvent final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) */ { public: inline ChangeDocumentRequest_TextDocumentContentChangeEvent() : ChangeDocumentRequest_TextDocumentContentChangeEvent(nullptr) {} - ~ChangeDocumentRequest_TextDocumentContentChangeEvent() override; - template - explicit PROTOBUF_CONSTEXPR ChangeDocumentRequest_TextDocumentContentChangeEvent(::google::protobuf::internal::ConstantInitialized); - - inline ChangeDocumentRequest_TextDocumentContentChangeEvent(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) - : ChangeDocumentRequest_TextDocumentContentChangeEvent(nullptr, from) {} - ChangeDocumentRequest_TextDocumentContentChangeEvent(ChangeDocumentRequest_TextDocumentContentChangeEvent&& from) noexcept - : ChangeDocumentRequest_TextDocumentContentChangeEvent() { - *this = ::std::move(from); - } - + ~ChangeDocumentRequest_TextDocumentContentChangeEvent() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ChangeDocumentRequest_TextDocumentContentChangeEvent( + ::google::protobuf::internal::ConstantInitialized); + + inline ChangeDocumentRequest_TextDocumentContentChangeEvent(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) : ChangeDocumentRequest_TextDocumentContentChangeEvent(nullptr, from) {} + inline ChangeDocumentRequest_TextDocumentContentChangeEvent(ChangeDocumentRequest_TextDocumentContentChangeEvent&& from) noexcept + : ChangeDocumentRequest_TextDocumentContentChangeEvent(nullptr, std::move(from)) {} inline ChangeDocumentRequest_TextDocumentContentChangeEvent& operator=(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) { CopyFrom(from); return *this; @@ -10173,9 +10654,9 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : inline ChangeDocumentRequest_TextDocumentContentChangeEvent& operator=(ChangeDocumentRequest_TextDocumentContentChangeEvent&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10207,22 +10688,17 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : } static inline const ChangeDocumentRequest_TextDocumentContentChangeEvent* internal_default_instance() { return reinterpret_cast( - &_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_); - } - static constexpr int kIndexInFileMessages = - 22; - - friend void swap(ChangeDocumentRequest_TextDocumentContentChangeEvent& a, ChangeDocumentRequest_TextDocumentContentChangeEvent& b) { - a.Swap(&b); + &_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_); } + static constexpr int kIndexInFileMessages = 22; + friend void swap(ChangeDocumentRequest_TextDocumentContentChangeEvent& a, ChangeDocumentRequest_TextDocumentContentChangeEvent& b) { a.Swap(&b); } inline void Swap(ChangeDocumentRequest_TextDocumentContentChangeEvent* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10236,52 +10712,69 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : // implements Message ---------------------------------------------- - ChangeDocumentRequest_TextDocumentContentChangeEvent* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ChangeDocumentRequest_TextDocumentContentChangeEvent* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) { - ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl(*this, from); - } + void MergeFrom(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) { ChangeDocumentRequest_TextDocumentContentChangeEvent::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ChangeDocumentRequest_TextDocumentContentChangeEvent* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent"; } + + protected: explicit ChangeDocumentRequest_TextDocumentContentChangeEvent(::google::protobuf::Arena* arena); ChangeDocumentRequest_TextDocumentContentChangeEvent(::google::protobuf::Arena* arena, const ChangeDocumentRequest_TextDocumentContentChangeEvent& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ChangeDocumentRequest_TextDocumentContentChangeEvent(::google::protobuf::Arena* arena, ChangeDocumentRequest_TextDocumentContentChangeEvent&& from) noexcept + : ChangeDocumentRequest_TextDocumentContentChangeEvent(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTextFieldNumber = 3, kRangeFieldNumber = 1, @@ -10331,12 +10824,15 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 106, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10344,13 +10840,13 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ChangeDocumentRequest_TextDocumentContentChangeEvent& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr text_; @@ -10360,23 +10856,21 @@ class ChangeDocumentRequest_TextDocumentContentChangeEvent final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetSignatureHelpResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) */ { +class GetSignatureHelpResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) */ { public: inline GetSignatureHelpResponse() : GetSignatureHelpResponse(nullptr) {} - ~GetSignatureHelpResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetSignatureHelpResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetSignatureHelpResponse(const GetSignatureHelpResponse& from) - : GetSignatureHelpResponse(nullptr, from) {} - GetSignatureHelpResponse(GetSignatureHelpResponse&& from) noexcept - : GetSignatureHelpResponse() { - *this = ::std::move(from); - } - + ~GetSignatureHelpResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetSignatureHelpResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetSignatureHelpResponse(const GetSignatureHelpResponse& from) : GetSignatureHelpResponse(nullptr, from) {} + inline GetSignatureHelpResponse(GetSignatureHelpResponse&& from) noexcept + : GetSignatureHelpResponse(nullptr, std::move(from)) {} inline GetSignatureHelpResponse& operator=(const GetSignatureHelpResponse& from) { CopyFrom(from); return *this; @@ -10384,9 +10878,9 @@ class GetSignatureHelpResponse final : inline GetSignatureHelpResponse& operator=(GetSignatureHelpResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10418,22 +10912,17 @@ class GetSignatureHelpResponse final : } static inline const GetSignatureHelpResponse* internal_default_instance() { return reinterpret_cast( - &_GetSignatureHelpResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 35; - - friend void swap(GetSignatureHelpResponse& a, GetSignatureHelpResponse& b) { - a.Swap(&b); + &_GetSignatureHelpResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 35; + friend void swap(GetSignatureHelpResponse& a, GetSignatureHelpResponse& b) { a.Swap(&b); } inline void Swap(GetSignatureHelpResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10447,52 +10936,69 @@ class GetSignatureHelpResponse final : // implements Message ---------------------------------------------- - GetSignatureHelpResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetSignatureHelpResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetSignatureHelpResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetSignatureHelpResponse& from) { - GetSignatureHelpResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetSignatureHelpResponse& from) { GetSignatureHelpResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetSignatureHelpResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse"; } + + protected: explicit GetSignatureHelpResponse(::google::protobuf::Arena* arena); GetSignatureHelpResponse(::google::protobuf::Arena* arena, const GetSignatureHelpResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetSignatureHelpResponse(::google::protobuf::Arena* arena, GetSignatureHelpResponse&& from) noexcept + : GetSignatureHelpResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSignaturesFieldNumber = 1, kActiveSignatureFieldNumber = 2, @@ -10506,16 +11012,15 @@ class GetSignatureHelpResponse final : public: void clear_signatures() ; ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* mutable_signatures(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::SignatureInformation >* - mutable_signatures(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>* mutable_signatures(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>& _internal_signatures() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>* _internal_mutable_signatures(); public: const ::io::deephaven::proto::backplane::script::grpc::SignatureInformation& signatures(int index) const; ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* add_signatures(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::SignatureInformation >& - signatures() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>& signatures() const; // optional int32 active_signature = 2; bool has_active_signature() const; void clear_active_signature() ; @@ -10541,12 +11046,15 @@ class GetSignatureHelpResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetSignatureHelpResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10554,13 +11062,13 @@ class GetSignatureHelpResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetSignatureHelpResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::SignatureInformation > signatures_; @@ -10570,23 +11078,21 @@ class GetSignatureHelpResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetPullDiagnosticResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) */ { +class GetPullDiagnosticResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) */ { public: inline GetPullDiagnosticResponse() : GetPullDiagnosticResponse(nullptr) {} - ~GetPullDiagnosticResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetPullDiagnosticResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetPullDiagnosticResponse(const GetPullDiagnosticResponse& from) - : GetPullDiagnosticResponse(nullptr, from) {} - GetPullDiagnosticResponse(GetPullDiagnosticResponse&& from) noexcept - : GetPullDiagnosticResponse() { - *this = ::std::move(from); - } - + ~GetPullDiagnosticResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetPullDiagnosticResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetPullDiagnosticResponse(const GetPullDiagnosticResponse& from) : GetPullDiagnosticResponse(nullptr, from) {} + inline GetPullDiagnosticResponse(GetPullDiagnosticResponse&& from) noexcept + : GetPullDiagnosticResponse(nullptr, std::move(from)) {} inline GetPullDiagnosticResponse& operator=(const GetPullDiagnosticResponse& from) { CopyFrom(from); return *this; @@ -10594,9 +11100,9 @@ class GetPullDiagnosticResponse final : inline GetPullDiagnosticResponse& operator=(GetPullDiagnosticResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10628,22 +11134,17 @@ class GetPullDiagnosticResponse final : } static inline const GetPullDiagnosticResponse* internal_default_instance() { return reinterpret_cast( - &_GetPullDiagnosticResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 41; - - friend void swap(GetPullDiagnosticResponse& a, GetPullDiagnosticResponse& b) { - a.Swap(&b); + &_GetPullDiagnosticResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 41; + friend void swap(GetPullDiagnosticResponse& a, GetPullDiagnosticResponse& b) { a.Swap(&b); } inline void Swap(GetPullDiagnosticResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10657,52 +11158,69 @@ class GetPullDiagnosticResponse final : // implements Message ---------------------------------------------- - GetPullDiagnosticResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetPullDiagnosticResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetPullDiagnosticResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetPullDiagnosticResponse& from) { - GetPullDiagnosticResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetPullDiagnosticResponse& from) { GetPullDiagnosticResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetPullDiagnosticResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse"; } + + protected: explicit GetPullDiagnosticResponse(::google::protobuf::Arena* arena); GetPullDiagnosticResponse(::google::protobuf::Arena* arena, const GetPullDiagnosticResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetPullDiagnosticResponse(::google::protobuf::Arena* arena, GetPullDiagnosticResponse&& from) noexcept + : GetPullDiagnosticResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kItemsFieldNumber = 3, kKindFieldNumber = 1, @@ -10716,16 +11234,15 @@ class GetPullDiagnosticResponse final : public: void clear_items() ; ::io::deephaven::proto::backplane::script::grpc::Diagnostic* mutable_items(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic >* - mutable_items(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* mutable_items(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& _internal_items() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* _internal_mutable_items(); public: const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& items(int index) const; ::io::deephaven::proto::backplane::script::grpc::Diagnostic* add_items(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic >& - items() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& items() const; // string kind = 1; void clear_kind() ; const std::string& kind() const; @@ -10762,12 +11279,15 @@ class GetPullDiagnosticResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 88, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetPullDiagnosticResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10775,13 +11295,13 @@ class GetPullDiagnosticResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetPullDiagnosticResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic > items_; @@ -10791,23 +11311,21 @@ class GetPullDiagnosticResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetPublishDiagnosticResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) */ { +class GetPublishDiagnosticResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) */ { public: inline GetPublishDiagnosticResponse() : GetPublishDiagnosticResponse(nullptr) {} - ~GetPublishDiagnosticResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetPublishDiagnosticResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetPublishDiagnosticResponse(const GetPublishDiagnosticResponse& from) - : GetPublishDiagnosticResponse(nullptr, from) {} - GetPublishDiagnosticResponse(GetPublishDiagnosticResponse&& from) noexcept - : GetPublishDiagnosticResponse() { - *this = ::std::move(from); - } - + ~GetPublishDiagnosticResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetPublishDiagnosticResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetPublishDiagnosticResponse(const GetPublishDiagnosticResponse& from) : GetPublishDiagnosticResponse(nullptr, from) {} + inline GetPublishDiagnosticResponse(GetPublishDiagnosticResponse&& from) noexcept + : GetPublishDiagnosticResponse(nullptr, std::move(from)) {} inline GetPublishDiagnosticResponse& operator=(const GetPublishDiagnosticResponse& from) { CopyFrom(from); return *this; @@ -10815,9 +11333,9 @@ class GetPublishDiagnosticResponse final : inline GetPublishDiagnosticResponse& operator=(GetPublishDiagnosticResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10849,22 +11367,17 @@ class GetPublishDiagnosticResponse final : } static inline const GetPublishDiagnosticResponse* internal_default_instance() { return reinterpret_cast( - &_GetPublishDiagnosticResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 42; - - friend void swap(GetPublishDiagnosticResponse& a, GetPublishDiagnosticResponse& b) { - a.Swap(&b); + &_GetPublishDiagnosticResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 42; + friend void swap(GetPublishDiagnosticResponse& a, GetPublishDiagnosticResponse& b) { a.Swap(&b); } inline void Swap(GetPublishDiagnosticResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10878,52 +11391,69 @@ class GetPublishDiagnosticResponse final : // implements Message ---------------------------------------------- - GetPublishDiagnosticResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetPublishDiagnosticResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetPublishDiagnosticResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetPublishDiagnosticResponse& from) { - GetPublishDiagnosticResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetPublishDiagnosticResponse& from) { GetPublishDiagnosticResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetPublishDiagnosticResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse"; } + + protected: explicit GetPublishDiagnosticResponse(::google::protobuf::Arena* arena); GetPublishDiagnosticResponse(::google::protobuf::Arena* arena, const GetPublishDiagnosticResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetPublishDiagnosticResponse(::google::protobuf::Arena* arena, GetPublishDiagnosticResponse&& from) noexcept + : GetPublishDiagnosticResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kDiagnosticsFieldNumber = 3, kUriFieldNumber = 1, @@ -10937,16 +11467,15 @@ class GetPublishDiagnosticResponse final : public: void clear_diagnostics() ; ::io::deephaven::proto::backplane::script::grpc::Diagnostic* mutable_diagnostics(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic >* - mutable_diagnostics(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* mutable_diagnostics(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& _internal_diagnostics() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* _internal_mutable_diagnostics(); public: const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& diagnostics(int index) const; ::io::deephaven::proto::backplane::script::grpc::Diagnostic* add_diagnostics(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic >& - diagnostics() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& diagnostics() const; // string uri = 1; void clear_uri() ; const std::string& uri() const; @@ -10977,12 +11506,15 @@ class GetPublishDiagnosticResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 81, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetPublishDiagnosticResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10990,13 +11522,13 @@ class GetPublishDiagnosticResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetPublishDiagnosticResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::Diagnostic > diagnostics_; @@ -11006,23 +11538,21 @@ class GetPublishDiagnosticResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_AxisDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) */ { +class FigureDescriptor_AxisDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) */ { public: inline FigureDescriptor_AxisDescriptor() : FigureDescriptor_AxisDescriptor(nullptr) {} - ~FigureDescriptor_AxisDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_AxisDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_AxisDescriptor(const FigureDescriptor_AxisDescriptor& from) - : FigureDescriptor_AxisDescriptor(nullptr, from) {} - FigureDescriptor_AxisDescriptor(FigureDescriptor_AxisDescriptor&& from) noexcept - : FigureDescriptor_AxisDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_AxisDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_AxisDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_AxisDescriptor(const FigureDescriptor_AxisDescriptor& from) : FigureDescriptor_AxisDescriptor(nullptr, from) {} + inline FigureDescriptor_AxisDescriptor(FigureDescriptor_AxisDescriptor&& from) noexcept + : FigureDescriptor_AxisDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_AxisDescriptor& operator=(const FigureDescriptor_AxisDescriptor& from) { CopyFrom(from); return *this; @@ -11030,9 +11560,9 @@ class FigureDescriptor_AxisDescriptor final : inline FigureDescriptor_AxisDescriptor& operator=(FigureDescriptor_AxisDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11064,22 +11594,17 @@ class FigureDescriptor_AxisDescriptor final : } static inline const FigureDescriptor_AxisDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_AxisDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 51; - - friend void swap(FigureDescriptor_AxisDescriptor& a, FigureDescriptor_AxisDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_AxisDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 51; + friend void swap(FigureDescriptor_AxisDescriptor& a, FigureDescriptor_AxisDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_AxisDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11093,50 +11618,67 @@ class FigureDescriptor_AxisDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_AxisDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_AxisDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_AxisDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_AxisDescriptor& from) { - FigureDescriptor_AxisDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_AxisDescriptor& from) { FigureDescriptor_AxisDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_AxisDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor"; } + + protected: explicit FigureDescriptor_AxisDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_AxisDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_AxisDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_AxisDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_AxisDescriptor&& from) noexcept + : FigureDescriptor_AxisDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using AxisFormatType = FigureDescriptor_AxisDescriptor_AxisFormatType; static constexpr AxisFormatType CATEGORY = FigureDescriptor_AxisDescriptor_AxisFormatType_CATEGORY; static constexpr AxisFormatType NUMBER = FigureDescriptor_AxisDescriptor_AxisFormatType_NUMBER; @@ -11156,7 +11698,6 @@ class FigureDescriptor_AxisDescriptor final : static inline bool AxisFormatType_Parse(absl::string_view name, AxisFormatType* value) { return FigureDescriptor_AxisDescriptor_AxisFormatType_Parse(name, value); } - using AxisType = FigureDescriptor_AxisDescriptor_AxisType; static constexpr AxisType X = FigureDescriptor_AxisDescriptor_AxisType_X; static constexpr AxisType Y = FigureDescriptor_AxisDescriptor_AxisType_Y; @@ -11180,7 +11721,6 @@ class FigureDescriptor_AxisDescriptor final : static inline bool AxisType_Parse(absl::string_view name, AxisType* value) { return FigureDescriptor_AxisDescriptor_AxisType_Parse(name, value); } - using AxisPosition = FigureDescriptor_AxisDescriptor_AxisPosition; static constexpr AxisPosition TOP = FigureDescriptor_AxisDescriptor_AxisPosition_TOP; static constexpr AxisPosition BOTTOM = FigureDescriptor_AxisDescriptor_AxisPosition_BOTTOM; @@ -11205,7 +11745,6 @@ class FigureDescriptor_AxisDescriptor final : } // accessors ------------------------------------------------------- - enum : int { kMajorTickLocationsFieldNumber = 17, kIdFieldNumber = 1, @@ -11493,12 +12032,15 @@ class FigureDescriptor_AxisDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 5, 21, 1, 143, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_AxisDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11506,13 +12048,13 @@ class FigureDescriptor_AxisDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_AxisDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedField major_tick_locations_; @@ -11540,23 +12082,21 @@ class FigureDescriptor_AxisDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CompletionItem final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CompletionItem) */ { +class CompletionItem final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.CompletionItem) */ { public: inline CompletionItem() : CompletionItem(nullptr) {} - ~CompletionItem() override; - template - explicit PROTOBUF_CONSTEXPR CompletionItem(::google::protobuf::internal::ConstantInitialized); - - inline CompletionItem(const CompletionItem& from) - : CompletionItem(nullptr, from) {} - CompletionItem(CompletionItem&& from) noexcept - : CompletionItem() { - *this = ::std::move(from); - } - + ~CompletionItem() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CompletionItem( + ::google::protobuf::internal::ConstantInitialized); + + inline CompletionItem(const CompletionItem& from) : CompletionItem(nullptr, from) {} + inline CompletionItem(CompletionItem&& from) noexcept + : CompletionItem(nullptr, std::move(from)) {} inline CompletionItem& operator=(const CompletionItem& from) { CopyFrom(from); return *this; @@ -11564,9 +12104,9 @@ class CompletionItem final : inline CompletionItem& operator=(CompletionItem&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11598,22 +12138,17 @@ class CompletionItem final : } static inline const CompletionItem* internal_default_instance() { return reinterpret_cast( - &_CompletionItem_default_instance_); - } - static constexpr int kIndexInFileMessages = - 31; - - friend void swap(CompletionItem& a, CompletionItem& b) { - a.Swap(&b); + &_CompletionItem_default_instance_); } + static constexpr int kIndexInFileMessages = 31; + friend void swap(CompletionItem& a, CompletionItem& b) { a.Swap(&b); } inline void Swap(CompletionItem* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11627,52 +12162,69 @@ class CompletionItem final : // implements Message ---------------------------------------------- - CompletionItem* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CompletionItem* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CompletionItem& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CompletionItem& from) { - CompletionItem::MergeImpl(*this, from); - } + void MergeFrom(const CompletionItem& from) { CompletionItem::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CompletionItem* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.CompletionItem"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.CompletionItem"; } + + protected: explicit CompletionItem(::google::protobuf::Arena* arena); CompletionItem(::google::protobuf::Arena* arena, const CompletionItem& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CompletionItem(::google::protobuf::Arena* arena, CompletionItem&& from) noexcept + : CompletionItem(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAdditionalTextEditsFieldNumber = 13, kCommitCharactersFieldNumber = 14, @@ -11697,16 +12249,15 @@ class CompletionItem final : public: void clear_additional_text_edits() ; ::io::deephaven::proto::backplane::script::grpc::TextEdit* mutable_additional_text_edits(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::TextEdit >* - mutable_additional_text_edits(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>* mutable_additional_text_edits(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>& _internal_additional_text_edits() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>* _internal_mutable_additional_text_edits(); public: const ::io::deephaven::proto::backplane::script::grpc::TextEdit& additional_text_edits(int index) const; ::io::deephaven::proto::backplane::script::grpc::TextEdit* add_additional_text_edits(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::TextEdit >& - additional_text_edits() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>& additional_text_edits() const; // repeated string commit_characters = 14; int commit_characters_size() const; private: @@ -11716,17 +12267,11 @@ class CompletionItem final : void clear_commit_characters() ; const std::string& commit_characters(int index) const; std::string* mutable_commit_characters(int index); - void set_commit_characters(int index, const std::string& value); - void set_commit_characters(int index, std::string&& value); - void set_commit_characters(int index, const char* value); - void set_commit_characters(int index, const char* value, std::size_t size); - void set_commit_characters(int index, absl::string_view value); + template + void set_commit_characters(int index, Arg_&& value, Args_... args); std::string* add_commit_characters(); - void add_commit_characters(const std::string& value); - void add_commit_characters(std::string&& value); - void add_commit_characters(const char* value); - void add_commit_characters(const char* value, std::size_t size); - void add_commit_characters(absl::string_view value); + template + void add_commit_characters(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& commit_characters() const; ::google::protobuf::RepeatedPtrField* mutable_commit_characters(); @@ -11892,12 +12437,15 @@ class CompletionItem final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.CompletionItem) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 14, 3, 120, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CompletionItem_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11905,13 +12453,13 @@ class CompletionItem final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CompletionItem& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::TextEdit > additional_text_edits_; @@ -11932,23 +12480,21 @@ class CompletionItem final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ChangeDocumentRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) */ { +class ChangeDocumentRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) */ { public: inline ChangeDocumentRequest() : ChangeDocumentRequest(nullptr) {} - ~ChangeDocumentRequest() override; - template - explicit PROTOBUF_CONSTEXPR ChangeDocumentRequest(::google::protobuf::internal::ConstantInitialized); - - inline ChangeDocumentRequest(const ChangeDocumentRequest& from) - : ChangeDocumentRequest(nullptr, from) {} - ChangeDocumentRequest(ChangeDocumentRequest&& from) noexcept - : ChangeDocumentRequest() { - *this = ::std::move(from); - } - + ~ChangeDocumentRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ChangeDocumentRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ChangeDocumentRequest(const ChangeDocumentRequest& from) : ChangeDocumentRequest(nullptr, from) {} + inline ChangeDocumentRequest(ChangeDocumentRequest&& from) noexcept + : ChangeDocumentRequest(nullptr, std::move(from)) {} inline ChangeDocumentRequest& operator=(const ChangeDocumentRequest& from) { CopyFrom(from); return *this; @@ -11956,9 +12502,9 @@ class ChangeDocumentRequest final : inline ChangeDocumentRequest& operator=(ChangeDocumentRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11990,22 +12536,17 @@ class ChangeDocumentRequest final : } static inline const ChangeDocumentRequest* internal_default_instance() { return reinterpret_cast( - &_ChangeDocumentRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 23; - - friend void swap(ChangeDocumentRequest& a, ChangeDocumentRequest& b) { - a.Swap(&b); + &_ChangeDocumentRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 23; + friend void swap(ChangeDocumentRequest& a, ChangeDocumentRequest& b) { a.Swap(&b); } inline void Swap(ChangeDocumentRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12019,54 +12560,70 @@ class ChangeDocumentRequest final : // implements Message ---------------------------------------------- - ChangeDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ChangeDocumentRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ChangeDocumentRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ChangeDocumentRequest& from) { - ChangeDocumentRequest::MergeImpl(*this, from); - } + void MergeFrom(const ChangeDocumentRequest& from) { ChangeDocumentRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ChangeDocumentRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest"; } + + protected: explicit ChangeDocumentRequest(::google::protobuf::Arena* arena); ChangeDocumentRequest(::google::protobuf::Arena* arena, const ChangeDocumentRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ChangeDocumentRequest(::google::protobuf::Arena* arena, ChangeDocumentRequest&& from) noexcept + : ChangeDocumentRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using TextDocumentContentChangeEvent = ChangeDocumentRequest_TextDocumentContentChangeEvent; // accessors ------------------------------------------------------- - enum : int { kContentChangesFieldNumber = 3, kConsoleIdFieldNumber = 1, @@ -12080,16 +12637,15 @@ class ChangeDocumentRequest final : public: void clear_content_changes() ; ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* mutable_content_changes(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent >* - mutable_content_changes(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>* mutable_content_changes(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>& _internal_content_changes() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>* _internal_mutable_content_changes(); public: const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent& content_changes(int index) const; ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* add_content_changes(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent >& - content_changes() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>& content_changes() const; // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; [[deprecated]] bool has_console_id() const; [[deprecated]] void clear_console_id() ; @@ -12123,12 +12679,15 @@ class ChangeDocumentRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ChangeDocumentRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12136,13 +12695,13 @@ class ChangeDocumentRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ChangeDocumentRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent > content_changes_; @@ -12152,23 +12711,21 @@ class ChangeDocumentRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SignatureHelpContext final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) */ { +class SignatureHelpContext final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) */ { public: inline SignatureHelpContext() : SignatureHelpContext(nullptr) {} - ~SignatureHelpContext() override; - template - explicit PROTOBUF_CONSTEXPR SignatureHelpContext(::google::protobuf::internal::ConstantInitialized); - - inline SignatureHelpContext(const SignatureHelpContext& from) - : SignatureHelpContext(nullptr, from) {} - SignatureHelpContext(SignatureHelpContext&& from) noexcept - : SignatureHelpContext() { - *this = ::std::move(from); - } - + ~SignatureHelpContext() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SignatureHelpContext( + ::google::protobuf::internal::ConstantInitialized); + + inline SignatureHelpContext(const SignatureHelpContext& from) : SignatureHelpContext(nullptr, from) {} + inline SignatureHelpContext(SignatureHelpContext&& from) noexcept + : SignatureHelpContext(nullptr, std::move(from)) {} inline SignatureHelpContext& operator=(const SignatureHelpContext& from) { CopyFrom(from); return *this; @@ -12176,9 +12733,9 @@ class SignatureHelpContext final : inline SignatureHelpContext& operator=(SignatureHelpContext&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12210,22 +12767,17 @@ class SignatureHelpContext final : } static inline const SignatureHelpContext* internal_default_instance() { return reinterpret_cast( - &_SignatureHelpContext_default_instance_); - } - static constexpr int kIndexInFileMessages = - 34; - - friend void swap(SignatureHelpContext& a, SignatureHelpContext& b) { - a.Swap(&b); + &_SignatureHelpContext_default_instance_); } + static constexpr int kIndexInFileMessages = 34; + friend void swap(SignatureHelpContext& a, SignatureHelpContext& b) { a.Swap(&b); } inline void Swap(SignatureHelpContext* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12239,52 +12791,69 @@ class SignatureHelpContext final : // implements Message ---------------------------------------------- - SignatureHelpContext* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SignatureHelpContext* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SignatureHelpContext& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SignatureHelpContext& from) { - SignatureHelpContext::MergeImpl(*this, from); - } + void MergeFrom(const SignatureHelpContext& from) { SignatureHelpContext::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SignatureHelpContext* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.SignatureHelpContext"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.SignatureHelpContext"; } + + protected: explicit SignatureHelpContext(::google::protobuf::Arena* arena); SignatureHelpContext(::google::protobuf::Arena* arena, const SignatureHelpContext& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SignatureHelpContext(::google::protobuf::Arena* arena, SignatureHelpContext&& from) noexcept + : SignatureHelpContext(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTriggerCharacterFieldNumber = 2, kActiveSignatureHelpFieldNumber = 4, @@ -12346,12 +12915,15 @@ class SignatureHelpContext final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 1, 87, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SignatureHelpContext_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12359,13 +12931,13 @@ class SignatureHelpContext final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SignatureHelpContext& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr trigger_character_; @@ -12376,23 +12948,21 @@ class SignatureHelpContext final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetCompletionItemsResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) */ { +class GetCompletionItemsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) */ { public: inline GetCompletionItemsResponse() : GetCompletionItemsResponse(nullptr) {} - ~GetCompletionItemsResponse() override; - template - explicit PROTOBUF_CONSTEXPR GetCompletionItemsResponse(::google::protobuf::internal::ConstantInitialized); - - inline GetCompletionItemsResponse(const GetCompletionItemsResponse& from) - : GetCompletionItemsResponse(nullptr, from) {} - GetCompletionItemsResponse(GetCompletionItemsResponse&& from) noexcept - : GetCompletionItemsResponse() { - *this = ::std::move(from); - } - + ~GetCompletionItemsResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetCompletionItemsResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline GetCompletionItemsResponse(const GetCompletionItemsResponse& from) : GetCompletionItemsResponse(nullptr, from) {} + inline GetCompletionItemsResponse(GetCompletionItemsResponse&& from) noexcept + : GetCompletionItemsResponse(nullptr, std::move(from)) {} inline GetCompletionItemsResponse& operator=(const GetCompletionItemsResponse& from) { CopyFrom(from); return *this; @@ -12400,9 +12970,9 @@ class GetCompletionItemsResponse final : inline GetCompletionItemsResponse& operator=(GetCompletionItemsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12434,22 +13004,17 @@ class GetCompletionItemsResponse final : } static inline const GetCompletionItemsResponse* internal_default_instance() { return reinterpret_cast( - &_GetCompletionItemsResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 30; - - friend void swap(GetCompletionItemsResponse& a, GetCompletionItemsResponse& b) { - a.Swap(&b); + &_GetCompletionItemsResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 30; + friend void swap(GetCompletionItemsResponse& a, GetCompletionItemsResponse& b) { a.Swap(&b); } inline void Swap(GetCompletionItemsResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12463,52 +13028,69 @@ class GetCompletionItemsResponse final : // implements Message ---------------------------------------------- - GetCompletionItemsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetCompletionItemsResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetCompletionItemsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetCompletionItemsResponse& from) { - GetCompletionItemsResponse::MergeImpl(*this, from); - } + void MergeFrom(const GetCompletionItemsResponse& from) { GetCompletionItemsResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetCompletionItemsResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse"; } + + protected: explicit GetCompletionItemsResponse(::google::protobuf::Arena* arena); GetCompletionItemsResponse(::google::protobuf::Arena* arena, const GetCompletionItemsResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetCompletionItemsResponse(::google::protobuf::Arena* arena, GetCompletionItemsResponse&& from) noexcept + : GetCompletionItemsResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kItemsFieldNumber = 1, kRequestIdFieldNumber = 2, @@ -12522,16 +13104,15 @@ class GetCompletionItemsResponse final : public: void clear_items() ; ::io::deephaven::proto::backplane::script::grpc::CompletionItem* mutable_items(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::CompletionItem >* - mutable_items(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>* mutable_items(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>& _internal_items() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>* _internal_mutable_items(); public: const ::io::deephaven::proto::backplane::script::grpc::CompletionItem& items(int index) const; ::io::deephaven::proto::backplane::script::grpc::CompletionItem* add_items(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::CompletionItem >& - items() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>& items() const; // int32 request_id = 2 [deprecated = true]; [[deprecated]] void clear_request_id() ; [[deprecated]] ::int32_t request_id() const; @@ -12555,12 +13136,15 @@ class GetCompletionItemsResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetCompletionItemsResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12568,13 +13152,13 @@ class GetCompletionItemsResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetCompletionItemsResponse& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::CompletionItem > items_; ::int32_t request_id_; bool success_; @@ -12583,23 +13167,21 @@ class GetCompletionItemsResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor_ChartDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) */ { +class FigureDescriptor_ChartDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) */ { public: inline FigureDescriptor_ChartDescriptor() : FigureDescriptor_ChartDescriptor(nullptr) {} - ~FigureDescriptor_ChartDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor_ChartDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor_ChartDescriptor(const FigureDescriptor_ChartDescriptor& from) - : FigureDescriptor_ChartDescriptor(nullptr, from) {} - FigureDescriptor_ChartDescriptor(FigureDescriptor_ChartDescriptor&& from) noexcept - : FigureDescriptor_ChartDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor_ChartDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor_ChartDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor_ChartDescriptor(const FigureDescriptor_ChartDescriptor& from) : FigureDescriptor_ChartDescriptor(nullptr, from) {} + inline FigureDescriptor_ChartDescriptor(FigureDescriptor_ChartDescriptor&& from) noexcept + : FigureDescriptor_ChartDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor_ChartDescriptor& operator=(const FigureDescriptor_ChartDescriptor& from) { CopyFrom(from); return *this; @@ -12607,9 +13189,9 @@ class FigureDescriptor_ChartDescriptor final : inline FigureDescriptor_ChartDescriptor& operator=(FigureDescriptor_ChartDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12641,22 +13223,17 @@ class FigureDescriptor_ChartDescriptor final : } static inline const FigureDescriptor_ChartDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_ChartDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 45; - - friend void swap(FigureDescriptor_ChartDescriptor& a, FigureDescriptor_ChartDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_ChartDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 45; + friend void swap(FigureDescriptor_ChartDescriptor& a, FigureDescriptor_ChartDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor_ChartDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12670,50 +13247,67 @@ class FigureDescriptor_ChartDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor_ChartDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor_ChartDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor_ChartDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor_ChartDescriptor& from) { - FigureDescriptor_ChartDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor_ChartDescriptor& from) { FigureDescriptor_ChartDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor_ChartDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor"; } + + protected: explicit FigureDescriptor_ChartDescriptor(::google::protobuf::Arena* arena); FigureDescriptor_ChartDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor_ChartDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor_ChartDescriptor(::google::protobuf::Arena* arena, FigureDescriptor_ChartDescriptor&& from) noexcept + : FigureDescriptor_ChartDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using ChartType = FigureDescriptor_ChartDescriptor_ChartType; static constexpr ChartType XY = FigureDescriptor_ChartDescriptor_ChartType_XY; static constexpr ChartType PIE = FigureDescriptor_ChartDescriptor_ChartType_PIE; @@ -12740,7 +13334,6 @@ class FigureDescriptor_ChartDescriptor final : } // accessors ------------------------------------------------------- - enum : int { kSeriesFieldNumber = 3, kMultiSeriesFieldNumber = 4, @@ -12766,16 +13359,15 @@ class FigureDescriptor_ChartDescriptor final : public: void clear_series() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* mutable_series(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor >* - mutable_series(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>* mutable_series(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>& _internal_series() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>* _internal_mutable_series(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor& series(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* add_series(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor >& - series() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>& series() const; // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; int multi_series_size() const; private: @@ -12784,16 +13376,15 @@ class FigureDescriptor_ChartDescriptor final : public: void clear_multi_series() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* mutable_multi_series(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor >* - mutable_multi_series(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>* mutable_multi_series(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>& _internal_multi_series() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>* _internal_mutable_multi_series(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor& multi_series(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* add_multi_series(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor >& - multi_series() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>& multi_series() const; // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; int axes_size() const; private: @@ -12802,16 +13393,15 @@ class FigureDescriptor_ChartDescriptor final : public: void clear_axes() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* mutable_axes(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor >* - mutable_axes(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>* mutable_axes(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>& _internal_axes() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>* _internal_mutable_axes(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor& axes(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* add_axes(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor >& - axes() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>& axes() const; // optional string title = 7; bool has_title() const; void clear_title() ; @@ -12966,12 +13556,15 @@ class FigureDescriptor_ChartDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 15, 3, 139, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_ChartDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12979,13 +13572,13 @@ class FigureDescriptor_ChartDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor_ChartDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor > series_; @@ -13007,23 +13600,21 @@ class FigureDescriptor_ChartDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExecuteCommandResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) */ { +class ExecuteCommandResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) */ { public: inline ExecuteCommandResponse() : ExecuteCommandResponse(nullptr) {} - ~ExecuteCommandResponse() override; - template - explicit PROTOBUF_CONSTEXPR ExecuteCommandResponse(::google::protobuf::internal::ConstantInitialized); - - inline ExecuteCommandResponse(const ExecuteCommandResponse& from) - : ExecuteCommandResponse(nullptr, from) {} - ExecuteCommandResponse(ExecuteCommandResponse&& from) noexcept - : ExecuteCommandResponse() { - *this = ::std::move(from); - } - + ~ExecuteCommandResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExecuteCommandResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline ExecuteCommandResponse(const ExecuteCommandResponse& from) : ExecuteCommandResponse(nullptr, from) {} + inline ExecuteCommandResponse(ExecuteCommandResponse&& from) noexcept + : ExecuteCommandResponse(nullptr, std::move(from)) {} inline ExecuteCommandResponse& operator=(const ExecuteCommandResponse& from) { CopyFrom(from); return *this; @@ -13031,9 +13622,9 @@ class ExecuteCommandResponse final : inline ExecuteCommandResponse& operator=(ExecuteCommandResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13065,22 +13656,17 @@ class ExecuteCommandResponse final : } static inline const ExecuteCommandResponse* internal_default_instance() { return reinterpret_cast( - &_ExecuteCommandResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 9; - - friend void swap(ExecuteCommandResponse& a, ExecuteCommandResponse& b) { - a.Swap(&b); + &_ExecuteCommandResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 9; + friend void swap(ExecuteCommandResponse& a, ExecuteCommandResponse& b) { a.Swap(&b); } inline void Swap(ExecuteCommandResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13094,52 +13680,69 @@ class ExecuteCommandResponse final : // implements Message ---------------------------------------------- - ExecuteCommandResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExecuteCommandResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExecuteCommandResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExecuteCommandResponse& from) { - ExecuteCommandResponse::MergeImpl(*this, from); - } + void MergeFrom(const ExecuteCommandResponse& from) { ExecuteCommandResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExecuteCommandResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse"; } + + protected: explicit ExecuteCommandResponse(::google::protobuf::Arena* arena); ExecuteCommandResponse(::google::protobuf::Arena* arena, const ExecuteCommandResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExecuteCommandResponse(::google::protobuf::Arena* arena, ExecuteCommandResponse&& from) noexcept + : ExecuteCommandResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kErrorMessageFieldNumber = 1, kChangesFieldNumber = 2, @@ -13178,12 +13781,15 @@ class ExecuteCommandResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 85, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExecuteCommandResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13191,13 +13797,13 @@ class ExecuteCommandResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExecuteCommandResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr error_message_; @@ -13206,23 +13812,21 @@ class ExecuteCommandResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetSignatureHelpRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) */ { +class GetSignatureHelpRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) */ { public: inline GetSignatureHelpRequest() : GetSignatureHelpRequest(nullptr) {} - ~GetSignatureHelpRequest() override; - template - explicit PROTOBUF_CONSTEXPR GetSignatureHelpRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetSignatureHelpRequest(const GetSignatureHelpRequest& from) - : GetSignatureHelpRequest(nullptr, from) {} - GetSignatureHelpRequest(GetSignatureHelpRequest&& from) noexcept - : GetSignatureHelpRequest() { - *this = ::std::move(from); - } - + ~GetSignatureHelpRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetSignatureHelpRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline GetSignatureHelpRequest(const GetSignatureHelpRequest& from) : GetSignatureHelpRequest(nullptr, from) {} + inline GetSignatureHelpRequest(GetSignatureHelpRequest&& from) noexcept + : GetSignatureHelpRequest(nullptr, std::move(from)) {} inline GetSignatureHelpRequest& operator=(const GetSignatureHelpRequest& from) { CopyFrom(from); return *this; @@ -13230,9 +13834,9 @@ class GetSignatureHelpRequest final : inline GetSignatureHelpRequest& operator=(GetSignatureHelpRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13264,22 +13868,17 @@ class GetSignatureHelpRequest final : } static inline const GetSignatureHelpRequest* internal_default_instance() { return reinterpret_cast( - &_GetSignatureHelpRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 33; - - friend void swap(GetSignatureHelpRequest& a, GetSignatureHelpRequest& b) { - a.Swap(&b); + &_GetSignatureHelpRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 33; + friend void swap(GetSignatureHelpRequest& a, GetSignatureHelpRequest& b) { a.Swap(&b); } inline void Swap(GetSignatureHelpRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13293,52 +13892,69 @@ class GetSignatureHelpRequest final : // implements Message ---------------------------------------------- - GetSignatureHelpRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetSignatureHelpRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetSignatureHelpRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetSignatureHelpRequest& from) { - GetSignatureHelpRequest::MergeImpl(*this, from); - } + void MergeFrom(const GetSignatureHelpRequest& from) { GetSignatureHelpRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetSignatureHelpRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest"; } + + protected: explicit GetSignatureHelpRequest(::google::protobuf::Arena* arena); GetSignatureHelpRequest(::google::protobuf::Arena* arena, const GetSignatureHelpRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetSignatureHelpRequest(::google::protobuf::Arena* arena, GetSignatureHelpRequest&& from) noexcept + : GetSignatureHelpRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kContextFieldNumber = 1, kTextDocumentFieldNumber = 2, @@ -13392,12 +14008,15 @@ class GetSignatureHelpRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetSignatureHelpRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13405,13 +14024,13 @@ class GetSignatureHelpRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetSignatureHelpRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* context_; @@ -13421,23 +14040,21 @@ class GetSignatureHelpRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FigureDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) */ { +class FigureDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) */ { public: inline FigureDescriptor() : FigureDescriptor(nullptr) {} - ~FigureDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR FigureDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline FigureDescriptor(const FigureDescriptor& from) - : FigureDescriptor(nullptr, from) {} - FigureDescriptor(FigureDescriptor&& from) noexcept - : FigureDescriptor() { - *this = ::std::move(from); - } - + ~FigureDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FigureDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline FigureDescriptor(const FigureDescriptor& from) : FigureDescriptor(nullptr, from) {} + inline FigureDescriptor(FigureDescriptor&& from) noexcept + : FigureDescriptor(nullptr, std::move(from)) {} inline FigureDescriptor& operator=(const FigureDescriptor& from) { CopyFrom(from); return *this; @@ -13445,9 +14062,9 @@ class FigureDescriptor final : inline FigureDescriptor& operator=(FigureDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13479,22 +14096,17 @@ class FigureDescriptor final : } static inline const FigureDescriptor* internal_default_instance() { return reinterpret_cast( - &_FigureDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 59; - - friend void swap(FigureDescriptor& a, FigureDescriptor& b) { - a.Swap(&b); + &_FigureDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 59; + friend void swap(FigureDescriptor& a, FigureDescriptor& b) { a.Swap(&b); } inline void Swap(FigureDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13508,50 +14120,67 @@ class FigureDescriptor final : // implements Message ---------------------------------------------- - FigureDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FigureDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FigureDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FigureDescriptor& from) { - FigureDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const FigureDescriptor& from) { FigureDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FigureDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.FigureDescriptor"; } + + protected: explicit FigureDescriptor(::google::protobuf::Arena* arena); FigureDescriptor(::google::protobuf::Arena* arena, const FigureDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FigureDescriptor(::google::protobuf::Arena* arena, FigureDescriptor&& from) noexcept + : FigureDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using ChartDescriptor = FigureDescriptor_ChartDescriptor; using SeriesDescriptor = FigureDescriptor_SeriesDescriptor; using MultiSeriesDescriptor = FigureDescriptor_MultiSeriesDescriptor; @@ -13563,7 +14192,6 @@ class FigureDescriptor final : using MultiSeriesSourceDescriptor = FigureDescriptor_MultiSeriesSourceDescriptor; using SourceDescriptor = FigureDescriptor_SourceDescriptor; using OneClickDescriptor = FigureDescriptor_OneClickDescriptor; - using SeriesPlotStyle = FigureDescriptor_SeriesPlotStyle; static constexpr SeriesPlotStyle BAR = FigureDescriptor_SeriesPlotStyle_BAR; static constexpr SeriesPlotStyle STACKED_BAR = FigureDescriptor_SeriesPlotStyle_STACKED_BAR; @@ -13593,7 +14221,6 @@ class FigureDescriptor final : static inline bool SeriesPlotStyle_Parse(absl::string_view name, SeriesPlotStyle* value) { return FigureDescriptor_SeriesPlotStyle_Parse(name, value); } - using SourceType = FigureDescriptor_SourceType; static constexpr SourceType X = FigureDescriptor_SourceType_X; static constexpr SourceType Y = FigureDescriptor_SourceType_Y; @@ -13632,7 +14259,6 @@ class FigureDescriptor final : } // accessors ------------------------------------------------------- - enum : int { kChartsFieldNumber = 10, kErrorsFieldNumber = 13, @@ -13651,16 +14277,15 @@ class FigureDescriptor final : public: void clear_charts() ; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* mutable_charts(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor >* - mutable_charts(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>* mutable_charts(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>& _internal_charts() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>* _internal_mutable_charts(); public: const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor& charts(int index) const; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* add_charts(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor >& - charts() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>& charts() const; // repeated string errors = 13; int errors_size() const; private: @@ -13670,17 +14295,11 @@ class FigureDescriptor final : void clear_errors() ; const std::string& errors(int index) const; std::string* mutable_errors(int index); - void set_errors(int index, const std::string& value); - void set_errors(int index, std::string&& value); - void set_errors(int index, const char* value); - void set_errors(int index, const char* value, std::size_t size); - void set_errors(int index, absl::string_view value); + template + void set_errors(int index, Arg_&& value, Args_... args); std::string* add_errors(); - void add_errors(const std::string& value); - void add_errors(std::string&& value); - void add_errors(const char* value); - void add_errors(const char* value, std::size_t size); - void add_errors(absl::string_view value); + template + void add_errors(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& errors() const; ::google::protobuf::RepeatedPtrField* mutable_errors(); @@ -13771,12 +14390,15 @@ class FigureDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 8, 1, 106, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FigureDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13784,13 +14406,13 @@ class FigureDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FigureDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor > charts_; @@ -13805,23 +14427,21 @@ class FigureDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AutoCompleteResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) */ { +class AutoCompleteResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) */ { public: inline AutoCompleteResponse() : AutoCompleteResponse(nullptr) {} - ~AutoCompleteResponse() override; - template - explicit PROTOBUF_CONSTEXPR AutoCompleteResponse(::google::protobuf::internal::ConstantInitialized); - - inline AutoCompleteResponse(const AutoCompleteResponse& from) - : AutoCompleteResponse(nullptr, from) {} - AutoCompleteResponse(AutoCompleteResponse&& from) noexcept - : AutoCompleteResponse() { - *this = ::std::move(from); - } - + ~AutoCompleteResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AutoCompleteResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline AutoCompleteResponse(const AutoCompleteResponse& from) : AutoCompleteResponse(nullptr, from) {} + inline AutoCompleteResponse(AutoCompleteResponse&& from) noexcept + : AutoCompleteResponse(nullptr, std::move(from)) {} inline AutoCompleteResponse& operator=(const AutoCompleteResponse& from) { CopyFrom(from); return *this; @@ -13829,9 +14449,9 @@ class AutoCompleteResponse final : inline AutoCompleteResponse& operator=(AutoCompleteResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13869,25 +14489,19 @@ class AutoCompleteResponse final : kDiagnosticPublish = 7, RESPONSE_NOT_SET = 0, }; - static inline const AutoCompleteResponse* internal_default_instance() { return reinterpret_cast( - &_AutoCompleteResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 17; - - friend void swap(AutoCompleteResponse& a, AutoCompleteResponse& b) { - a.Swap(&b); + &_AutoCompleteResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 17; + friend void swap(AutoCompleteResponse& a, AutoCompleteResponse& b) { a.Swap(&b); } inline void Swap(AutoCompleteResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13901,52 +14515,69 @@ class AutoCompleteResponse final : // implements Message ---------------------------------------------- - AutoCompleteResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AutoCompleteResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AutoCompleteResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AutoCompleteResponse& from) { - AutoCompleteResponse::MergeImpl(*this, from); - } + void MergeFrom(const AutoCompleteResponse& from) { AutoCompleteResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AutoCompleteResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse"; } + + protected: explicit AutoCompleteResponse(::google::protobuf::Arena* arena); AutoCompleteResponse(::google::protobuf::Arena* arena, const AutoCompleteResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AutoCompleteResponse(::google::protobuf::Arena* arena, AutoCompleteResponse&& from) noexcept + : AutoCompleteResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kRequestIdFieldNumber = 2, kSuccessFieldNumber = 3, @@ -14081,15 +14712,17 @@ class AutoCompleteResponse final : void set_has_hover(); void set_has_diagnostic(); void set_has_diagnostic_publish(); - inline bool has_response() const; inline void clear_has_response(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 7, 5, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AutoCompleteResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14097,18 +14730,18 @@ class AutoCompleteResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AutoCompleteResponse& from_msg); ::int32_t request_id_; bool success_; union ResponseUnion { constexpr ResponseUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* completion_items_; ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* signatures_; ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* hover_; @@ -14117,28 +14750,25 @@ class AutoCompleteResponse final : } response_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AutoCompleteRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) */ { +class AutoCompleteRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) */ { public: inline AutoCompleteRequest() : AutoCompleteRequest(nullptr) {} - ~AutoCompleteRequest() override; - template - explicit PROTOBUF_CONSTEXPR AutoCompleteRequest(::google::protobuf::internal::ConstantInitialized); - - inline AutoCompleteRequest(const AutoCompleteRequest& from) - : AutoCompleteRequest(nullptr, from) {} - AutoCompleteRequest(AutoCompleteRequest&& from) noexcept - : AutoCompleteRequest() { - *this = ::std::move(from); - } - + ~AutoCompleteRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AutoCompleteRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AutoCompleteRequest(const AutoCompleteRequest& from) : AutoCompleteRequest(nullptr, from) {} + inline AutoCompleteRequest(AutoCompleteRequest&& from) noexcept + : AutoCompleteRequest(nullptr, std::move(from)) {} inline AutoCompleteRequest& operator=(const AutoCompleteRequest& from) { CopyFrom(from); return *this; @@ -14146,9 +14776,9 @@ class AutoCompleteRequest final : inline AutoCompleteRequest& operator=(AutoCompleteRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14188,25 +14818,19 @@ class AutoCompleteRequest final : kCloseDocument = 4, REQUEST_NOT_SET = 0, }; - static inline const AutoCompleteRequest* internal_default_instance() { return reinterpret_cast( - &_AutoCompleteRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 16; - - friend void swap(AutoCompleteRequest& a, AutoCompleteRequest& b) { - a.Swap(&b); + &_AutoCompleteRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 16; + friend void swap(AutoCompleteRequest& a, AutoCompleteRequest& b) { a.Swap(&b); } inline void Swap(AutoCompleteRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14220,52 +14844,69 @@ class AutoCompleteRequest final : // implements Message ---------------------------------------------- - AutoCompleteRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AutoCompleteRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AutoCompleteRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AutoCompleteRequest& from) { - AutoCompleteRequest::MergeImpl(*this, from); - } + void MergeFrom(const AutoCompleteRequest& from) { AutoCompleteRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AutoCompleteRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest"; } + + protected: explicit AutoCompleteRequest(::google::protobuf::Arena* arena); AutoCompleteRequest(::google::protobuf::Arena* arena, const AutoCompleteRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AutoCompleteRequest(::google::protobuf::Arena* arena, AutoCompleteRequest&& from) noexcept + : AutoCompleteRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConsoleIdFieldNumber = 5, kRequestIdFieldNumber = 6, @@ -14447,15 +15088,17 @@ class AutoCompleteRequest final : void set_has_get_hover(); void set_has_get_diagnostic(); void set_has_close_document(); - inline bool has_request() const; inline void clear_has_request(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 9, 8, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AutoCompleteRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14463,20 +15106,20 @@ class AutoCompleteRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AutoCompleteRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; ::int32_t request_id_; union RequestUnion { constexpr RequestUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* open_document_; ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* change_document_; ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* get_completion_items_; @@ -14486,7 +15129,6 @@ class AutoCompleteRequest final : ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* close_document_; } request_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; @@ -14521,12 +15163,11 @@ inline int GetConsoleTypesResponse::console_types_size() const { return _internal_console_types_size(); } inline void GetConsoleTypesResponse::clear_console_types() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.console_types_.Clear(); } -inline std::string* GetConsoleTypesResponse::add_console_types() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* GetConsoleTypesResponse::add_console_types() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_console_types()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) return _s; @@ -14541,57 +15182,21 @@ inline std::string* GetConsoleTypesResponse::mutable_console_types(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) return _internal_mutable_console_types()->Mutable(index); } -inline void GetConsoleTypesResponse::set_console_types(int index, const std::string& value) { - _internal_mutable_console_types()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::set_console_types(int index, std::string&& value) { - _internal_mutable_console_types()->Mutable(index)->assign(std::move(value)); +template +inline void GetConsoleTypesResponse::set_console_types(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_console_types()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) } -inline void GetConsoleTypesResponse::set_console_types(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_console_types()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::set_console_types(int index, const char* value, - std::size_t size) { - _internal_mutable_console_types()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::set_console_types(int index, absl::string_view value) { - _internal_mutable_console_types()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::add_console_types(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_console_types()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::add_console_types(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_console_types()->Add(std::move(value)); +template +inline void GetConsoleTypesResponse::add_console_types(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_console_types(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) } -inline void GetConsoleTypesResponse::add_console_types(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_console_types()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::add_console_types(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_console_types()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} -inline void GetConsoleTypesResponse::add_console_types(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_console_types()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) -} inline const ::google::protobuf::RepeatedPtrField& GetConsoleTypesResponse::console_types() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) @@ -14600,17 +15205,17 @@ GetConsoleTypesResponse::console_types() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* GetConsoleTypesResponse::mutable_console_types() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_console_types(); } inline const ::google::protobuf::RepeatedPtrField& GetConsoleTypesResponse::_internal_console_types() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.console_types_; } inline ::google::protobuf::RepeatedPtrField* GetConsoleTypesResponse::_internal_mutable_console_types() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.console_types_; } @@ -14625,7 +15230,7 @@ inline bool StartConsoleRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -14634,7 +15239,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleReques return _internal_result_id(); } inline void StartConsoleRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -14647,7 +15252,7 @@ inline void StartConsoleRequest::unsafe_arena_set_allocated_result_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -14666,7 +15271,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -14675,22 +15280,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) return _msg; } inline void StartConsoleRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -14711,7 +15316,7 @@ inline void StartConsoleRequest::set_allocated_result_id(::io::deephaven::proto: // string session_type = 2; inline void StartConsoleRequest::clear_session_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_type_.ClearToEmpty(); } inline const std::string& StartConsoleRequest::session_type() const @@ -14722,8 +15327,7 @@ inline const std::string& StartConsoleRequest::session_type() const template inline PROTOBUF_ALWAYS_INLINE void StartConsoleRequest::set_session_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type) } @@ -14733,26 +15337,24 @@ inline std::string* StartConsoleRequest::mutable_session_type() ABSL_ATTRIBUTE_L return _s; } inline const std::string& StartConsoleRequest::_internal_session_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.session_type_.Get(); } inline void StartConsoleRequest::_internal_set_session_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_type_.Set(value, GetArena()); } inline std::string* StartConsoleRequest::_internal_mutable_session_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.session_type_.Mutable( GetArena()); } inline std::string* StartConsoleRequest::release_session_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type) return _impl_.session_type_.Release(); } inline void StartConsoleRequest::set_allocated_session_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.session_type_.IsDefault()) { @@ -14773,7 +15375,7 @@ inline bool StartConsoleResponse::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleResponse::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -14782,7 +15384,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleRespon return _internal_result_id(); } inline void StartConsoleResponse::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -14795,7 +15397,7 @@ inline void StartConsoleResponse::unsafe_arena_set_allocated_result_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -14814,7 +15416,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -14823,22 +15425,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) return _msg; } inline void StartConsoleResponse::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -14867,7 +15469,7 @@ inline void StartConsoleResponse::set_allocated_result_id(::io::deephaven::proto // int64 max_memory = 1 [jstype = JS_STRING]; inline void GetHeapInfoResponse::clear_max_memory() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_memory_ = ::int64_t{0}; } inline ::int64_t GetHeapInfoResponse::max_memory() const { @@ -14879,18 +15481,17 @@ inline void GetHeapInfoResponse::set_max_memory(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.max_memory) } inline ::int64_t GetHeapInfoResponse::_internal_max_memory() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.max_memory_; } inline void GetHeapInfoResponse::_internal_set_max_memory(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_memory_ = value; } // int64 total_memory = 2 [jstype = JS_STRING]; inline void GetHeapInfoResponse::clear_total_memory() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.total_memory_ = ::int64_t{0}; } inline ::int64_t GetHeapInfoResponse::total_memory() const { @@ -14902,18 +15503,17 @@ inline void GetHeapInfoResponse::set_total_memory(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.total_memory) } inline ::int64_t GetHeapInfoResponse::_internal_total_memory() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.total_memory_; } inline void GetHeapInfoResponse::_internal_set_total_memory(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.total_memory_ = value; } // int64 free_memory = 3 [jstype = JS_STRING]; inline void GetHeapInfoResponse::clear_free_memory() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.free_memory_ = ::int64_t{0}; } inline ::int64_t GetHeapInfoResponse::free_memory() const { @@ -14925,12 +15525,11 @@ inline void GetHeapInfoResponse::set_free_memory(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.free_memory) } inline ::int64_t GetHeapInfoResponse::_internal_free_memory() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.free_memory_; } inline void GetHeapInfoResponse::_internal_set_free_memory(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.free_memory_ = value; } @@ -14940,7 +15539,7 @@ inline void GetHeapInfoResponse::_internal_set_free_memory(::int64_t value) { // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; inline void LogSubscriptionRequest::clear_last_seen_log_timestamp() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.last_seen_log_timestamp_ = ::int64_t{0}; } inline ::int64_t LogSubscriptionRequest::last_seen_log_timestamp() const { @@ -14952,12 +15551,11 @@ inline void LogSubscriptionRequest::set_last_seen_log_timestamp(::int64_t value) // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.last_seen_log_timestamp) } inline ::int64_t LogSubscriptionRequest::_internal_last_seen_log_timestamp() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.last_seen_log_timestamp_; } inline void LogSubscriptionRequest::_internal_set_last_seen_log_timestamp(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.last_seen_log_timestamp_ = value; } @@ -14969,12 +15567,11 @@ inline int LogSubscriptionRequest::levels_size() const { return _internal_levels_size(); } inline void LogSubscriptionRequest::clear_levels() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.levels_.Clear(); } -inline std::string* LogSubscriptionRequest::add_levels() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* LogSubscriptionRequest::add_levels() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_levels()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) return _s; @@ -14989,57 +15586,21 @@ inline std::string* LogSubscriptionRequest::mutable_levels(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) return _internal_mutable_levels()->Mutable(index); } -inline void LogSubscriptionRequest::set_levels(int index, const std::string& value) { - _internal_mutable_levels()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::set_levels(int index, std::string&& value) { - _internal_mutable_levels()->Mutable(index)->assign(std::move(value)); +template +inline void LogSubscriptionRequest::set_levels(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_levels()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) } -inline void LogSubscriptionRequest::set_levels(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_levels()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::set_levels(int index, const char* value, - std::size_t size) { - _internal_mutable_levels()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::set_levels(int index, absl::string_view value) { - _internal_mutable_levels()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::add_levels(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_levels()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::add_levels(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_levels()->Add(std::move(value)); +template +inline void LogSubscriptionRequest::add_levels(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_levels(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) } -inline void LogSubscriptionRequest::add_levels(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_levels()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::add_levels(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_levels()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} -inline void LogSubscriptionRequest::add_levels(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_levels()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) -} inline const ::google::protobuf::RepeatedPtrField& LogSubscriptionRequest::levels() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) @@ -15048,17 +15609,17 @@ LogSubscriptionRequest::levels() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* LogSubscriptionRequest::mutable_levels() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_levels(); } inline const ::google::protobuf::RepeatedPtrField& LogSubscriptionRequest::_internal_levels() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.levels_; } inline ::google::protobuf::RepeatedPtrField* LogSubscriptionRequest::_internal_mutable_levels() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.levels_; } @@ -15068,7 +15629,7 @@ LogSubscriptionRequest::_internal_mutable_levels() { // int64 micros = 1 [jstype = JS_STRING]; inline void LogSubscriptionData::clear_micros() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.micros_ = ::int64_t{0}; } inline ::int64_t LogSubscriptionData::micros() const { @@ -15080,18 +15641,17 @@ inline void LogSubscriptionData::set_micros(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.micros) } inline ::int64_t LogSubscriptionData::_internal_micros() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.micros_; } inline void LogSubscriptionData::_internal_set_micros(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.micros_ = value; } // string log_level = 2; inline void LogSubscriptionData::clear_log_level() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_level_.ClearToEmpty(); } inline const std::string& LogSubscriptionData::log_level() const @@ -15102,8 +15662,7 @@ inline const std::string& LogSubscriptionData::log_level() const template inline PROTOBUF_ALWAYS_INLINE void LogSubscriptionData::set_log_level(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_level_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level) } @@ -15113,26 +15672,24 @@ inline std::string* LogSubscriptionData::mutable_log_level() ABSL_ATTRIBUTE_LIFE return _s; } inline const std::string& LogSubscriptionData::_internal_log_level() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.log_level_.Get(); } inline void LogSubscriptionData::_internal_set_log_level(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_level_.Set(value, GetArena()); } inline std::string* LogSubscriptionData::_internal_mutable_log_level() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.log_level_.Mutable( GetArena()); } inline std::string* LogSubscriptionData::release_log_level() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level) return _impl_.log_level_.Release(); } inline void LogSubscriptionData::set_allocated_log_level(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_level_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.log_level_.IsDefault()) { @@ -15144,7 +15701,7 @@ inline void LogSubscriptionData::set_allocated_log_level(std::string* value) { // string message = 3; inline void LogSubscriptionData::clear_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.ClearToEmpty(); } inline const std::string& LogSubscriptionData::message() const @@ -15155,8 +15712,7 @@ inline const std::string& LogSubscriptionData::message() const template inline PROTOBUF_ALWAYS_INLINE void LogSubscriptionData::set_message(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message) } @@ -15166,26 +15722,24 @@ inline std::string* LogSubscriptionData::mutable_message() ABSL_ATTRIBUTE_LIFETI return _s; } inline const std::string& LogSubscriptionData::_internal_message() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.message_.Get(); } inline void LogSubscriptionData::_internal_set_message(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(value, GetArena()); } inline std::string* LogSubscriptionData::_internal_mutable_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.message_.Mutable( GetArena()); } inline std::string* LogSubscriptionData::release_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message) return _impl_.message_.Release(); } inline void LogSubscriptionData::set_allocated_message(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.message_.IsDefault()) { @@ -15206,7 +15760,7 @@ inline bool ExecuteCommandRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExecuteCommandRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15215,7 +15769,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExecuteCommandRequ return _internal_console_id(); } inline void ExecuteCommandRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15228,7 +15782,7 @@ inline void ExecuteCommandRequest::unsafe_arena_set_allocated_console_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -15247,7 +15801,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -15256,22 +15810,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) return _msg; } inline void ExecuteCommandRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15292,7 +15846,7 @@ inline void ExecuteCommandRequest::set_allocated_console_id(::io::deephaven::pro // string code = 3; inline void ExecuteCommandRequest::clear_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.code_.ClearToEmpty(); } inline const std::string& ExecuteCommandRequest::code() const @@ -15303,8 +15857,7 @@ inline const std::string& ExecuteCommandRequest::code() const template inline PROTOBUF_ALWAYS_INLINE void ExecuteCommandRequest::set_code(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.code_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code) } @@ -15314,26 +15867,24 @@ inline std::string* ExecuteCommandRequest::mutable_code() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& ExecuteCommandRequest::_internal_code() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.code_.Get(); } inline void ExecuteCommandRequest::_internal_set_code(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.code_.Set(value, GetArena()); } inline std::string* ExecuteCommandRequest::_internal_mutable_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.code_.Mutable( GetArena()); } inline std::string* ExecuteCommandRequest::release_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code) return _impl_.code_.Release(); } inline void ExecuteCommandRequest::set_allocated_code(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.code_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.code_.IsDefault()) { @@ -15349,7 +15900,7 @@ inline void ExecuteCommandRequest::set_allocated_code(std::string* value) { // string error_message = 1; inline void ExecuteCommandResponse::clear_error_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_message_.ClearToEmpty(); } inline const std::string& ExecuteCommandResponse::error_message() const @@ -15360,8 +15911,7 @@ inline const std::string& ExecuteCommandResponse::error_message() const template inline PROTOBUF_ALWAYS_INLINE void ExecuteCommandResponse::set_error_message(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_message_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message) } @@ -15371,26 +15921,24 @@ inline std::string* ExecuteCommandResponse::mutable_error_message() ABSL_ATTRIBU return _s; } inline const std::string& ExecuteCommandResponse::_internal_error_message() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.error_message_.Get(); } inline void ExecuteCommandResponse::_internal_set_error_message(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_message_.Set(value, GetArena()); } inline std::string* ExecuteCommandResponse::_internal_mutable_error_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.error_message_.Mutable( GetArena()); } inline std::string* ExecuteCommandResponse::release_error_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message) return _impl_.error_message_.Release(); } inline void ExecuteCommandResponse::set_allocated_error_message(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_message_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.error_message_.IsDefault()) { @@ -15407,7 +15955,7 @@ inline bool ExecuteCommandResponse::has_changes() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& ExecuteCommandResponse::_internal_changes() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* p = _impl_.changes_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_FieldsChangeUpdate_default_instance_); } @@ -15416,7 +15964,7 @@ inline const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& Execut return _internal_changes(); } inline void ExecuteCommandResponse::unsafe_arena_set_allocated_changes(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.changes_); } @@ -15429,7 +15977,7 @@ inline void ExecuteCommandResponse::unsafe_arena_set_allocated_changes(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) } inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::release_changes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* released = _impl_.changes_; @@ -15448,7 +15996,7 @@ inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteComma return released; } inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::unsafe_arena_release_changes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) _impl_._has_bits_[0] &= ~0x00000001u; @@ -15457,22 +16005,22 @@ inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteComma return temp; } inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::_internal_mutable_changes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.changes_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>(GetArena()); _impl_.changes_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate*>(p); } return _impl_.changes_; } inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::mutable_changes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* _msg = _internal_mutable_changes(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) return _msg; } inline void ExecuteCommandResponse::set_allocated_changes(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.changes_); } @@ -15502,7 +16050,7 @@ inline bool BindTableToVariableRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15511,7 +16059,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariabl return _internal_console_id(); } inline void BindTableToVariableRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15524,7 +16072,7 @@ inline void BindTableToVariableRequest::unsafe_arena_set_allocated_console_id(:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -15543,7 +16091,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableReque return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -15552,22 +16100,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableReque return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) return _msg; } inline void BindTableToVariableRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15588,7 +16136,7 @@ inline void BindTableToVariableRequest::set_allocated_console_id(::io::deephaven // string variable_name = 3; inline void BindTableToVariableRequest::clear_variable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.variable_name_.ClearToEmpty(); } inline const std::string& BindTableToVariableRequest::variable_name() const @@ -15599,8 +16147,7 @@ inline const std::string& BindTableToVariableRequest::variable_name() const template inline PROTOBUF_ALWAYS_INLINE void BindTableToVariableRequest::set_variable_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.variable_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name) } @@ -15610,26 +16157,24 @@ inline std::string* BindTableToVariableRequest::mutable_variable_name() ABSL_ATT return _s; } inline const std::string& BindTableToVariableRequest::_internal_variable_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.variable_name_.Get(); } inline void BindTableToVariableRequest::_internal_set_variable_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.variable_name_.Set(value, GetArena()); } inline std::string* BindTableToVariableRequest::_internal_mutable_variable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.variable_name_.Mutable( GetArena()); } inline std::string* BindTableToVariableRequest::release_variable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name) return _impl_.variable_name_.Release(); } inline void BindTableToVariableRequest::set_allocated_variable_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.variable_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.variable_name_.IsDefault()) { @@ -15646,7 +16191,7 @@ inline bool BindTableToVariableRequest::has_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_internal_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15655,7 +16200,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariabl return _internal_table_id(); } inline void BindTableToVariableRequest::unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); } @@ -15668,7 +16213,7 @@ inline void BindTableToVariableRequest::unsafe_arena_set_allocated_table_id(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::release_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_id_; @@ -15687,7 +16232,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableReque return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::unsafe_arena_release_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -15696,22 +16241,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableReque return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::_internal_mutable_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::mutable_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) return _msg; } inline void BindTableToVariableRequest::set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); } @@ -15745,7 +16290,7 @@ inline bool CancelCommandRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15754,7 +16299,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandReque return _internal_console_id(); } inline void CancelCommandRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15767,7 +16312,7 @@ inline void CancelCommandRequest::unsafe_arena_set_allocated_console_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -15786,7 +16331,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -15795,22 +16340,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) return _msg; } inline void CancelCommandRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15836,7 +16381,7 @@ inline bool CancelCommandRequest::has_command_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_internal_command_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.command_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15845,7 +16390,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandReque return _internal_command_id(); } inline void CancelCommandRequest::unsafe_arena_set_allocated_command_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.command_id_); } @@ -15858,7 +16403,7 @@ inline void CancelCommandRequest::unsafe_arena_set_allocated_command_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::release_command_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.command_id_; @@ -15877,7 +16422,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::unsafe_arena_release_command_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -15886,22 +16431,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::_internal_mutable_command_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.command_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.command_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.command_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::mutable_command_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_command_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) return _msg; } inline void CancelCommandRequest::set_allocated_command_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.command_id_); } @@ -15935,7 +16480,7 @@ inline bool CancelAutoCompleteRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelAutoCompleteRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -15944,7 +16489,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelAutoComplete return _internal_console_id(); } inline void CancelAutoCompleteRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -15957,7 +16502,7 @@ inline void CancelAutoCompleteRequest::unsafe_arena_set_allocated_console_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -15976,7 +16521,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteReques return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -15985,22 +16530,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteReques return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) return _msg; } inline void CancelAutoCompleteRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -16021,7 +16566,7 @@ inline void CancelAutoCompleteRequest::set_allocated_console_id(::io::deephaven: // int32 request_id = 2; inline void CancelAutoCompleteRequest::clear_request_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = 0; } inline ::int32_t CancelAutoCompleteRequest::request_id() const { @@ -16033,12 +16578,11 @@ inline void CancelAutoCompleteRequest::set_request_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.request_id) } inline ::int32_t CancelAutoCompleteRequest::_internal_request_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.request_id_; } inline void CancelAutoCompleteRequest::_internal_set_request_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = value; } @@ -16057,7 +16601,7 @@ inline bool AutoCompleteRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AutoCompleteRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -16066,7 +16610,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AutoCompleteReques return _internal_console_id(); } inline void AutoCompleteRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -16079,7 +16623,7 @@ inline void AutoCompleteRequest::unsafe_arena_set_allocated_console_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -16098,7 +16642,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -16107,22 +16651,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) return _msg; } inline void AutoCompleteRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -16143,7 +16687,7 @@ inline void AutoCompleteRequest::set_allocated_console_id(::io::deephaven::proto // int32 request_id = 6; inline void AutoCompleteRequest::clear_request_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = 0; } inline ::int32_t AutoCompleteRequest::request_id() const { @@ -16155,12 +16699,11 @@ inline void AutoCompleteRequest::set_request_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.request_id) } inline ::int32_t AutoCompleteRequest::_internal_request_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.request_id_; } inline void AutoCompleteRequest::_internal_set_request_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = value; } @@ -16175,10 +16718,12 @@ inline void AutoCompleteRequest::set_has_open_document() { _impl_._oneof_case_[0] = kOpenDocument; } inline void AutoCompleteRequest::clear_open_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kOpenDocument) { if (GetArena() == nullptr) { delete _impl_.request_.open_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.open_document_); } clear_has_request(); } @@ -16230,7 +16775,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* Aut if (request_case() != kOpenDocument) { clear_request(); set_has_open_document(); - _impl_.request_.open_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(GetArena()); + _impl_.request_.open_document_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(GetArena()); } return _impl_.request_.open_document_; } @@ -16251,10 +16797,12 @@ inline void AutoCompleteRequest::set_has_change_document() { _impl_._oneof_case_[0] = kChangeDocument; } inline void AutoCompleteRequest::clear_change_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kChangeDocument) { if (GetArena() == nullptr) { delete _impl_.request_.change_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.change_document_); } clear_has_request(); } @@ -16306,7 +16854,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* A if (request_case() != kChangeDocument) { clear_request(); set_has_change_document(); - _impl_.request_.change_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(GetArena()); + _impl_.request_.change_document_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(GetArena()); } return _impl_.request_.change_document_; } @@ -16327,10 +16876,12 @@ inline void AutoCompleteRequest::set_has_get_completion_items() { _impl_._oneof_case_[0] = kGetCompletionItems; } inline void AutoCompleteRequest::clear_get_completion_items() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kGetCompletionItems) { if (GetArena() == nullptr) { delete _impl_.request_.get_completion_items_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_completion_items_); } clear_has_request(); } @@ -16382,7 +16933,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsReques if (request_case() != kGetCompletionItems) { clear_request(); set_has_get_completion_items(); - _impl_.request_.get_completion_items_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(GetArena()); + _impl_.request_.get_completion_items_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(GetArena()); } return _impl_.request_.get_completion_items_; } @@ -16403,10 +16955,12 @@ inline void AutoCompleteRequest::set_has_get_signature_help() { _impl_._oneof_case_[0] = kGetSignatureHelp; } inline void AutoCompleteRequest::clear_get_signature_help() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kGetSignatureHelp) { if (GetArena() == nullptr) { delete _impl_.request_.get_signature_help_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_signature_help_); } clear_has_request(); } @@ -16458,7 +17012,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* if (request_case() != kGetSignatureHelp) { clear_request(); set_has_get_signature_help(); - _impl_.request_.get_signature_help_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(GetArena()); + _impl_.request_.get_signature_help_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(GetArena()); } return _impl_.request_.get_signature_help_; } @@ -16479,10 +17034,12 @@ inline void AutoCompleteRequest::set_has_get_hover() { _impl_._oneof_case_[0] = kGetHover; } inline void AutoCompleteRequest::clear_get_hover() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kGetHover) { if (GetArena() == nullptr) { delete _impl_.request_.get_hover_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_hover_); } clear_has_request(); } @@ -16534,7 +17091,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* AutoCom if (request_case() != kGetHover) { clear_request(); set_has_get_hover(); - _impl_.request_.get_hover_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(GetArena()); + _impl_.request_.get_hover_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(GetArena()); } return _impl_.request_.get_hover_; } @@ -16555,10 +17113,12 @@ inline void AutoCompleteRequest::set_has_get_diagnostic() { _impl_._oneof_case_[0] = kGetDiagnostic; } inline void AutoCompleteRequest::clear_get_diagnostic() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kGetDiagnostic) { if (GetArena() == nullptr) { delete _impl_.request_.get_diagnostic_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.get_diagnostic_); } clear_has_request(); } @@ -16610,7 +17170,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* Au if (request_case() != kGetDiagnostic) { clear_request(); set_has_get_diagnostic(); - _impl_.request_.get_diagnostic_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(GetArena()); + _impl_.request_.get_diagnostic_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(GetArena()); } return _impl_.request_.get_diagnostic_; } @@ -16631,10 +17192,12 @@ inline void AutoCompleteRequest::set_has_close_document() { _impl_._oneof_case_[0] = kCloseDocument; } inline void AutoCompleteRequest::clear_close_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (request_case() == kCloseDocument) { if (GetArena() == nullptr) { delete _impl_.request_.close_document_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.request_.close_document_); } clear_has_request(); } @@ -16686,7 +17249,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* Au if (request_case() != kCloseDocument) { clear_request(); set_has_close_document(); - _impl_.request_.close_document_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(GetArena()); + _impl_.request_.close_document_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(GetArena()); } return _impl_.request_.close_document_; } @@ -16711,7 +17275,7 @@ inline AutoCompleteRequest::RequestCase AutoCompleteRequest::request_case() cons // int32 request_id = 2; inline void AutoCompleteResponse::clear_request_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = 0; } inline ::int32_t AutoCompleteResponse::request_id() const { @@ -16723,18 +17287,17 @@ inline void AutoCompleteResponse::set_request_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.request_id) } inline ::int32_t AutoCompleteResponse::_internal_request_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.request_id_; } inline void AutoCompleteResponse::_internal_set_request_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = value; } // bool success = 3; inline void AutoCompleteResponse::clear_success() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = false; } inline bool AutoCompleteResponse::success() const { @@ -16746,12 +17309,11 @@ inline void AutoCompleteResponse::set_success(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.success) } inline bool AutoCompleteResponse::_internal_success() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.success_; } inline void AutoCompleteResponse::_internal_set_success(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = value; } @@ -16766,10 +17328,12 @@ inline void AutoCompleteResponse::set_has_completion_items() { _impl_._oneof_case_[0] = kCompletionItems; } inline void AutoCompleteResponse::clear_completion_items() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (response_case() == kCompletionItems) { if (GetArena() == nullptr) { delete _impl_.response_.completion_items_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.completion_items_); } clear_has_response(); } @@ -16821,7 +17385,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRespon if (response_case() != kCompletionItems) { clear_response(); set_has_completion_items(); - _impl_.response_.completion_items_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(GetArena()); + _impl_.response_.completion_items_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(GetArena()); } return _impl_.response_.completion_items_; } @@ -16842,10 +17407,12 @@ inline void AutoCompleteResponse::set_has_signatures() { _impl_._oneof_case_[0] = kSignatures; } inline void AutoCompleteResponse::clear_signatures() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (response_case() == kSignatures) { if (GetArena() == nullptr) { delete _impl_.response_.signatures_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.signatures_); } clear_has_response(); } @@ -16897,7 +17464,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse if (response_case() != kSignatures) { clear_response(); set_has_signatures(); - _impl_.response_.signatures_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(GetArena()); + _impl_.response_.signatures_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(GetArena()); } return _impl_.response_.signatures_; } @@ -16918,10 +17486,12 @@ inline void AutoCompleteResponse::set_has_hover() { _impl_._oneof_case_[0] = kHover; } inline void AutoCompleteResponse::clear_hover() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (response_case() == kHover) { if (GetArena() == nullptr) { delete _impl_.response_.hover_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.hover_); } clear_has_response(); } @@ -16973,7 +17543,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* AutoCo if (response_case() != kHover) { clear_response(); set_has_hover(); - _impl_.response_.hover_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(GetArena()); + _impl_.response_.hover_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(GetArena()); } return _impl_.response_.hover_; } @@ -16994,10 +17565,12 @@ inline void AutoCompleteResponse::set_has_diagnostic() { _impl_._oneof_case_[0] = kDiagnostic; } inline void AutoCompleteResponse::clear_diagnostic() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (response_case() == kDiagnostic) { if (GetArena() == nullptr) { delete _impl_.response_.diagnostic_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.diagnostic_); } clear_has_response(); } @@ -17049,7 +17622,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticRespons if (response_case() != kDiagnostic) { clear_response(); set_has_diagnostic(); - _impl_.response_.diagnostic_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(GetArena()); + _impl_.response_.diagnostic_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(GetArena()); } return _impl_.response_.diagnostic_; } @@ -17070,10 +17644,12 @@ inline void AutoCompleteResponse::set_has_diagnostic_publish() { _impl_._oneof_case_[0] = kDiagnosticPublish; } inline void AutoCompleteResponse::clear_diagnostic_publish() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (response_case() == kDiagnosticPublish) { if (GetArena() == nullptr) { delete _impl_.response_.diagnostic_publish_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.response_.diagnostic_publish_); } clear_has_response(); } @@ -17125,7 +17701,8 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResp if (response_case() != kDiagnosticPublish) { clear_response(); set_has_diagnostic_publish(); - _impl_.response_.diagnostic_publish_ = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(GetArena()); + _impl_.response_.diagnostic_publish_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(GetArena()); } return _impl_.response_.diagnostic_publish_; } @@ -17159,7 +17736,7 @@ inline bool OpenDocumentRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& OpenDocumentRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -17168,7 +17745,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& OpenDocumentReques return _internal_console_id(); } inline void OpenDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17181,7 +17758,7 @@ inline void OpenDocumentRequest::unsafe_arena_set_allocated_console_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -17200,7 +17777,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -17209,22 +17786,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) return _msg; } inline void OpenDocumentRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17250,12 +17827,12 @@ inline bool OpenDocumentRequest::has_text_document() const { return value; } inline void OpenDocumentRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& OpenDocumentRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_TextDocumentItem_default_instance_); } @@ -17264,7 +17841,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& return _internal_text_document(); } inline void OpenDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -17277,7 +17854,7 @@ inline void OpenDocumentRequest::unsafe_arena_set_allocated_text_document(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* released = _impl_.text_document_; @@ -17296,7 +17873,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDo return released; } inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) _impl_._has_bits_[0] &= ~0x00000002u; @@ -17305,28 +17882,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDo return temp; } inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) return _msg; } inline void OpenDocumentRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -17345,7 +17922,7 @@ inline void OpenDocumentRequest::set_allocated_text_document(::io::deephaven::pr // string uri = 1; inline void TextDocumentItem::clear_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.ClearToEmpty(); } inline const std::string& TextDocumentItem::uri() const @@ -17356,8 +17933,7 @@ inline const std::string& TextDocumentItem::uri() const template inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_uri(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri) } @@ -17367,26 +17943,24 @@ inline std::string* TextDocumentItem::mutable_uri() ABSL_ATTRIBUTE_LIFETIME_BOUN return _s; } inline const std::string& TextDocumentItem::_internal_uri() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.uri_.Get(); } inline void TextDocumentItem::_internal_set_uri(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(value, GetArena()); } inline std::string* TextDocumentItem::_internal_mutable_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.uri_.Mutable( GetArena()); } inline std::string* TextDocumentItem::release_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri) return _impl_.uri_.Release(); } inline void TextDocumentItem::set_allocated_uri(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.uri_.IsDefault()) { @@ -17398,7 +17972,7 @@ inline void TextDocumentItem::set_allocated_uri(std::string* value) { // string language_id = 2; inline void TextDocumentItem::clear_language_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.language_id_.ClearToEmpty(); } inline const std::string& TextDocumentItem::language_id() const @@ -17409,8 +17983,7 @@ inline const std::string& TextDocumentItem::language_id() const template inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_language_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.language_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id) } @@ -17420,26 +17993,24 @@ inline std::string* TextDocumentItem::mutable_language_id() ABSL_ATTRIBUTE_LIFET return _s; } inline const std::string& TextDocumentItem::_internal_language_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.language_id_.Get(); } inline void TextDocumentItem::_internal_set_language_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.language_id_.Set(value, GetArena()); } inline std::string* TextDocumentItem::_internal_mutable_language_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.language_id_.Mutable( GetArena()); } inline std::string* TextDocumentItem::release_language_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id) return _impl_.language_id_.Release(); } inline void TextDocumentItem::set_allocated_language_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.language_id_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.language_id_.IsDefault()) { @@ -17451,7 +18022,7 @@ inline void TextDocumentItem::set_allocated_language_id(std::string* value) { // int32 version = 3; inline void TextDocumentItem::clear_version() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = 0; } inline ::int32_t TextDocumentItem::version() const { @@ -17463,18 +18034,17 @@ inline void TextDocumentItem::set_version(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.version) } inline ::int32_t TextDocumentItem::_internal_version() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.version_; } inline void TextDocumentItem::_internal_set_version(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = value; } // string text = 4; inline void TextDocumentItem::clear_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.ClearToEmpty(); } inline const std::string& TextDocumentItem::text() const @@ -17485,8 +18055,7 @@ inline const std::string& TextDocumentItem::text() const template inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_text(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text) } @@ -17496,26 +18065,24 @@ inline std::string* TextDocumentItem::mutable_text() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& TextDocumentItem::_internal_text() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.text_.Get(); } inline void TextDocumentItem::_internal_set_text(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(value, GetArena()); } inline std::string* TextDocumentItem::_internal_mutable_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.text_.Mutable( GetArena()); } inline std::string* TextDocumentItem::release_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text) return _impl_.text_.Release(); } inline void TextDocumentItem::set_allocated_text(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.text_.IsDefault()) { @@ -17536,7 +18103,7 @@ inline bool CloseDocumentRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CloseDocumentRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -17545,7 +18112,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CloseDocumentReque return _internal_console_id(); } inline void CloseDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17558,7 +18125,7 @@ inline void CloseDocumentRequest::unsafe_arena_set_allocated_console_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -17577,7 +18144,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -17586,22 +18153,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) return _msg; } inline void CloseDocumentRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17627,12 +18194,12 @@ inline bool CloseDocumentRequest::has_text_document() const { return value; } inline void CloseDocumentRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& CloseDocumentRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -17641,7 +18208,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void CloseDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -17654,7 +18221,7 @@ inline void CloseDocumentRequest::unsafe_arena_set_allocated_text_document(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -17673,7 +18240,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) _impl_._has_bits_[0] &= ~0x00000002u; @@ -17682,28 +18249,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) return _msg; } inline void CloseDocumentRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -17727,12 +18294,12 @@ inline bool ChangeDocumentRequest_TextDocumentContentChangeEvent::has_range() co return value; } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ != nullptr) _impl_.range_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::DocumentRange* p = _impl_.range_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_DocumentRange_default_instance_); } @@ -17741,7 +18308,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Cha return _internal_range(); } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); } @@ -17754,7 +18321,7 @@ inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::unsafe_arena_s // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; @@ -17773,7 +18340,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDoc return released; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::unsafe_arena_release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) _impl_._has_bits_[0] &= ~0x00000001u; @@ -17782,28 +18349,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDoc return temp; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_mutable_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(p); } return _impl_.range_; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::mutable_range() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _msg = _internal_mutable_range(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) return _msg; } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(_impl_.range_); + delete (_impl_.range_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -17818,7 +18385,7 @@ inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_allocated_ // int32 range_length = 2; inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_range_length() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_length_ = 0; } inline ::int32_t ChangeDocumentRequest_TextDocumentContentChangeEvent::range_length() const { @@ -17830,18 +18397,17 @@ inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_range_leng // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range_length) } inline ::int32_t ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_range_length() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.range_length_; } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_set_range_length(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_length_ = value; } // string text = 3; inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.ClearToEmpty(); } inline const std::string& ChangeDocumentRequest_TextDocumentContentChangeEvent::text() const @@ -17852,8 +18418,7 @@ inline const std::string& ChangeDocumentRequest_TextDocumentContentChangeEvent:: template inline PROTOBUF_ALWAYS_INLINE void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_text(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text) } @@ -17863,26 +18428,24 @@ inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::mutabl return _s; } inline const std::string& ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_text() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.text_.Get(); } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_set_text(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(value, GetArena()); } inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_mutable_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.text_.Mutable( GetArena()); } inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::release_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text) return _impl_.text_.Release(); } inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_allocated_text(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.text_.IsDefault()) { @@ -17903,7 +18466,7 @@ inline bool ChangeDocumentRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ChangeDocumentRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -17912,7 +18475,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ChangeDocumentRequ return _internal_console_id(); } inline void ChangeDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17925,7 +18488,7 @@ inline void ChangeDocumentRequest::unsafe_arena_set_allocated_console_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -17944,7 +18507,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -17953,22 +18516,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) return _msg; } inline void ChangeDocumentRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -17994,12 +18557,12 @@ inline bool ChangeDocumentRequest::has_text_document() const { return value; } inline void ChangeDocumentRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& ChangeDocumentRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -18008,7 +18571,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void ChangeDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -18021,7 +18584,7 @@ inline void ChangeDocumentRequest::unsafe_arena_set_allocated_text_document(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -18040,7 +18603,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) _impl_._has_bits_[0] &= ~0x00000002u; @@ -18049,28 +18612,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) return _msg; } inline void ChangeDocumentRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18091,7 +18654,7 @@ inline int ChangeDocumentRequest::content_changes_size() const { return _internal_content_changes_size(); } inline void ChangeDocumentRequest::clear_content_changes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.content_changes_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* ChangeDocumentRequest::mutable_content_changes(int index) @@ -18102,7 +18665,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_Te inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>* ChangeDocumentRequest::mutable_content_changes() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.content_changes) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_content_changes(); } inline const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent& ChangeDocumentRequest::content_changes(int index) const @@ -18111,7 +18674,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequ return _internal_content_changes().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* ChangeDocumentRequest::add_content_changes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* _add = _internal_mutable_content_changes()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.content_changes) return _add; @@ -18123,12 +18686,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>& ChangeDocumentRequest::_internal_content_changes() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.content_changes_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>* ChangeDocumentRequest::_internal_mutable_content_changes() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.content_changes_; } @@ -18143,12 +18706,12 @@ inline bool DocumentRange::has_start() const { return value; } inline void DocumentRange::clear_start() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.start_ != nullptr) _impl_.start_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::_internal_start() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Position* p = _impl_.start_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_); } @@ -18157,7 +18720,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Position& Document return _internal_start(); } inline void DocumentRange::unsafe_arena_set_allocated_start(::io::deephaven::proto::backplane::script::grpc::Position* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.start_); } @@ -18170,7 +18733,7 @@ inline void DocumentRange::unsafe_arena_set_allocated_start(::io::deephaven::pro // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::release_start() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.start_; @@ -18189,7 +18752,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange: return released; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::unsafe_arena_release_start() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) _impl_._has_bits_[0] &= ~0x00000001u; @@ -18198,28 +18761,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange: return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::_internal_mutable_start() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.start_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); _impl_.start_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(p); } return _impl_.start_; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::mutable_start() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::Position* _msg = _internal_mutable_start(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) return _msg; } inline void DocumentRange::set_allocated_start(::io::deephaven::proto::backplane::script::grpc::Position* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(_impl_.start_); + delete (_impl_.start_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18239,12 +18802,12 @@ inline bool DocumentRange::has_end() const { return value; } inline void DocumentRange::clear_end() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.end_ != nullptr) _impl_.end_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::_internal_end() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Position* p = _impl_.end_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_); } @@ -18253,7 +18816,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Position& Document return _internal_end(); } inline void DocumentRange::unsafe_arena_set_allocated_end(::io::deephaven::proto::backplane::script::grpc::Position* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.end_); } @@ -18266,7 +18829,7 @@ inline void DocumentRange::unsafe_arena_set_allocated_end(::io::deephaven::proto // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::release_end() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.end_; @@ -18285,7 +18848,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange: return released; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::unsafe_arena_release_end() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) _impl_._has_bits_[0] &= ~0x00000002u; @@ -18294,28 +18857,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange: return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::_internal_mutable_end() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.end_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); _impl_.end_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(p); } return _impl_.end_; } inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::mutable_end() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::Position* _msg = _internal_mutable_end(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) return _msg; } inline void DocumentRange::set_allocated_end(::io::deephaven::proto::backplane::script::grpc::Position* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(_impl_.end_); + delete (_impl_.end_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18334,7 +18897,7 @@ inline void DocumentRange::set_allocated_end(::io::deephaven::proto::backplane:: // string uri = 1; inline void VersionedTextDocumentIdentifier::clear_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.ClearToEmpty(); } inline const std::string& VersionedTextDocumentIdentifier::uri() const @@ -18345,8 +18908,7 @@ inline const std::string& VersionedTextDocumentIdentifier::uri() const template inline PROTOBUF_ALWAYS_INLINE void VersionedTextDocumentIdentifier::set_uri(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri) } @@ -18356,26 +18918,24 @@ inline std::string* VersionedTextDocumentIdentifier::mutable_uri() ABSL_ATTRIBUT return _s; } inline const std::string& VersionedTextDocumentIdentifier::_internal_uri() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.uri_.Get(); } inline void VersionedTextDocumentIdentifier::_internal_set_uri(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(value, GetArena()); } inline std::string* VersionedTextDocumentIdentifier::_internal_mutable_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.uri_.Mutable( GetArena()); } inline std::string* VersionedTextDocumentIdentifier::release_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri) return _impl_.uri_.Release(); } inline void VersionedTextDocumentIdentifier::set_allocated_uri(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.uri_.IsDefault()) { @@ -18387,7 +18947,7 @@ inline void VersionedTextDocumentIdentifier::set_allocated_uri(std::string* valu // int32 version = 2; inline void VersionedTextDocumentIdentifier::clear_version() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = 0; } inline ::int32_t VersionedTextDocumentIdentifier::version() const { @@ -18399,12 +18959,11 @@ inline void VersionedTextDocumentIdentifier::set_version(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.version) } inline ::int32_t VersionedTextDocumentIdentifier::_internal_version() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.version_; } inline void VersionedTextDocumentIdentifier::_internal_set_version(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = value; } @@ -18414,7 +18973,7 @@ inline void VersionedTextDocumentIdentifier::_internal_set_version(::int32_t val // int32 line = 1; inline void Position::clear_line() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_ = 0; } inline ::int32_t Position::line() const { @@ -18426,18 +18985,17 @@ inline void Position::set_line(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Position.line) } inline ::int32_t Position::_internal_line() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.line_; } inline void Position::_internal_set_line(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_ = value; } // int32 character = 2; inline void Position::clear_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.character_ = 0; } inline ::int32_t Position::character() const { @@ -18449,12 +19007,11 @@ inline void Position::set_character(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Position.character) } inline ::int32_t Position::_internal_character() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.character_; } inline void Position::_internal_set_character(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.character_ = value; } @@ -18464,7 +19021,7 @@ inline void Position::_internal_set_character(::int32_t value) { // string kind = 1; inline void MarkupContent::clear_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.ClearToEmpty(); } inline const std::string& MarkupContent::kind() const @@ -18475,8 +19032,7 @@ inline const std::string& MarkupContent::kind() const template inline PROTOBUF_ALWAYS_INLINE void MarkupContent::set_kind(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.MarkupContent.kind) } @@ -18486,26 +19042,24 @@ inline std::string* MarkupContent::mutable_kind() ABSL_ATTRIBUTE_LIFETIME_BOUND return _s; } inline const std::string& MarkupContent::_internal_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.kind_.Get(); } inline void MarkupContent::_internal_set_kind(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.Set(value, GetArena()); } inline std::string* MarkupContent::_internal_mutable_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.kind_.Mutable( GetArena()); } inline std::string* MarkupContent::release_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.MarkupContent.kind) return _impl_.kind_.Release(); } inline void MarkupContent::set_allocated_kind(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.kind_.IsDefault()) { @@ -18517,7 +19071,7 @@ inline void MarkupContent::set_allocated_kind(std::string* value) { // string value = 2; inline void MarkupContent::clear_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.value_.ClearToEmpty(); } inline const std::string& MarkupContent::value() const @@ -18528,8 +19082,7 @@ inline const std::string& MarkupContent::value() const template inline PROTOBUF_ALWAYS_INLINE void MarkupContent::set_value(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.value_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.MarkupContent.value) } @@ -18539,26 +19092,24 @@ inline std::string* MarkupContent::mutable_value() ABSL_ATTRIBUTE_LIFETIME_BOUND return _s; } inline const std::string& MarkupContent::_internal_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.value_.Get(); } inline void MarkupContent::_internal_set_value(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.value_.Set(value, GetArena()); } inline std::string* MarkupContent::_internal_mutable_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.value_.Mutable( GetArena()); } inline std::string* MarkupContent::release_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.MarkupContent.value) return _impl_.value_.Release(); } inline void MarkupContent::set_allocated_value(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.value_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.value_.IsDefault()) { @@ -18579,7 +19130,7 @@ inline bool GetCompletionItemsRequest::has_console_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetCompletionItemsRequest::_internal_console_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.console_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -18588,7 +19139,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetCompletionItems return _internal_console_id(); } inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -18601,7 +19152,7 @@ inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_console_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; @@ -18620,7 +19171,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsReques return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::unsafe_arena_release_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -18629,22 +19180,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsReques return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::_internal_mutable_console_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.console_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.console_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::mutable_console_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_console_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) return _msg; } inline void GetCompletionItemsRequest::set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); } @@ -18670,12 +19221,12 @@ inline bool GetCompletionItemsRequest::has_context() const { return value; } inline void GetCompletionItemsRequest::clear_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.context_ != nullptr) _impl_.context_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& GetCompletionItemsRequest::_internal_context() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::CompletionContext* p = _impl_.context_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_CompletionContext_default_instance_); } @@ -18684,7 +19235,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& return _internal_context(); } inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::CompletionContext* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.context_); } @@ -18697,7 +19248,7 @@ inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_context(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) } inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::release_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::CompletionContext* released = _impl_.context_; @@ -18716,7 +19267,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCo return released; } inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::unsafe_arena_release_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) _impl_._has_bits_[0] &= ~0x00000002u; @@ -18725,28 +19276,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCo return temp; } inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::_internal_mutable_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.context_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::CompletionContext>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::CompletionContext>(GetArena()); _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CompletionContext*>(p); } return _impl_.context_; } inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::mutable_context() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::CompletionContext* _msg = _internal_mutable_context(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) return _msg; } inline void GetCompletionItemsRequest::set_allocated_context(::io::deephaven::proto::backplane::script::grpc::CompletionContext* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CompletionContext*>(_impl_.context_); + delete (_impl_.context_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CompletionContext*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18766,12 +19317,12 @@ inline bool GetCompletionItemsRequest::has_text_document() const { return value; } inline void GetCompletionItemsRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetCompletionItemsRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -18780,7 +19331,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -18793,7 +19344,7 @@ inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_text_document( // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -18812,7 +19363,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) _impl_._has_bits_[0] &= ~0x00000004u; @@ -18821,28 +19372,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) return _msg; } inline void GetCompletionItemsRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18862,12 +19413,12 @@ inline bool GetCompletionItemsRequest::has_position() const { return value; } inline void GetCompletionItemsRequest::clear_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ != nullptr) _impl_.position_->Clear(); _impl_._has_bits_[0] &= ~0x00000008u; } inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetCompletionItemsRequest::_internal_position() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Position* p = _impl_.position_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_); } @@ -18876,7 +19427,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetCompl return _internal_position(); } inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); } @@ -18889,7 +19440,7 @@ inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_position(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000008u; ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; @@ -18908,7 +19459,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionI return released; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::unsafe_arena_release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) _impl_._has_bits_[0] &= ~0x00000008u; @@ -18917,28 +19468,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionI return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::_internal_mutable_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000008u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(p); } return _impl_.position_; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::mutable_position() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000008u; ::io::deephaven::proto::backplane::script::grpc::Position* _msg = _internal_mutable_position(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) return _msg; } inline void GetCompletionItemsRequest::set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(_impl_.position_); + delete (_impl_.position_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -18953,7 +19504,7 @@ inline void GetCompletionItemsRequest::set_allocated_position(::io::deephaven::p // int32 request_id = 5 [deprecated = true]; inline void GetCompletionItemsRequest::clear_request_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = 0; } inline ::int32_t GetCompletionItemsRequest::request_id() const { @@ -18965,12 +19516,11 @@ inline void GetCompletionItemsRequest::set_request_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.request_id) } inline ::int32_t GetCompletionItemsRequest::_internal_request_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.request_id_; } inline void GetCompletionItemsRequest::_internal_set_request_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = value; } @@ -18980,7 +19530,7 @@ inline void GetCompletionItemsRequest::_internal_set_request_id(::int32_t value) // int32 trigger_kind = 1; inline void CompletionContext::clear_trigger_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_kind_ = 0; } inline ::int32_t CompletionContext::trigger_kind() const { @@ -18992,18 +19542,17 @@ inline void CompletionContext::set_trigger_kind(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_kind) } inline ::int32_t CompletionContext::_internal_trigger_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.trigger_kind_; } inline void CompletionContext::_internal_set_trigger_kind(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_kind_ = value; } // string trigger_character = 2; inline void CompletionContext::clear_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_character_.ClearToEmpty(); } inline const std::string& CompletionContext::trigger_character() const @@ -19014,8 +19563,7 @@ inline const std::string& CompletionContext::trigger_character() const template inline PROTOBUF_ALWAYS_INLINE void CompletionContext::set_trigger_character(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_character_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character) } @@ -19025,26 +19573,24 @@ inline std::string* CompletionContext::mutable_trigger_character() ABSL_ATTRIBUT return _s; } inline const std::string& CompletionContext::_internal_trigger_character() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.trigger_character_.Get(); } inline void CompletionContext::_internal_set_trigger_character(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_character_.Set(value, GetArena()); } inline std::string* CompletionContext::_internal_mutable_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.trigger_character_.Mutable( GetArena()); } inline std::string* CompletionContext::release_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character) return _impl_.trigger_character_.Release(); } inline void CompletionContext::set_allocated_trigger_character(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_character_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.trigger_character_.IsDefault()) { @@ -19066,7 +19612,7 @@ inline int GetCompletionItemsResponse::items_size() const { return _internal_items_size(); } inline void GetCompletionItemsResponse::clear_items() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.items_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::CompletionItem* GetCompletionItemsResponse::mutable_items(int index) @@ -19077,7 +19623,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::CompletionItem* GetCompl inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>* GetCompletionItemsResponse::mutable_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.items) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_items(); } inline const ::io::deephaven::proto::backplane::script::grpc::CompletionItem& GetCompletionItemsResponse::items(int index) const @@ -19086,7 +19632,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::CompletionItem& Ge return _internal_items().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::CompletionItem* GetCompletionItemsResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::CompletionItem* _add = _internal_mutable_items()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.items) return _add; @@ -19098,18 +19644,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>& GetCompletionItemsResponse::_internal_items() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.items_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>* GetCompletionItemsResponse::_internal_mutable_items() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.items_; } // int32 request_id = 2 [deprecated = true]; inline void GetCompletionItemsResponse::clear_request_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = 0; } inline ::int32_t GetCompletionItemsResponse::request_id() const { @@ -19121,18 +19667,17 @@ inline void GetCompletionItemsResponse::set_request_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.request_id) } inline ::int32_t GetCompletionItemsResponse::_internal_request_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.request_id_; } inline void GetCompletionItemsResponse::_internal_set_request_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.request_id_ = value; } // bool success = 3 [deprecated = true]; inline void GetCompletionItemsResponse::clear_success() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = false; } inline bool GetCompletionItemsResponse::success() const { @@ -19144,12 +19689,11 @@ inline void GetCompletionItemsResponse::set_success(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.success) } inline bool GetCompletionItemsResponse::_internal_success() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.success_; } inline void GetCompletionItemsResponse::_internal_set_success(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = value; } @@ -19159,7 +19703,7 @@ inline void GetCompletionItemsResponse::_internal_set_success(bool value) { // int32 start = 1; inline void CompletionItem::clear_start() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.start_ = 0; } inline ::int32_t CompletionItem::start() const { @@ -19171,18 +19715,17 @@ inline void CompletionItem::set_start(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.start) } inline ::int32_t CompletionItem::_internal_start() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.start_; } inline void CompletionItem::_internal_set_start(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.start_ = value; } // int32 length = 2; inline void CompletionItem::clear_length() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.length_ = 0; } inline ::int32_t CompletionItem::length() const { @@ -19194,18 +19737,17 @@ inline void CompletionItem::set_length(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.length) } inline ::int32_t CompletionItem::_internal_length() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.length_; } inline void CompletionItem::_internal_set_length(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.length_ = value; } // string label = 3; inline void CompletionItem::clear_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.ClearToEmpty(); } inline const std::string& CompletionItem::label() const @@ -19216,8 +19758,7 @@ inline const std::string& CompletionItem::label() const template inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_label(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.label) } @@ -19227,26 +19768,24 @@ inline std::string* CompletionItem::mutable_label() ABSL_ATTRIBUTE_LIFETIME_BOUN return _s; } inline const std::string& CompletionItem::_internal_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.label_.Get(); } inline void CompletionItem::_internal_set_label(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(value, GetArena()); } inline std::string* CompletionItem::_internal_mutable_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.label_.Mutable( GetArena()); } inline std::string* CompletionItem::release_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.label) return _impl_.label_.Release(); } inline void CompletionItem::set_allocated_label(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.label_.IsDefault()) { @@ -19258,7 +19797,7 @@ inline void CompletionItem::set_allocated_label(std::string* value) { // int32 kind = 4; inline void CompletionItem::clear_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_ = 0; } inline ::int32_t CompletionItem::kind() const { @@ -19270,18 +19809,17 @@ inline void CompletionItem::set_kind(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.kind) } inline ::int32_t CompletionItem::_internal_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.kind_; } inline void CompletionItem::_internal_set_kind(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_ = value; } // string detail = 5; inline void CompletionItem::clear_detail() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.detail_.ClearToEmpty(); } inline const std::string& CompletionItem::detail() const @@ -19292,8 +19830,7 @@ inline const std::string& CompletionItem::detail() const template inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_detail(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.detail_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.detail) } @@ -19303,26 +19840,24 @@ inline std::string* CompletionItem::mutable_detail() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& CompletionItem::_internal_detail() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.detail_.Get(); } inline void CompletionItem::_internal_set_detail(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.detail_.Set(value, GetArena()); } inline std::string* CompletionItem::_internal_mutable_detail() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.detail_.Mutable( GetArena()); } inline std::string* CompletionItem::release_detail() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.detail) return _impl_.detail_.Release(); } inline void CompletionItem::set_allocated_detail(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.detail_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.detail_.IsDefault()) { @@ -19334,7 +19869,7 @@ inline void CompletionItem::set_allocated_detail(std::string* value) { // bool deprecated = 7; inline void CompletionItem::clear_deprecated() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.deprecated_ = false; } inline bool CompletionItem::deprecated() const { @@ -19346,18 +19881,17 @@ inline void CompletionItem::set_deprecated(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.deprecated) } inline bool CompletionItem::_internal_deprecated() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.deprecated_; } inline void CompletionItem::_internal_set_deprecated(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.deprecated_ = value; } // bool preselect = 8; inline void CompletionItem::clear_preselect() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.preselect_ = false; } inline bool CompletionItem::preselect() const { @@ -19369,12 +19903,11 @@ inline void CompletionItem::set_preselect(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.preselect) } inline bool CompletionItem::_internal_preselect() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.preselect_; } inline void CompletionItem::_internal_set_preselect(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.preselect_ = value; } @@ -19385,12 +19918,12 @@ inline bool CompletionItem::has_text_edit() const { return value; } inline void CompletionItem::clear_text_edit() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_edit_ != nullptr) _impl_.text_edit_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::TextEdit& CompletionItem::_internal_text_edit() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::TextEdit* p = _impl_.text_edit_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_TextEdit_default_instance_); } @@ -19399,7 +19932,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::TextEdit& Completi return _internal_text_edit(); } inline void CompletionItem::unsafe_arena_set_allocated_text_edit(::io::deephaven::proto::backplane::script::grpc::TextEdit* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_edit_); } @@ -19412,7 +19945,7 @@ inline void CompletionItem::unsafe_arena_set_allocated_text_edit(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::release_text_edit() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::TextEdit* released = _impl_.text_edit_; @@ -19431,7 +19964,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem return released; } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::unsafe_arena_release_text_edit() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) _impl_._has_bits_[0] &= ~0x00000001u; @@ -19440,28 +19973,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem return temp; } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::_internal_mutable_text_edit() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_edit_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::TextEdit>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::TextEdit>(GetArena()); _impl_.text_edit_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextEdit*>(p); } return _impl_.text_edit_; } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::mutable_text_edit() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::TextEdit* _msg = _internal_mutable_text_edit(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) return _msg; } inline void CompletionItem::set_allocated_text_edit(::io::deephaven::proto::backplane::script::grpc::TextEdit* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextEdit*>(_impl_.text_edit_); + delete (_impl_.text_edit_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextEdit*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -19476,7 +20009,7 @@ inline void CompletionItem::set_allocated_text_edit(::io::deephaven::proto::back // string sort_text = 10; inline void CompletionItem::clear_sort_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sort_text_.ClearToEmpty(); } inline const std::string& CompletionItem::sort_text() const @@ -19487,8 +20020,7 @@ inline const std::string& CompletionItem::sort_text() const template inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_sort_text(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sort_text_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text) } @@ -19498,26 +20030,24 @@ inline std::string* CompletionItem::mutable_sort_text() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& CompletionItem::_internal_sort_text() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.sort_text_.Get(); } inline void CompletionItem::_internal_set_sort_text(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sort_text_.Set(value, GetArena()); } inline std::string* CompletionItem::_internal_mutable_sort_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.sort_text_.Mutable( GetArena()); } inline std::string* CompletionItem::release_sort_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text) return _impl_.sort_text_.Release(); } inline void CompletionItem::set_allocated_sort_text(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sort_text_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.sort_text_.IsDefault()) { @@ -19529,7 +20059,7 @@ inline void CompletionItem::set_allocated_sort_text(std::string* value) { // string filter_text = 11; inline void CompletionItem::clear_filter_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filter_text_.ClearToEmpty(); } inline const std::string& CompletionItem::filter_text() const @@ -19540,8 +20070,7 @@ inline const std::string& CompletionItem::filter_text() const template inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_filter_text(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filter_text_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text) } @@ -19551,26 +20080,24 @@ inline std::string* CompletionItem::mutable_filter_text() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& CompletionItem::_internal_filter_text() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filter_text_.Get(); } inline void CompletionItem::_internal_set_filter_text(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filter_text_.Set(value, GetArena()); } inline std::string* CompletionItem::_internal_mutable_filter_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.filter_text_.Mutable( GetArena()); } inline std::string* CompletionItem::release_filter_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text) return _impl_.filter_text_.Release(); } inline void CompletionItem::set_allocated_filter_text(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filter_text_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.filter_text_.IsDefault()) { @@ -19582,7 +20109,7 @@ inline void CompletionItem::set_allocated_filter_text(std::string* value) { // int32 insert_text_format = 12; inline void CompletionItem::clear_insert_text_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.insert_text_format_ = 0; } inline ::int32_t CompletionItem::insert_text_format() const { @@ -19594,12 +20121,11 @@ inline void CompletionItem::set_insert_text_format(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.insert_text_format) } inline ::int32_t CompletionItem::_internal_insert_text_format() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.insert_text_format_; } inline void CompletionItem::_internal_set_insert_text_format(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.insert_text_format_ = value; } @@ -19611,7 +20137,7 @@ inline int CompletionItem::additional_text_edits_size() const { return _internal_additional_text_edits_size(); } inline void CompletionItem::clear_additional_text_edits() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.additional_text_edits_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::mutable_additional_text_edits(int index) @@ -19622,7 +20148,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>* CompletionItem::mutable_additional_text_edits() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.CompletionItem.additional_text_edits) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_additional_text_edits(); } inline const ::io::deephaven::proto::backplane::script::grpc::TextEdit& CompletionItem::additional_text_edits(int index) const @@ -19631,7 +20157,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::TextEdit& Completi return _internal_additional_text_edits().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::add_additional_text_edits() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::TextEdit* _add = _internal_mutable_additional_text_edits()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.CompletionItem.additional_text_edits) return _add; @@ -19643,12 +20169,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>& CompletionItem::_internal_additional_text_edits() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.additional_text_edits_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>* CompletionItem::_internal_mutable_additional_text_edits() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.additional_text_edits_; } @@ -19660,12 +20186,11 @@ inline int CompletionItem::commit_characters_size() const { return _internal_commit_characters_size(); } inline void CompletionItem::clear_commit_characters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.commit_characters_.Clear(); } -inline std::string* CompletionItem::add_commit_characters() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* CompletionItem::add_commit_characters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_commit_characters()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) return _s; @@ -19680,57 +20205,21 @@ inline std::string* CompletionItem::mutable_commit_characters(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) return _internal_mutable_commit_characters()->Mutable(index); } -inline void CompletionItem::set_commit_characters(int index, const std::string& value) { - _internal_mutable_commit_characters()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::set_commit_characters(int index, std::string&& value) { - _internal_mutable_commit_characters()->Mutable(index)->assign(std::move(value)); +template +inline void CompletionItem::set_commit_characters(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_commit_characters()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) } -inline void CompletionItem::set_commit_characters(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_commit_characters()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::set_commit_characters(int index, const char* value, - std::size_t size) { - _internal_mutable_commit_characters()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::set_commit_characters(int index, absl::string_view value) { - _internal_mutable_commit_characters()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::add_commit_characters(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_commit_characters()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::add_commit_characters(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_commit_characters()->Add(std::move(value)); +template +inline void CompletionItem::add_commit_characters(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_commit_characters(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) } -inline void CompletionItem::add_commit_characters(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_commit_characters()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::add_commit_characters(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_commit_characters()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} -inline void CompletionItem::add_commit_characters(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_commit_characters()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) -} inline const ::google::protobuf::RepeatedPtrField& CompletionItem::commit_characters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) @@ -19739,17 +20228,17 @@ CompletionItem::commit_characters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* CompletionItem::mutable_commit_characters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_commit_characters(); } inline const ::google::protobuf::RepeatedPtrField& CompletionItem::_internal_commit_characters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.commit_characters_; } inline ::google::protobuf::RepeatedPtrField* CompletionItem::_internal_mutable_commit_characters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.commit_characters_; } @@ -19760,12 +20249,12 @@ inline bool CompletionItem::has_documentation() const { return value; } inline void CompletionItem::clear_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ != nullptr) _impl_.documentation_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& CompletionItem::_internal_documentation() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::MarkupContent* p = _impl_.documentation_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_MarkupContent_default_instance_); } @@ -19774,7 +20263,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& Com return _internal_documentation(); } inline void CompletionItem::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); } @@ -19787,7 +20276,7 @@ inline void CompletionItem::unsafe_arena_set_allocated_documentation(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; @@ -19806,7 +20295,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Completio return released; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::unsafe_arena_release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) _impl_._has_bits_[0] &= ~0x00000002u; @@ -19815,28 +20304,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Completio return temp; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::_internal_mutable_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(p); } return _impl_.documentation_; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::mutable_documentation() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _msg = _internal_mutable_documentation(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) return _msg; } inline void CompletionItem::set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(_impl_.documentation_); + delete (_impl_.documentation_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -19860,12 +20349,12 @@ inline bool TextEdit::has_range() const { return value; } inline void TextEdit::clear_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ != nullptr) _impl_.range_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& TextEdit::_internal_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::DocumentRange* p = _impl_.range_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_DocumentRange_default_instance_); } @@ -19874,7 +20363,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Tex return _internal_range(); } inline void TextEdit::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); } @@ -19887,7 +20376,7 @@ inline void TextEdit::unsafe_arena_set_allocated_range(::io::deephaven::proto::b // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.TextEdit.range) } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; @@ -19906,7 +20395,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit: return released; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::unsafe_arena_release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextEdit.range) _impl_._has_bits_[0] &= ~0x00000001u; @@ -19915,28 +20404,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit: return temp; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::_internal_mutable_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(p); } return _impl_.range_; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::mutable_range() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _msg = _internal_mutable_range(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.TextEdit.range) return _msg; } inline void TextEdit::set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(_impl_.range_); + delete (_impl_.range_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -19951,7 +20440,7 @@ inline void TextEdit::set_allocated_range(::io::deephaven::proto::backplane::scr // string text = 2; inline void TextEdit::clear_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.ClearToEmpty(); } inline const std::string& TextEdit::text() const @@ -19962,8 +20451,7 @@ inline const std::string& TextEdit::text() const template inline PROTOBUF_ALWAYS_INLINE void TextEdit::set_text(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextEdit.text) } @@ -19973,26 +20461,24 @@ inline std::string* TextEdit::mutable_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& TextEdit::_internal_text() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.text_.Get(); } inline void TextEdit::_internal_set_text(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.Set(value, GetArena()); } inline std::string* TextEdit::_internal_mutable_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.text_.Mutable( GetArena()); } inline std::string* TextEdit::release_text() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextEdit.text) return _impl_.text_.Release(); } inline void TextEdit::set_allocated_text(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.text_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.text_.IsDefault()) { @@ -20013,12 +20499,12 @@ inline bool GetSignatureHelpRequest::has_context() const { return value; } inline void GetSignatureHelpRequest::clear_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.context_ != nullptr) _impl_.context_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& GetSignatureHelpRequest::_internal_context() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* p = _impl_.context_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_SignatureHelpContext_default_instance_); } @@ -20027,7 +20513,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpConte return _internal_context(); } inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.context_); } @@ -20040,7 +20526,7 @@ inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_context(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) } inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::release_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* released = _impl_.context_; @@ -20059,7 +20545,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* Ge return released; } inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::unsafe_arena_release_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) _impl_._has_bits_[0] &= ~0x00000001u; @@ -20068,28 +20554,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* Ge return temp; } inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::_internal_mutable_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.context_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>(GetArena()); _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext*>(p); } return _impl_.context_; } inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::mutable_context() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* _msg = _internal_mutable_context(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) return _msg; } inline void GetSignatureHelpRequest::set_allocated_context(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext*>(_impl_.context_); + delete (_impl_.context_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -20109,12 +20595,12 @@ inline bool GetSignatureHelpRequest::has_text_document() const { return value; } inline void GetSignatureHelpRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetSignatureHelpRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -20123,7 +20609,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -20136,7 +20622,7 @@ inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_text_document(:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -20155,7 +20641,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) _impl_._has_bits_[0] &= ~0x00000002u; @@ -20164,28 +20650,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) return _msg; } inline void GetSignatureHelpRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -20205,12 +20691,12 @@ inline bool GetSignatureHelpRequest::has_position() const { return value; } inline void GetSignatureHelpRequest::clear_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ != nullptr) _impl_.position_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetSignatureHelpRequest::_internal_position() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Position* p = _impl_.position_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_); } @@ -20219,7 +20705,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetSigna return _internal_position(); } inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); } @@ -20232,7 +20718,7 @@ inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_position(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; @@ -20251,7 +20737,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHe return released; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::unsafe_arena_release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) _impl_._has_bits_[0] &= ~0x00000004u; @@ -20260,28 +20746,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHe return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::_internal_mutable_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(p); } return _impl_.position_; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::mutable_position() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::script::grpc::Position* _msg = _internal_mutable_position(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) return _msg; } inline void GetSignatureHelpRequest::set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(_impl_.position_); + delete (_impl_.position_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -20300,7 +20786,7 @@ inline void GetSignatureHelpRequest::set_allocated_position(::io::deephaven::pro // int32 trigger_kind = 1; inline void SignatureHelpContext::clear_trigger_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_kind_ = 0; } inline ::int32_t SignatureHelpContext::trigger_kind() const { @@ -20312,12 +20798,11 @@ inline void SignatureHelpContext::set_trigger_kind(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_kind) } inline ::int32_t SignatureHelpContext::_internal_trigger_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.trigger_kind_; } inline void SignatureHelpContext::_internal_set_trigger_kind(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_kind_ = value; } @@ -20327,7 +20812,7 @@ inline bool SignatureHelpContext::has_trigger_character() const { return value; } inline void SignatureHelpContext::clear_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.trigger_character_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -20339,7 +20824,7 @@ inline const std::string& SignatureHelpContext::trigger_character() const template inline PROTOBUF_ALWAYS_INLINE void SignatureHelpContext::set_trigger_character(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.trigger_character_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character) @@ -20350,21 +20835,21 @@ inline std::string* SignatureHelpContext::mutable_trigger_character() ABSL_ATTRI return _s; } inline const std::string& SignatureHelpContext::_internal_trigger_character() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.trigger_character_.Get(); } inline void SignatureHelpContext::_internal_set_trigger_character(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.trigger_character_.Set(value, GetArena()); } inline std::string* SignatureHelpContext::_internal_mutable_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.trigger_character_.Mutable( GetArena()); } inline std::string* SignatureHelpContext::release_trigger_character() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -20377,7 +20862,7 @@ inline std::string* SignatureHelpContext::release_trigger_character() { return released; } inline void SignatureHelpContext::set_allocated_trigger_character(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -20394,7 +20879,7 @@ inline void SignatureHelpContext::set_allocated_trigger_character(std::string* v // bool is_retrigger = 3; inline void SignatureHelpContext::clear_is_retrigger() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_retrigger_ = false; } inline bool SignatureHelpContext::is_retrigger() const { @@ -20406,12 +20891,11 @@ inline void SignatureHelpContext::set_is_retrigger(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.is_retrigger) } inline bool SignatureHelpContext::_internal_is_retrigger() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_retrigger_; } inline void SignatureHelpContext::_internal_set_is_retrigger(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_retrigger_ = value; } @@ -20422,12 +20906,12 @@ inline bool SignatureHelpContext::has_active_signature_help() const { return value; } inline void SignatureHelpContext::clear_active_signature_help() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.active_signature_help_ != nullptr) _impl_.active_signature_help_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& SignatureHelpContext::_internal_active_signature_help() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* p = _impl_.active_signature_help_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_GetSignatureHelpResponse_default_instance_); } @@ -20436,7 +20920,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRe return _internal_active_signature_help(); } inline void SignatureHelpContext::unsafe_arena_set_allocated_active_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.active_signature_help_); } @@ -20449,7 +20933,7 @@ inline void SignatureHelpContext::unsafe_arena_set_allocated_active_signature_he // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.active_signature_help) } inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::release_active_signature_help() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* released = _impl_.active_signature_help_; @@ -20468,7 +20952,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse return released; } inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::unsafe_arena_release_active_signature_help() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.active_signature_help) _impl_._has_bits_[0] &= ~0x00000002u; @@ -20477,28 +20961,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse return temp; } inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::_internal_mutable_active_signature_help() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.active_signature_help_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(GetArena()); _impl_.active_signature_help_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse*>(p); } return _impl_.active_signature_help_; } inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::mutable_active_signature_help() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* _msg = _internal_mutable_active_signature_help(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.active_signature_help) return _msg; } inline void SignatureHelpContext::set_allocated_active_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse*>(_impl_.active_signature_help_); + delete (_impl_.active_signature_help_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -20523,7 +21007,7 @@ inline int GetSignatureHelpResponse::signatures_size() const { return _internal_signatures_size(); } inline void GetSignatureHelpResponse::clear_signatures() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.signatures_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* GetSignatureHelpResponse::mutable_signatures(int index) @@ -20534,7 +21018,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* Ge inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>* GetSignatureHelpResponse::mutable_signatures() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.signatures) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_signatures(); } inline const ::io::deephaven::proto::backplane::script::grpc::SignatureInformation& GetSignatureHelpResponse::signatures(int index) const @@ -20543,7 +21027,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::SignatureInformati return _internal_signatures().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* GetSignatureHelpResponse::add_signatures() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* _add = _internal_mutable_signatures()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.signatures) return _add; @@ -20555,12 +21039,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>& GetSignatureHelpResponse::_internal_signatures() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.signatures_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>* GetSignatureHelpResponse::_internal_mutable_signatures() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.signatures_; } @@ -20570,7 +21054,7 @@ inline bool GetSignatureHelpResponse::has_active_signature() const { return value; } inline void GetSignatureHelpResponse::clear_active_signature() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_signature_ = 0; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -20580,15 +21064,15 @@ inline ::int32_t GetSignatureHelpResponse::active_signature() const { } inline void GetSignatureHelpResponse::set_active_signature(::int32_t value) { _internal_set_active_signature(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.active_signature) } inline ::int32_t GetSignatureHelpResponse::_internal_active_signature() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.active_signature_; } inline void GetSignatureHelpResponse::_internal_set_active_signature(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_signature_ = value; } @@ -20598,7 +21082,7 @@ inline bool GetSignatureHelpResponse::has_active_parameter() const { return value; } inline void GetSignatureHelpResponse::clear_active_parameter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_parameter_ = 0; _impl_._has_bits_[0] &= ~0x00000002u; } @@ -20608,15 +21092,15 @@ inline ::int32_t GetSignatureHelpResponse::active_parameter() const { } inline void GetSignatureHelpResponse::set_active_parameter(::int32_t value) { _internal_set_active_parameter(value); + _impl_._has_bits_[0] |= 0x00000002u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.active_parameter) } inline ::int32_t GetSignatureHelpResponse::_internal_active_parameter() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.active_parameter_; } inline void GetSignatureHelpResponse::_internal_set_active_parameter(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_parameter_ = value; } @@ -20626,7 +21110,7 @@ inline void GetSignatureHelpResponse::_internal_set_active_parameter(::int32_t v // string label = 1; inline void SignatureInformation::clear_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.ClearToEmpty(); } inline const std::string& SignatureInformation::label() const @@ -20637,8 +21121,7 @@ inline const std::string& SignatureInformation::label() const template inline PROTOBUF_ALWAYS_INLINE void SignatureInformation::set_label(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureInformation.label) } @@ -20648,26 +21131,24 @@ inline std::string* SignatureInformation::mutable_label() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& SignatureInformation::_internal_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.label_.Get(); } inline void SignatureInformation::_internal_set_label(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(value, GetArena()); } inline std::string* SignatureInformation::_internal_mutable_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.label_.Mutable( GetArena()); } inline std::string* SignatureInformation::release_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.SignatureInformation.label) return _impl_.label_.Release(); } inline void SignatureInformation::set_allocated_label(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.label_.IsDefault()) { @@ -20684,12 +21165,12 @@ inline bool SignatureInformation::has_documentation() const { return value; } inline void SignatureInformation::clear_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ != nullptr) _impl_.documentation_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& SignatureInformation::_internal_documentation() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::MarkupContent* p = _impl_.documentation_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_MarkupContent_default_instance_); } @@ -20698,7 +21179,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& Sig return _internal_documentation(); } inline void SignatureInformation::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); } @@ -20711,7 +21192,7 @@ inline void SignatureInformation::unsafe_arena_set_allocated_documentation(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; @@ -20730,7 +21211,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Signature return released; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::unsafe_arena_release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) _impl_._has_bits_[0] &= ~0x00000001u; @@ -20739,28 +21220,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Signature return temp; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::_internal_mutable_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(p); } return _impl_.documentation_; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::mutable_documentation() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _msg = _internal_mutable_documentation(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) return _msg; } inline void SignatureInformation::set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(_impl_.documentation_); + delete (_impl_.documentation_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -20781,7 +21262,7 @@ inline int SignatureInformation::parameters_size() const { return _internal_parameters_size(); } inline void SignatureInformation::clear_parameters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.parameters_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* SignatureInformation::mutable_parameters(int index) @@ -20792,7 +21273,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* Si inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>* SignatureInformation::mutable_parameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.SignatureInformation.parameters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_parameters(); } inline const ::io::deephaven::proto::backplane::script::grpc::ParameterInformation& SignatureInformation::parameters(int index) const @@ -20801,7 +21282,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::ParameterInformati return _internal_parameters().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* SignatureInformation::add_parameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* _add = _internal_mutable_parameters()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.SignatureInformation.parameters) return _add; @@ -20813,12 +21294,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>& SignatureInformation::_internal_parameters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.parameters_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>* SignatureInformation::_internal_mutable_parameters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.parameters_; } @@ -20828,7 +21309,7 @@ inline bool SignatureInformation::has_active_parameter() const { return value; } inline void SignatureInformation::clear_active_parameter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_parameter_ = 0; _impl_._has_bits_[0] &= ~0x00000002u; } @@ -20838,15 +21319,15 @@ inline ::int32_t SignatureInformation::active_parameter() const { } inline void SignatureInformation::set_active_parameter(::int32_t value) { _internal_set_active_parameter(value); + _impl_._has_bits_[0] |= 0x00000002u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureInformation.active_parameter) } inline ::int32_t SignatureInformation::_internal_active_parameter() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.active_parameter_; } inline void SignatureInformation::_internal_set_active_parameter(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.active_parameter_ = value; } @@ -20856,7 +21337,7 @@ inline void SignatureInformation::_internal_set_active_parameter(::int32_t value // string label = 1; inline void ParameterInformation::clear_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.ClearToEmpty(); } inline const std::string& ParameterInformation::label() const @@ -20867,8 +21348,7 @@ inline const std::string& ParameterInformation::label() const template inline PROTOBUF_ALWAYS_INLINE void ParameterInformation::set_label(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ParameterInformation.label) } @@ -20878,26 +21358,24 @@ inline std::string* ParameterInformation::mutable_label() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& ParameterInformation::_internal_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.label_.Get(); } inline void ParameterInformation::_internal_set_label(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(value, GetArena()); } inline std::string* ParameterInformation::_internal_mutable_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.label_.Mutable( GetArena()); } inline std::string* ParameterInformation::release_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ParameterInformation.label) return _impl_.label_.Release(); } inline void ParameterInformation::set_allocated_label(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.label_.IsDefault()) { @@ -20914,12 +21392,12 @@ inline bool ParameterInformation::has_documentation() const { return value; } inline void ParameterInformation::clear_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ != nullptr) _impl_.documentation_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& ParameterInformation::_internal_documentation() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::MarkupContent* p = _impl_.documentation_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_MarkupContent_default_instance_); } @@ -20928,7 +21406,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& Par return _internal_documentation(); } inline void ParameterInformation::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); } @@ -20941,7 +21419,7 @@ inline void ParameterInformation::unsafe_arena_set_allocated_documentation(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; @@ -20960,7 +21438,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Parameter return released; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::unsafe_arena_release_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) _impl_._has_bits_[0] &= ~0x00000001u; @@ -20969,28 +21447,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* Parameter return temp; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::_internal_mutable_documentation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.documentation_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(p); } return _impl_.documentation_; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::mutable_documentation() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _msg = _internal_mutable_documentation(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) return _msg; } inline void ParameterInformation::set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(_impl_.documentation_); + delete (_impl_.documentation_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21014,12 +21492,12 @@ inline bool GetHoverRequest::has_text_document() const { return value; } inline void GetHoverRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetHoverRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -21028,7 +21506,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void GetHoverRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -21041,7 +21519,7 @@ inline void GetHoverRequest::unsafe_arena_set_allocated_text_document(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -21060,7 +21538,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) _impl_._has_bits_[0] &= ~0x00000001u; @@ -21069,28 +21547,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) return _msg; } inline void GetHoverRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21110,12 +21588,12 @@ inline bool GetHoverRequest::has_position() const { return value; } inline void GetHoverRequest::clear_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ != nullptr) _impl_.position_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetHoverRequest::_internal_position() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Position* p = _impl_.position_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_); } @@ -21124,7 +21602,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetHover return _internal_position(); } inline void GetHoverRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); } @@ -21137,7 +21615,7 @@ inline void GetHoverRequest::unsafe_arena_set_allocated_position(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; @@ -21156,7 +21634,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverReques return released; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::unsafe_arena_release_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) _impl_._has_bits_[0] &= ~0x00000002u; @@ -21165,28 +21643,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverReques return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::_internal_mutable_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.position_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Position>(GetArena()); _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(p); } return _impl_.position_; } inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::mutable_position() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::Position* _msg = _internal_mutable_position(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) return _msg; } inline void GetHoverRequest::set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(_impl_.position_); + delete (_impl_.position_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21210,12 +21688,12 @@ inline bool GetHoverResponse::has_contents() const { return value; } inline void GetHoverResponse::clear_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.contents_ != nullptr) _impl_.contents_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& GetHoverResponse::_internal_contents() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::MarkupContent* p = _impl_.contents_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_MarkupContent_default_instance_); } @@ -21224,7 +21702,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& Get return _internal_contents(); } inline void GetHoverResponse::unsafe_arena_set_allocated_contents(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.contents_); } @@ -21237,7 +21715,7 @@ inline void GetHoverResponse::unsafe_arena_set_allocated_contents(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::release_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.contents_; @@ -21256,7 +21734,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverR return released; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::unsafe_arena_release_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) _impl_._has_bits_[0] &= ~0x00000001u; @@ -21265,28 +21743,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverR return temp; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::_internal_mutable_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.contents_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::MarkupContent>(GetArena()); _impl_.contents_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(p); } return _impl_.contents_; } inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::mutable_contents() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _msg = _internal_mutable_contents(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) return _msg; } inline void GetHoverResponse::set_allocated_contents(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(_impl_.contents_); + delete (_impl_.contents_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21306,12 +21784,12 @@ inline bool GetHoverResponse::has_range() const { return value; } inline void GetHoverResponse::clear_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ != nullptr) _impl_.range_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& GetHoverResponse::_internal_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::DocumentRange* p = _impl_.range_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_DocumentRange_default_instance_); } @@ -21320,7 +21798,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Get return _internal_range(); } inline void GetHoverResponse::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); } @@ -21333,7 +21811,7 @@ inline void GetHoverResponse::unsafe_arena_set_allocated_range(::io::deephaven:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; @@ -21352,7 +21830,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverR return released; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::unsafe_arena_release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) _impl_._has_bits_[0] &= ~0x00000002u; @@ -21361,28 +21839,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverR return temp; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::_internal_mutable_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(p); } return _impl_.range_; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::mutable_range() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _msg = _internal_mutable_range(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) return _msg; } inline void GetHoverResponse::set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(_impl_.range_); + delete (_impl_.range_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21406,12 +21884,12 @@ inline bool GetDiagnosticRequest::has_text_document() const { return value; } inline void GetDiagnosticRequest::clear_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ != nullptr) _impl_.text_document_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetDiagnosticRequest::_internal_text_document() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* p = _impl_.text_document_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_); } @@ -21420,7 +21898,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocum return _internal_text_document(); } inline void GetDiagnosticRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); } @@ -21433,7 +21911,7 @@ inline void GetDiagnosticRequest::unsafe_arena_set_allocated_text_document(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; @@ -21452,7 +21930,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return released; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::unsafe_arena_release_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) _impl_._has_bits_[0] &= ~0x00000004u; @@ -21461,28 +21939,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIde return temp; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::_internal_mutable_text_document() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.text_document_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>(GetArena()); _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(p); } return _impl_.text_document_; } inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::mutable_text_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _msg = _internal_mutable_text_document(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) return _msg; } inline void GetDiagnosticRequest::set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(_impl_.text_document_); + delete (_impl_.text_document_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -21501,7 +21979,7 @@ inline bool GetDiagnosticRequest::has_identifier() const { return value; } inline void GetDiagnosticRequest::clear_identifier() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.identifier_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -21513,7 +21991,7 @@ inline const std::string& GetDiagnosticRequest::identifier() const template inline PROTOBUF_ALWAYS_INLINE void GetDiagnosticRequest::set_identifier(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.identifier_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier) @@ -21524,21 +22002,21 @@ inline std::string* GetDiagnosticRequest::mutable_identifier() ABSL_ATTRIBUTE_LI return _s; } inline const std::string& GetDiagnosticRequest::_internal_identifier() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.identifier_.Get(); } inline void GetDiagnosticRequest::_internal_set_identifier(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.identifier_.Set(value, GetArena()); } inline std::string* GetDiagnosticRequest::_internal_mutable_identifier() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.identifier_.Mutable( GetArena()); } inline std::string* GetDiagnosticRequest::release_identifier() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -21551,7 +22029,7 @@ inline std::string* GetDiagnosticRequest::release_identifier() { return released; } inline void GetDiagnosticRequest::set_allocated_identifier(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -21572,7 +22050,7 @@ inline bool GetDiagnosticRequest::has_previous_result_id() const { return value; } inline void GetDiagnosticRequest::clear_previous_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.previous_result_id_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000002u; } @@ -21584,7 +22062,7 @@ inline const std::string& GetDiagnosticRequest::previous_result_id() const template inline PROTOBUF_ALWAYS_INLINE void GetDiagnosticRequest::set_previous_result_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.previous_result_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id) @@ -21595,21 +22073,21 @@ inline std::string* GetDiagnosticRequest::mutable_previous_result_id() ABSL_ATTR return _s; } inline const std::string& GetDiagnosticRequest::_internal_previous_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.previous_result_id_.Get(); } inline void GetDiagnosticRequest::_internal_set_previous_result_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.previous_result_id_.Set(value, GetArena()); } inline std::string* GetDiagnosticRequest::_internal_mutable_previous_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; return _impl_.previous_result_id_.Mutable( GetArena()); } inline std::string* GetDiagnosticRequest::release_previous_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id) if ((_impl_._has_bits_[0] & 0x00000002u) == 0) { return nullptr; @@ -21622,7 +22100,7 @@ inline std::string* GetDiagnosticRequest::release_previous_result_id() { return released; } inline void GetDiagnosticRequest::set_allocated_previous_result_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000002u; } else { @@ -21643,7 +22121,7 @@ inline void GetDiagnosticRequest::set_allocated_previous_result_id(std::string* // string kind = 1; inline void GetPullDiagnosticResponse::clear_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.ClearToEmpty(); } inline const std::string& GetPullDiagnosticResponse::kind() const @@ -21654,8 +22132,7 @@ inline const std::string& GetPullDiagnosticResponse::kind() const template inline PROTOBUF_ALWAYS_INLINE void GetPullDiagnosticResponse::set_kind(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind) } @@ -21665,26 +22142,24 @@ inline std::string* GetPullDiagnosticResponse::mutable_kind() ABSL_ATTRIBUTE_LIF return _s; } inline const std::string& GetPullDiagnosticResponse::_internal_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.kind_.Get(); } inline void GetPullDiagnosticResponse::_internal_set_kind(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.Set(value, GetArena()); } inline std::string* GetPullDiagnosticResponse::_internal_mutable_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.kind_.Mutable( GetArena()); } inline std::string* GetPullDiagnosticResponse::release_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind) return _impl_.kind_.Release(); } inline void GetPullDiagnosticResponse::set_allocated_kind(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.kind_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.kind_.IsDefault()) { @@ -21700,7 +22175,7 @@ inline bool GetPullDiagnosticResponse::has_result_id() const { return value; } inline void GetPullDiagnosticResponse::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.result_id_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -21712,7 +22187,7 @@ inline const std::string& GetPullDiagnosticResponse::result_id() const template inline PROTOBUF_ALWAYS_INLINE void GetPullDiagnosticResponse::set_result_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.result_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id) @@ -21723,21 +22198,21 @@ inline std::string* GetPullDiagnosticResponse::mutable_result_id() ABSL_ATTRIBUT return _s; } inline const std::string& GetPullDiagnosticResponse::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.result_id_.Get(); } inline void GetPullDiagnosticResponse::_internal_set_result_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.result_id_.Set(value, GetArena()); } inline std::string* GetPullDiagnosticResponse::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.result_id_.Mutable( GetArena()); } inline std::string* GetPullDiagnosticResponse::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -21750,7 +22225,7 @@ inline std::string* GetPullDiagnosticResponse::release_result_id() { return released; } inline void GetPullDiagnosticResponse::set_allocated_result_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -21773,7 +22248,7 @@ inline int GetPullDiagnosticResponse::items_size() const { return _internal_items_size(); } inline void GetPullDiagnosticResponse::clear_items() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.items_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPullDiagnosticResponse::mutable_items(int index) @@ -21784,7 +22259,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPullDiagn inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* GetPullDiagnosticResponse::mutable_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.items) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_items(); } inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPullDiagnosticResponse::items(int index) const @@ -21793,7 +22268,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPul return _internal_items().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPullDiagnosticResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::Diagnostic* _add = _internal_mutable_items()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.items) return _add; @@ -21805,12 +22280,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& GetPullDiagnosticResponse::_internal_items() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.items_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* GetPullDiagnosticResponse::_internal_mutable_items() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.items_; } @@ -21820,7 +22295,7 @@ GetPullDiagnosticResponse::_internal_mutable_items() { // string uri = 1; inline void GetPublishDiagnosticResponse::clear_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.ClearToEmpty(); } inline const std::string& GetPublishDiagnosticResponse::uri() const @@ -21831,8 +22306,7 @@ inline const std::string& GetPublishDiagnosticResponse::uri() const template inline PROTOBUF_ALWAYS_INLINE void GetPublishDiagnosticResponse::set_uri(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri) } @@ -21842,26 +22316,24 @@ inline std::string* GetPublishDiagnosticResponse::mutable_uri() ABSL_ATTRIBUTE_L return _s; } inline const std::string& GetPublishDiagnosticResponse::_internal_uri() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.uri_.Get(); } inline void GetPublishDiagnosticResponse::_internal_set_uri(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.Set(value, GetArena()); } inline std::string* GetPublishDiagnosticResponse::_internal_mutable_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.uri_.Mutable( GetArena()); } inline std::string* GetPublishDiagnosticResponse::release_uri() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri) return _impl_.uri_.Release(); } inline void GetPublishDiagnosticResponse::set_allocated_uri(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.uri_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.uri_.IsDefault()) { @@ -21877,7 +22349,7 @@ inline bool GetPublishDiagnosticResponse::has_version() const { return value; } inline void GetPublishDiagnosticResponse::clear_version() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = 0; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -21887,15 +22359,15 @@ inline ::int32_t GetPublishDiagnosticResponse::version() const { } inline void GetPublishDiagnosticResponse::set_version(::int32_t value) { _internal_set_version(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.version) } inline ::int32_t GetPublishDiagnosticResponse::_internal_version() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.version_; } inline void GetPublishDiagnosticResponse::_internal_set_version(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.version_ = value; } @@ -21907,7 +22379,7 @@ inline int GetPublishDiagnosticResponse::diagnostics_size() const { return _internal_diagnostics_size(); } inline void GetPublishDiagnosticResponse::clear_diagnostics() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.diagnostics_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPublishDiagnosticResponse::mutable_diagnostics(int index) @@ -21918,7 +22390,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPublishDi inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* GetPublishDiagnosticResponse::mutable_diagnostics() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.diagnostics) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_diagnostics(); } inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPublishDiagnosticResponse::diagnostics(int index) const @@ -21927,7 +22399,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPub return _internal_diagnostics().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPublishDiagnosticResponse::add_diagnostics() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::Diagnostic* _add = _internal_mutable_diagnostics()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.diagnostics) return _add; @@ -21939,12 +22411,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& GetPublishDiagnosticResponse::_internal_diagnostics() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.diagnostics_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* GetPublishDiagnosticResponse::_internal_mutable_diagnostics() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.diagnostics_; } @@ -21954,7 +22426,7 @@ GetPublishDiagnosticResponse::_internal_mutable_diagnostics() { // string href = 1; inline void Diagnostic_CodeDescription::clear_href() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.href_.ClearToEmpty(); } inline const std::string& Diagnostic_CodeDescription::href() const @@ -21965,8 +22437,7 @@ inline const std::string& Diagnostic_CodeDescription::href() const template inline PROTOBUF_ALWAYS_INLINE void Diagnostic_CodeDescription::set_href(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.href_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href) } @@ -21976,26 +22447,24 @@ inline std::string* Diagnostic_CodeDescription::mutable_href() ABSL_ATTRIBUTE_LI return _s; } inline const std::string& Diagnostic_CodeDescription::_internal_href() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.href_.Get(); } inline void Diagnostic_CodeDescription::_internal_set_href(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.href_.Set(value, GetArena()); } inline std::string* Diagnostic_CodeDescription::_internal_mutable_href() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.href_.Mutable( GetArena()); } inline std::string* Diagnostic_CodeDescription::release_href() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href) return _impl_.href_.Release(); } inline void Diagnostic_CodeDescription::set_allocated_href(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.href_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.href_.IsDefault()) { @@ -22016,12 +22485,12 @@ inline bool Diagnostic::has_range() const { return value; } inline void Diagnostic::clear_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ != nullptr) _impl_.range_->Clear(); _impl_._has_bits_[0] &= ~0x00000008u; } inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Diagnostic::_internal_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::DocumentRange* p = _impl_.range_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_DocumentRange_default_instance_); } @@ -22030,7 +22499,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Dia return _internal_range(); } inline void Diagnostic::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); } @@ -22043,7 +22512,7 @@ inline void Diagnostic::unsafe_arena_set_allocated_range(::io::deephaven::proto: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000008u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; @@ -22062,7 +22531,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnosti return released; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::unsafe_arena_release_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) _impl_._has_bits_[0] &= ~0x00000008u; @@ -22071,28 +22540,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnosti return temp; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::_internal_mutable_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000008u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.range_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::DocumentRange>(GetArena()); _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(p); } return _impl_.range_; } inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::mutable_range() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000008u; ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _msg = _internal_mutable_range(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) return _msg; } inline void Diagnostic::set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(_impl_.range_); + delete (_impl_.range_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -22107,7 +22576,7 @@ inline void Diagnostic::set_allocated_range(::io::deephaven::proto::backplane::s // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; inline void Diagnostic::clear_severity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.severity_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity Diagnostic::severity() const { @@ -22119,12 +22588,11 @@ inline void Diagnostic::set_severity(::io::deephaven::proto::backplane::script:: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.severity) } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity Diagnostic::_internal_severity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity>(_impl_.severity_); } inline void Diagnostic::_internal_set_severity(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.severity_ = value; } @@ -22134,7 +22602,7 @@ inline bool Diagnostic::has_code() const { return value; } inline void Diagnostic::clear_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.code_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -22146,7 +22614,7 @@ inline const std::string& Diagnostic::code() const template inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_code(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.code_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.code) @@ -22157,21 +22625,21 @@ inline std::string* Diagnostic::mutable_code() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& Diagnostic::_internal_code() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.code_.Get(); } inline void Diagnostic::_internal_set_code(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.code_.Set(value, GetArena()); } inline std::string* Diagnostic::_internal_mutable_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.code_.Mutable( GetArena()); } inline std::string* Diagnostic::release_code() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.code) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -22184,7 +22652,7 @@ inline std::string* Diagnostic::release_code() { return released; } inline void Diagnostic::set_allocated_code(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -22206,12 +22674,12 @@ inline bool Diagnostic::has_code_description() const { return value; } inline void Diagnostic::clear_code_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.code_description_ != nullptr) _impl_.code_description_->Clear(); _impl_._has_bits_[0] &= ~0x00000010u; } inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& Diagnostic::_internal_code_description() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* p = _impl_.code_description_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_Diagnostic_CodeDescription_default_instance_); } @@ -22220,7 +22688,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDes return _internal_code_description(); } inline void Diagnostic::unsafe_arena_set_allocated_code_description(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.code_description_); } @@ -22233,7 +22701,7 @@ inline void Diagnostic::unsafe_arena_set_allocated_code_description(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::release_code_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000010u; ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* released = _impl_.code_description_; @@ -22252,7 +22720,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescripti return released; } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::unsafe_arena_release_code_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) _impl_._has_bits_[0] &= ~0x00000010u; @@ -22261,28 +22729,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescripti return temp; } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::_internal_mutable_code_description() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000010u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.code_description_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>(GetArena()); _impl_.code_description_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription*>(p); } return _impl_.code_description_; } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::mutable_code_description() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000010u; ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* _msg = _internal_mutable_code_description(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) return _msg; } inline void Diagnostic::set_allocated_code_description(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription*>(_impl_.code_description_); + delete (_impl_.code_description_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -22301,7 +22769,7 @@ inline bool Diagnostic::has_source() const { return value; } inline void Diagnostic::clear_source() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.source_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000002u; } @@ -22313,7 +22781,7 @@ inline const std::string& Diagnostic::source() const template inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_source(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.source_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.source) @@ -22324,21 +22792,21 @@ inline std::string* Diagnostic::mutable_source() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& Diagnostic::_internal_source() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.source_.Get(); } inline void Diagnostic::_internal_set_source(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.source_.Set(value, GetArena()); } inline std::string* Diagnostic::_internal_mutable_source() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; return _impl_.source_.Mutable( GetArena()); } inline std::string* Diagnostic::release_source() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.source) if ((_impl_._has_bits_[0] & 0x00000002u) == 0) { return nullptr; @@ -22351,7 +22819,7 @@ inline std::string* Diagnostic::release_source() { return released; } inline void Diagnostic::set_allocated_source(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000002u; } else { @@ -22368,7 +22836,7 @@ inline void Diagnostic::set_allocated_source(std::string* value) { // string message = 6; inline void Diagnostic::clear_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.ClearToEmpty(); } inline const std::string& Diagnostic::message() const @@ -22379,8 +22847,7 @@ inline const std::string& Diagnostic::message() const template inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_message(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.message) } @@ -22390,26 +22857,24 @@ inline std::string* Diagnostic::mutable_message() ABSL_ATTRIBUTE_LIFETIME_BOUND return _s; } inline const std::string& Diagnostic::_internal_message() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.message_.Get(); } inline void Diagnostic::_internal_set_message(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(value, GetArena()); } inline std::string* Diagnostic::_internal_mutable_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.message_.Mutable( GetArena()); } inline std::string* Diagnostic::release_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.message) return _impl_.message_.Release(); } inline void Diagnostic::set_allocated_message(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.message_.IsDefault()) { @@ -22427,7 +22892,7 @@ inline int Diagnostic::tags_size() const { return _internal_tags_size(); } inline void Diagnostic::clear_tags() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.tags_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag Diagnostic::tags(int index) const { @@ -22439,7 +22904,7 @@ inline void Diagnostic::set_tags(int index, ::io::deephaven::proto::backplane::s // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) } inline void Diagnostic::add_tags(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _internal_mutable_tags()->Add(value); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) } @@ -22451,15 +22916,16 @@ inline const ::google::protobuf::RepeatedField& Diagnostic::tags() const inline ::google::protobuf::RepeatedField* Diagnostic::mutable_tags() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_tags(); } -inline const ::google::protobuf::RepeatedField& Diagnostic::_internal_tags() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); +inline const ::google::protobuf::RepeatedField& Diagnostic::_internal_tags() + const { + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.tags_; } inline ::google::protobuf::RepeatedField* Diagnostic::_internal_mutable_tags() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.tags_; } @@ -22469,7 +22935,7 @@ inline bool Diagnostic::has_data() const { return value; } inline void Diagnostic::clear_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000004u; } @@ -22481,7 +22947,7 @@ inline const std::string& Diagnostic::data() const template inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_data(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; _impl_.data_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Diagnostic.data) @@ -22492,21 +22958,21 @@ inline std::string* Diagnostic::mutable_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& Diagnostic::_internal_data() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.data_.Get(); } inline void Diagnostic::_internal_set_data(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; _impl_.data_.Set(value, GetArena()); } inline std::string* Diagnostic::_internal_mutable_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; return _impl_.data_.Mutable( GetArena()); } inline std::string* Diagnostic::release_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.data) if ((_impl_._has_bits_[0] & 0x00000004u) == 0) { return nullptr; @@ -22519,7 +22985,7 @@ inline std::string* Diagnostic::release_data() { return released; } inline void Diagnostic::set_allocated_data(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000004u; } else { @@ -22540,7 +23006,7 @@ inline void Diagnostic::set_allocated_data(std::string* value) { // int32 colspan = 1; inline void FigureDescriptor_ChartDescriptor::clear_colspan() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.colspan_ = 0; } inline ::int32_t FigureDescriptor_ChartDescriptor::colspan() const { @@ -22552,18 +23018,17 @@ inline void FigureDescriptor_ChartDescriptor::set_colspan(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.colspan) } inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_colspan() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.colspan_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_colspan(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.colspan_ = value; } // int32 rowspan = 2; inline void FigureDescriptor_ChartDescriptor::clear_rowspan() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rowspan_ = 0; } inline ::int32_t FigureDescriptor_ChartDescriptor::rowspan() const { @@ -22575,12 +23040,11 @@ inline void FigureDescriptor_ChartDescriptor::set_rowspan(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.rowspan) } inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_rowspan() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.rowspan_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_rowspan(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rowspan_ = value; } @@ -22592,7 +23056,7 @@ inline int FigureDescriptor_ChartDescriptor::series_size() const { return _internal_series_size(); } inline void FigureDescriptor_ChartDescriptor::clear_series() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.series_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* FigureDescriptor_ChartDescriptor::mutable_series(int index) @@ -22603,7 +23067,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesD inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>* FigureDescriptor_ChartDescriptor::mutable_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.series) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_series(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor& FigureDescriptor_ChartDescriptor::series(int index) const @@ -22612,7 +23076,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_series().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* FigureDescriptor_ChartDescriptor::add_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* _add = _internal_mutable_series()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.series) return _add; @@ -22624,12 +23088,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>& FigureDescriptor_ChartDescriptor::_internal_series() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.series_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>* FigureDescriptor_ChartDescriptor::_internal_mutable_series() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.series_; } @@ -22641,7 +23105,7 @@ inline int FigureDescriptor_ChartDescriptor::multi_series_size() const { return _internal_multi_series_size(); } inline void FigureDescriptor_ChartDescriptor::clear_multi_series() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.multi_series_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* FigureDescriptor_ChartDescriptor::mutable_multi_series(int index) @@ -22652,7 +23116,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSe inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>* FigureDescriptor_ChartDescriptor::mutable_multi_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.multi_series) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_multi_series(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor& FigureDescriptor_ChartDescriptor::multi_series(int index) const @@ -22661,7 +23125,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_M return _internal_multi_series().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* FigureDescriptor_ChartDescriptor::add_multi_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* _add = _internal_mutable_multi_series()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.multi_series) return _add; @@ -22673,12 +23137,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>& FigureDescriptor_ChartDescriptor::_internal_multi_series() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.multi_series_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>* FigureDescriptor_ChartDescriptor::_internal_mutable_multi_series() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.multi_series_; } @@ -22690,7 +23154,7 @@ inline int FigureDescriptor_ChartDescriptor::axes_size() const { return _internal_axes_size(); } inline void FigureDescriptor_ChartDescriptor::clear_axes() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axes_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* FigureDescriptor_ChartDescriptor::mutable_axes(int index) @@ -22701,7 +23165,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDes inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>* FigureDescriptor_ChartDescriptor::mutable_axes() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.axes) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_axes(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor& FigureDescriptor_ChartDescriptor::axes(int index) const @@ -22710,7 +23174,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_A return _internal_axes().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* FigureDescriptor_ChartDescriptor::add_axes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* _add = _internal_mutable_axes()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.axes) return _add; @@ -22722,18 +23186,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>& FigureDescriptor_ChartDescriptor::_internal_axes() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.axes_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>* FigureDescriptor_ChartDescriptor::_internal_mutable_axes() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.axes_; } // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; inline void FigureDescriptor_ChartDescriptor::clear_chart_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.chart_type_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::chart_type() const { @@ -22745,12 +23209,11 @@ inline void FigureDescriptor_ChartDescriptor::set_chart_type(::io::deephaven::pr // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.chart_type) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::_internal_chart_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType>(_impl_.chart_type_); } inline void FigureDescriptor_ChartDescriptor::_internal_set_chart_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.chart_type_ = value; } @@ -22760,7 +23223,7 @@ inline bool FigureDescriptor_ChartDescriptor::has_title() const { return value; } inline void FigureDescriptor_ChartDescriptor::clear_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -22772,7 +23235,7 @@ inline const std::string& FigureDescriptor_ChartDescriptor::title() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.title_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title) @@ -22783,21 +23246,21 @@ inline std::string* FigureDescriptor_ChartDescriptor::mutable_title() ABSL_ATTRI return _s; } inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_.Get(); } inline void FigureDescriptor_ChartDescriptor::_internal_set_title(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.title_.Set(value, GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.title_.Mutable( GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::release_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -22810,7 +23273,7 @@ inline std::string* FigureDescriptor_ChartDescriptor::release_title() { return released; } inline void FigureDescriptor_ChartDescriptor::set_allocated_title(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -22827,7 +23290,7 @@ inline void FigureDescriptor_ChartDescriptor::set_allocated_title(std::string* v // string title_font = 8; inline void FigureDescriptor_ChartDescriptor::clear_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.ClearToEmpty(); } inline const std::string& FigureDescriptor_ChartDescriptor::title_font() const @@ -22838,8 +23301,7 @@ inline const std::string& FigureDescriptor_ChartDescriptor::title_font() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title_font(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font) } @@ -22849,26 +23311,24 @@ inline std::string* FigureDescriptor_ChartDescriptor::mutable_title_font() ABSL_ return _s; } inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title_font() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_font_.Get(); } inline void FigureDescriptor_ChartDescriptor::_internal_set_title_font(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.Set(value, GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.title_font_.Mutable( GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::release_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font) return _impl_.title_font_.Release(); } inline void FigureDescriptor_ChartDescriptor::set_allocated_title_font(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.title_font_.IsDefault()) { @@ -22880,7 +23340,7 @@ inline void FigureDescriptor_ChartDescriptor::set_allocated_title_font(std::stri // string title_color = 9; inline void FigureDescriptor_ChartDescriptor::clear_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.ClearToEmpty(); } inline const std::string& FigureDescriptor_ChartDescriptor::title_color() const @@ -22891,8 +23351,7 @@ inline const std::string& FigureDescriptor_ChartDescriptor::title_color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color) } @@ -22902,26 +23361,24 @@ inline std::string* FigureDescriptor_ChartDescriptor::mutable_title_color() ABSL return _s; } inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_color_.Get(); } inline void FigureDescriptor_ChartDescriptor::_internal_set_title_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.Set(value, GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.title_color_.Mutable( GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::release_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color) return _impl_.title_color_.Release(); } inline void FigureDescriptor_ChartDescriptor::set_allocated_title_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.title_color_.IsDefault()) { @@ -22933,7 +23390,7 @@ inline void FigureDescriptor_ChartDescriptor::set_allocated_title_color(std::str // bool show_legend = 10; inline void FigureDescriptor_ChartDescriptor::clear_show_legend() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.show_legend_ = false; } inline bool FigureDescriptor_ChartDescriptor::show_legend() const { @@ -22945,18 +23402,17 @@ inline void FigureDescriptor_ChartDescriptor::set_show_legend(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.show_legend) } inline bool FigureDescriptor_ChartDescriptor::_internal_show_legend() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.show_legend_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_show_legend(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.show_legend_ = value; } // string legend_font = 11; inline void FigureDescriptor_ChartDescriptor::clear_legend_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_font_.ClearToEmpty(); } inline const std::string& FigureDescriptor_ChartDescriptor::legend_font() const @@ -22967,8 +23423,7 @@ inline const std::string& FigureDescriptor_ChartDescriptor::legend_font() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_legend_font(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_font_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font) } @@ -22978,26 +23433,24 @@ inline std::string* FigureDescriptor_ChartDescriptor::mutable_legend_font() ABSL return _s; } inline const std::string& FigureDescriptor_ChartDescriptor::_internal_legend_font() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.legend_font_.Get(); } inline void FigureDescriptor_ChartDescriptor::_internal_set_legend_font(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_font_.Set(value, GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_legend_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.legend_font_.Mutable( GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::release_legend_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font) return _impl_.legend_font_.Release(); } inline void FigureDescriptor_ChartDescriptor::set_allocated_legend_font(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_font_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.legend_font_.IsDefault()) { @@ -23009,7 +23462,7 @@ inline void FigureDescriptor_ChartDescriptor::set_allocated_legend_font(std::str // string legend_color = 12; inline void FigureDescriptor_ChartDescriptor::clear_legend_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_color_.ClearToEmpty(); } inline const std::string& FigureDescriptor_ChartDescriptor::legend_color() const @@ -23020,8 +23473,7 @@ inline const std::string& FigureDescriptor_ChartDescriptor::legend_color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_legend_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color) } @@ -23031,26 +23483,24 @@ inline std::string* FigureDescriptor_ChartDescriptor::mutable_legend_color() ABS return _s; } inline const std::string& FigureDescriptor_ChartDescriptor::_internal_legend_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.legend_color_.Get(); } inline void FigureDescriptor_ChartDescriptor::_internal_set_legend_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_color_.Set(value, GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_legend_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.legend_color_.Mutable( GetArena()); } inline std::string* FigureDescriptor_ChartDescriptor::release_legend_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color) return _impl_.legend_color_.Release(); } inline void FigureDescriptor_ChartDescriptor::set_allocated_legend_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.legend_color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.legend_color_.IsDefault()) { @@ -23062,7 +23512,7 @@ inline void FigureDescriptor_ChartDescriptor::set_allocated_legend_color(std::st // bool is3d = 13; inline void FigureDescriptor_ChartDescriptor::clear_is3d() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is3d_ = false; } inline bool FigureDescriptor_ChartDescriptor::is3d() const { @@ -23074,18 +23524,17 @@ inline void FigureDescriptor_ChartDescriptor::set_is3d(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.is3d) } inline bool FigureDescriptor_ChartDescriptor::_internal_is3d() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is3d_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_is3d(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is3d_ = value; } // int32 column = 14; inline void FigureDescriptor_ChartDescriptor::clear_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_ = 0; } inline ::int32_t FigureDescriptor_ChartDescriptor::column() const { @@ -23097,18 +23546,17 @@ inline void FigureDescriptor_ChartDescriptor::set_column(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.column) } inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_column(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_ = value; } // int32 row = 15; inline void FigureDescriptor_ChartDescriptor::clear_row() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.row_ = 0; } inline ::int32_t FigureDescriptor_ChartDescriptor::row() const { @@ -23120,12 +23568,11 @@ inline void FigureDescriptor_ChartDescriptor::set_row(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.row) } inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_row() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.row_; } inline void FigureDescriptor_ChartDescriptor::_internal_set_row(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.row_ = value; } @@ -23135,7 +23582,7 @@ inline void FigureDescriptor_ChartDescriptor::_internal_set_row(::int32_t value) // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; inline void FigureDescriptor_SeriesDescriptor::clear_plot_style() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.plot_style_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_SeriesDescriptor::plot_style() const { @@ -23147,18 +23594,17 @@ inline void FigureDescriptor_SeriesDescriptor::set_plot_style(::io::deephaven::p // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.plot_style) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_SeriesDescriptor::_internal_plot_style() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle>(_impl_.plot_style_); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.plot_style_ = value; } // string name = 2; inline void FigureDescriptor_SeriesDescriptor::clear_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SeriesDescriptor::name() const @@ -23169,8 +23615,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::name() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name) } @@ -23180,26 +23625,24 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_name() ABSL_ATTRI return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.name_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.name_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name) return _impl_.name_.Release(); } inline void FigureDescriptor_SeriesDescriptor::set_allocated_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.name_.IsDefault()) { @@ -23215,7 +23658,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_lines_visible() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_lines_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.lines_visible_ = false; _impl_._has_bits_[0] &= ~0x00000008u; } @@ -23225,15 +23668,15 @@ inline bool FigureDescriptor_SeriesDescriptor::lines_visible() const { } inline void FigureDescriptor_SeriesDescriptor::set_lines_visible(bool value) { _internal_set_lines_visible(value); + _impl_._has_bits_[0] |= 0x00000008u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.lines_visible) } inline bool FigureDescriptor_SeriesDescriptor::_internal_lines_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.lines_visible_; } inline void FigureDescriptor_SeriesDescriptor::_internal_set_lines_visible(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000008u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.lines_visible_ = value; } @@ -23243,7 +23686,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_shapes_visible() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_shapes_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shapes_visible_ = false; _impl_._has_bits_[0] &= ~0x00000010u; } @@ -23253,21 +23696,21 @@ inline bool FigureDescriptor_SeriesDescriptor::shapes_visible() const { } inline void FigureDescriptor_SeriesDescriptor::set_shapes_visible(bool value) { _internal_set_shapes_visible(value); + _impl_._has_bits_[0] |= 0x00000010u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shapes_visible) } inline bool FigureDescriptor_SeriesDescriptor::_internal_shapes_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.shapes_visible_; } inline void FigureDescriptor_SeriesDescriptor::_internal_set_shapes_visible(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000010u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shapes_visible_ = value; } // bool gradient_visible = 5; inline void FigureDescriptor_SeriesDescriptor::clear_gradient_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.gradient_visible_ = false; } inline bool FigureDescriptor_SeriesDescriptor::gradient_visible() const { @@ -23279,18 +23722,17 @@ inline void FigureDescriptor_SeriesDescriptor::set_gradient_visible(bool value) // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.gradient_visible) } inline bool FigureDescriptor_SeriesDescriptor::_internal_gradient_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.gradient_visible_; } inline void FigureDescriptor_SeriesDescriptor::_internal_set_gradient_visible(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.gradient_visible_ = value; } // string line_color = 6; inline void FigureDescriptor_SeriesDescriptor::clear_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_color_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SeriesDescriptor::line_color() const @@ -23301,8 +23743,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::line_color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_line_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color) } @@ -23312,26 +23753,24 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_line_color() ABSL return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_line_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.line_color_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_line_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_color_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.line_color_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color) return _impl_.line_color_.Release(); } inline void FigureDescriptor_SeriesDescriptor::set_allocated_line_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.line_color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.line_color_.IsDefault()) { @@ -23347,7 +23786,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_point_label_format() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.point_label_format_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -23359,7 +23798,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::point_label_format( template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_point_label_format(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.point_label_format_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format) @@ -23370,21 +23809,21 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_point_label_forma return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_point_label_format() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.point_label_format_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_point_label_format(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.point_label_format_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.point_label_format_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -23397,7 +23836,7 @@ inline std::string* FigureDescriptor_SeriesDescriptor::release_point_label_forma return released; } inline void FigureDescriptor_SeriesDescriptor::set_allocated_point_label_format(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -23418,7 +23857,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_x_tool_tip_pattern() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.x_tool_tip_pattern_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000002u; } @@ -23430,7 +23869,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::x_tool_tip_pattern( template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_x_tool_tip_pattern(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.x_tool_tip_pattern_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern) @@ -23441,21 +23880,21 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_x_tool_tip_patter return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_x_tool_tip_pattern() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.x_tool_tip_pattern_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_x_tool_tip_pattern(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; _impl_.x_tool_tip_pattern_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000002u; return _impl_.x_tool_tip_pattern_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern) if ((_impl_._has_bits_[0] & 0x00000002u) == 0) { return nullptr; @@ -23468,7 +23907,7 @@ inline std::string* FigureDescriptor_SeriesDescriptor::release_x_tool_tip_patter return released; } inline void FigureDescriptor_SeriesDescriptor::set_allocated_x_tool_tip_pattern(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000002u; } else { @@ -23489,7 +23928,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_y_tool_tip_pattern() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.y_tool_tip_pattern_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000004u; } @@ -23501,7 +23940,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::y_tool_tip_pattern( template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_y_tool_tip_pattern(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; _impl_.y_tool_tip_pattern_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern) @@ -23512,21 +23951,21 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_y_tool_tip_patter return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_y_tool_tip_pattern() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.y_tool_tip_pattern_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_y_tool_tip_pattern(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; _impl_.y_tool_tip_pattern_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000004u; return _impl_.y_tool_tip_pattern_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern) if ((_impl_._has_bits_[0] & 0x00000004u) == 0) { return nullptr; @@ -23539,7 +23978,7 @@ inline std::string* FigureDescriptor_SeriesDescriptor::release_y_tool_tip_patter return released; } inline void FigureDescriptor_SeriesDescriptor::set_allocated_y_tool_tip_pattern(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000004u; } else { @@ -23556,7 +23995,7 @@ inline void FigureDescriptor_SeriesDescriptor::set_allocated_y_tool_tip_pattern( // string shape_label = 11; inline void FigureDescriptor_SeriesDescriptor::clear_shape_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_label_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SeriesDescriptor::shape_label() const @@ -23567,8 +24006,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::shape_label() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape_label(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_label_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label) } @@ -23578,26 +24016,24 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape_label() ABS return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.shape_label_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_label(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_label_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.shape_label_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_shape_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label) return _impl_.shape_label_.Release(); } inline void FigureDescriptor_SeriesDescriptor::set_allocated_shape_label(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_label_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.shape_label_.IsDefault()) { @@ -23613,7 +24049,7 @@ inline bool FigureDescriptor_SeriesDescriptor::has_shape_size() const { return value; } inline void FigureDescriptor_SeriesDescriptor::clear_shape_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_size_ = 0; _impl_._has_bits_[0] &= ~0x00000020u; } @@ -23623,21 +24059,21 @@ inline double FigureDescriptor_SeriesDescriptor::shape_size() const { } inline void FigureDescriptor_SeriesDescriptor::set_shape_size(double value) { _internal_set_shape_size(value); + _impl_._has_bits_[0] |= 0x00000020u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_size) } inline double FigureDescriptor_SeriesDescriptor::_internal_shape_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.shape_size_; } inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_size(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000020u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_size_ = value; } // string shape_color = 13; inline void FigureDescriptor_SeriesDescriptor::clear_shape_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_color_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SeriesDescriptor::shape_color() const @@ -23648,8 +24084,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::shape_color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color) } @@ -23659,26 +24094,24 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape_color() ABS return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.shape_color_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_color_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.shape_color_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_shape_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color) return _impl_.shape_color_.Release(); } inline void FigureDescriptor_SeriesDescriptor::set_allocated_shape_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.shape_color_.IsDefault()) { @@ -23690,7 +24123,7 @@ inline void FigureDescriptor_SeriesDescriptor::set_allocated_shape_color(std::st // string shape = 14; inline void FigureDescriptor_SeriesDescriptor::clear_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SeriesDescriptor::shape() const @@ -23701,8 +24134,7 @@ inline const std::string& FigureDescriptor_SeriesDescriptor::shape() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape) } @@ -23712,26 +24144,24 @@ inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape() ABSL_ATTR return _s; } inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.shape_.Get(); } inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.shape_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SeriesDescriptor::release_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape) return _impl_.shape_.Release(); } inline void FigureDescriptor_SeriesDescriptor::set_allocated_shape(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.shape_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.shape_.IsDefault()) { @@ -23749,7 +24179,7 @@ inline int FigureDescriptor_SeriesDescriptor::data_sources_size() const { return _internal_data_sources_size(); } inline void FigureDescriptor_SeriesDescriptor::clear_data_sources() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_sources_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* FigureDescriptor_SeriesDescriptor::mutable_data_sources(int index) @@ -23760,7 +24190,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceD inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>* FigureDescriptor_SeriesDescriptor::mutable_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.data_sources) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_data_sources(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor& FigureDescriptor_SeriesDescriptor::data_sources(int index) const @@ -23769,7 +24199,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_data_sources().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* FigureDescriptor_SeriesDescriptor::add_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* _add = _internal_mutable_data_sources()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.data_sources) return _add; @@ -23781,12 +24211,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>& FigureDescriptor_SeriesDescriptor::_internal_data_sources() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.data_sources_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>* FigureDescriptor_SeriesDescriptor::_internal_mutable_data_sources() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.data_sources_; } @@ -23796,7 +24226,7 @@ FigureDescriptor_SeriesDescriptor::_internal_mutable_data_sources() { // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; inline void FigureDescriptor_MultiSeriesDescriptor::clear_plot_style() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.plot_style_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_MultiSeriesDescriptor::plot_style() const { @@ -23808,18 +24238,17 @@ inline void FigureDescriptor_MultiSeriesDescriptor::set_plot_style(::io::deephav // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.plot_style) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_MultiSeriesDescriptor::_internal_plot_style() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle>(_impl_.plot_style_); } inline void FigureDescriptor_MultiSeriesDescriptor::_internal_set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.plot_style_ = value; } // string name = 2; inline void FigureDescriptor_MultiSeriesDescriptor::clear_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.ClearToEmpty(); } inline const std::string& FigureDescriptor_MultiSeriesDescriptor::name() const @@ -23830,8 +24259,7 @@ inline const std::string& FigureDescriptor_MultiSeriesDescriptor::name() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesDescriptor::set_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name) } @@ -23841,26 +24269,24 @@ inline std::string* FigureDescriptor_MultiSeriesDescriptor::mutable_name() ABSL_ return _s; } inline const std::string& FigureDescriptor_MultiSeriesDescriptor::_internal_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.name_.Get(); } inline void FigureDescriptor_MultiSeriesDescriptor::_internal_set_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(value, GetArena()); } inline std::string* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.name_.Mutable( GetArena()); } inline std::string* FigureDescriptor_MultiSeriesDescriptor::release_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name) return _impl_.name_.Release(); } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.name_.IsDefault()) { @@ -23877,12 +24303,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_line_color() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.line_color_ != nullptr) _impl_.line_color_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_line_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.line_color_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -23891,7 +24317,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_line_color(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_line_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.line_color_); } @@ -23904,7 +24330,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_l // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.line_color) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.line_color_; @@ -23923,7 +24349,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.line_color) _impl_._has_bits_[0] &= ~0x00000001u; @@ -23932,28 +24358,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_line_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.line_color_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.line_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.line_color_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_line_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_line_color(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.line_color) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_line_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.line_color_); + delete (_impl_.line_color_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -23973,12 +24399,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_color() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_color_ != nullptr) _impl_.point_color_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_point_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.point_color_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -23987,7 +24413,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_point_color(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_color_); } @@ -24000,7 +24426,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_color) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_point_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_color_; @@ -24019,7 +24445,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_color) _impl_._has_bits_[0] &= ~0x00000002u; @@ -24028,28 +24454,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_color_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.point_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.point_color_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_point_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_point_color(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_color) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_point_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.point_color_); + delete (_impl_.point_color_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24069,12 +24495,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_lines_visible() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_lines_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.lines_visible_ != nullptr) _impl_.lines_visible_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_lines_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* p = _impl_.lines_visible_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BoolMapWithDefault_default_instance_); } @@ -24083,7 +24509,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_lines_visible(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_lines_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.lines_visible_); } @@ -24096,7 +24522,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_l // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.lines_visible) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_lines_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.lines_visible_; @@ -24115,7 +24541,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_lines_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.lines_visible) _impl_._has_bits_[0] &= ~0x00000004u; @@ -24124,28 +24550,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_lines_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.lines_visible_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); _impl_.lines_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(p); } return _impl_.lines_visible_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_lines_visible() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _msg = _internal_mutable_lines_visible(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.lines_visible) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_lines_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(_impl_.lines_visible_); + delete (_impl_.lines_visible_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24165,12 +24591,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_points_visible() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_points_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.points_visible_ != nullptr) _impl_.points_visible_->Clear(); _impl_._has_bits_[0] &= ~0x00000008u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_points_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* p = _impl_.points_visible_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BoolMapWithDefault_default_instance_); } @@ -24179,7 +24605,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_points_visible(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_points_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.points_visible_); } @@ -24192,7 +24618,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.points_visible) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_points_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000008u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.points_visible_; @@ -24211,7 +24637,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_points_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.points_visible) _impl_._has_bits_[0] &= ~0x00000008u; @@ -24220,28 +24646,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_points_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000008u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.points_visible_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); _impl_.points_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(p); } return _impl_.points_visible_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_points_visible() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000008u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _msg = _internal_mutable_points_visible(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.points_visible) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_points_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(_impl_.points_visible_); + delete (_impl_.points_visible_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24261,12 +24687,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_gradient_visible() const return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_gradient_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.gradient_visible_ != nullptr) _impl_.gradient_visible_->Clear(); _impl_._has_bits_[0] &= ~0x00000010u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_gradient_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* p = _impl_.gradient_visible_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BoolMapWithDefault_default_instance_); } @@ -24275,7 +24701,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_gradient_visible(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_gradient_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.gradient_visible_); } @@ -24288,7 +24714,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_g // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.gradient_visible) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_gradient_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000010u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.gradient_visible_; @@ -24307,7 +24733,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_gradient_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.gradient_visible) _impl_._has_bits_[0] &= ~0x00000010u; @@ -24316,28 +24742,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMap return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_gradient_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000010u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.gradient_visible_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>(GetArena()); _impl_.gradient_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(p); } return _impl_.gradient_visible_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_gradient_visible() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000010u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _msg = _internal_mutable_gradient_visible(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.gradient_visible) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_gradient_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(_impl_.gradient_visible_); + delete (_impl_.gradient_visible_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24357,12 +24783,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_label_format() con return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_label_format_ != nullptr) _impl_.point_label_format_->Clear(); _impl_._has_bits_[0] &= ~0x00000020u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_point_label_format() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.point_label_format_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -24371,7 +24797,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_point_label_format(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_label_format(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_label_format_); } @@ -24384,7 +24810,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label_format) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000020u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_label_format_; @@ -24403,7 +24829,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label_format) _impl_._has_bits_[0] &= ~0x00000020u; @@ -24412,28 +24838,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_label_format() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000020u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_label_format_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.point_label_format_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.point_label_format_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_point_label_format() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000020u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_point_label_format(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label_format) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_point_label_format(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.point_label_format_); + delete (_impl_.point_label_format_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24453,12 +24879,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_x_tool_tip_pattern() con return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.x_tool_tip_pattern_ != nullptr) _impl_.x_tool_tip_pattern_->Clear(); _impl_._has_bits_[0] &= ~0x00000040u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_x_tool_tip_pattern() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.x_tool_tip_pattern_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -24467,7 +24893,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_x_tool_tip_pattern(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_x_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.x_tool_tip_pattern_); } @@ -24480,7 +24906,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_x // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.x_tool_tip_pattern) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000040u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.x_tool_tip_pattern_; @@ -24499,7 +24925,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.x_tool_tip_pattern) _impl_._has_bits_[0] &= ~0x00000040u; @@ -24508,28 +24934,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_x_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000040u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.x_tool_tip_pattern_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.x_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.x_tool_tip_pattern_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_x_tool_tip_pattern() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000040u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_x_tool_tip_pattern(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.x_tool_tip_pattern) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_x_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.x_tool_tip_pattern_); + delete (_impl_.x_tool_tip_pattern_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24549,12 +24975,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_y_tool_tip_pattern() con return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.y_tool_tip_pattern_ != nullptr) _impl_.y_tool_tip_pattern_->Clear(); _impl_._has_bits_[0] &= ~0x00000080u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_y_tool_tip_pattern() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.y_tool_tip_pattern_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -24563,7 +24989,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_y_tool_tip_pattern(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_y_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.y_tool_tip_pattern_); } @@ -24576,7 +25002,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_y // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.y_tool_tip_pattern) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000080u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.y_tool_tip_pattern_; @@ -24595,7 +25021,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.y_tool_tip_pattern) _impl_._has_bits_[0] &= ~0x00000080u; @@ -24604,28 +25030,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_y_tool_tip_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000080u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.y_tool_tip_pattern_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.y_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.y_tool_tip_pattern_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_y_tool_tip_pattern() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000080u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_y_tool_tip_pattern(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.y_tool_tip_pattern) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_y_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.y_tool_tip_pattern_); + delete (_impl_.y_tool_tip_pattern_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24645,12 +25071,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_label() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_label_ != nullptr) _impl_.point_label_->Clear(); _impl_._has_bits_[0] &= ~0x00000100u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_point_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.point_label_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -24659,7 +25085,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_point_label(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_label(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_label_); } @@ -24672,7 +25098,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_point_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000100u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_label_; @@ -24691,7 +25117,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label) _impl_._has_bits_[0] &= ~0x00000100u; @@ -24700,28 +25126,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000100u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_label_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.point_label_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.point_label_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_point_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000100u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_point_label(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_point_label(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.point_label_); + delete (_impl_.point_label_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24741,12 +25167,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_size() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_size_ != nullptr) _impl_.point_size_->Clear(); _impl_._has_bits_[0] &= ~0x00000200u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_point_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* p = _impl_.point_size_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_DoubleMapWithDefault_default_instance_); } @@ -24755,7 +25181,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_D return _internal_point_size(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_size(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_size_); } @@ -24768,7 +25194,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_size) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_point_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000200u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* released = _impl_.point_size_; @@ -24787,7 +25213,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_size) _impl_._has_bits_[0] &= ~0x00000200u; @@ -24796,28 +25222,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000200u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_size_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>(GetArena()); _impl_.point_size_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault*>(p); } return _impl_.point_size_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_point_size() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000200u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* _msg = _internal_mutable_point_size(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_size) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_point_size(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault*>(_impl_.point_size_); + delete (_impl_.point_size_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24837,12 +25263,12 @@ inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_shape() const { return value; } inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_shape_ != nullptr) _impl_.point_shape_->Clear(); _impl_._has_bits_[0] &= ~0x00000400u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::_internal_point_shape() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* p = _impl_.point_shape_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_); } @@ -24851,7 +25277,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_S return _internal_point_shape(); } inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_shape(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_shape_); } @@ -24864,7 +25290,7 @@ inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_p // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_shape) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::release_point_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000400u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_shape_; @@ -24883,7 +25309,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_shape) _impl_._has_bits_[0] &= ~0x00000400u; @@ -24892,28 +25318,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringM return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_shape() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000400u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.point_shape_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>(GetArena()); _impl_.point_shape_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(p); } return _impl_.point_shape_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::mutable_point_shape() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000400u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _msg = _internal_mutable_point_shape(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_shape) return _msg; } inline void FigureDescriptor_MultiSeriesDescriptor::set_allocated_point_shape(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(_impl_.point_shape_); + delete (_impl_.point_shape_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -24934,7 +25360,7 @@ inline int FigureDescriptor_MultiSeriesDescriptor::data_sources_size() const { return _internal_data_sources_size(); } inline void FigureDescriptor_MultiSeriesDescriptor::clear_data_sources() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_sources_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* FigureDescriptor_MultiSeriesDescriptor::mutable_data_sources(int index) @@ -24945,7 +25371,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSe inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>* FigureDescriptor_MultiSeriesDescriptor::mutable_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.data_sources) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_data_sources(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor& FigureDescriptor_MultiSeriesDescriptor::data_sources(int index) const @@ -24954,7 +25380,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_M return _internal_data_sources().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* FigureDescriptor_MultiSeriesDescriptor::add_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* _add = _internal_mutable_data_sources()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.data_sources) return _add; @@ -24966,12 +25392,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>& FigureDescriptor_MultiSeriesDescriptor::_internal_data_sources() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.data_sources_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_data_sources() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.data_sources_; } @@ -24985,7 +25411,7 @@ inline bool FigureDescriptor_StringMapWithDefault::has_default_string() const { return value; } inline void FigureDescriptor_StringMapWithDefault::clear_default_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.default_string_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -24997,7 +25423,7 @@ inline const std::string& FigureDescriptor_StringMapWithDefault::default_string( template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_StringMapWithDefault::set_default_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.default_string_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string) @@ -25008,21 +25434,21 @@ inline std::string* FigureDescriptor_StringMapWithDefault::mutable_default_strin return _s; } inline const std::string& FigureDescriptor_StringMapWithDefault::_internal_default_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.default_string_.Get(); } inline void FigureDescriptor_StringMapWithDefault::_internal_set_default_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.default_string_.Set(value, GetArena()); } inline std::string* FigureDescriptor_StringMapWithDefault::_internal_mutable_default_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.default_string_.Mutable( GetArena()); } inline std::string* FigureDescriptor_StringMapWithDefault::release_default_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -25035,7 +25461,7 @@ inline std::string* FigureDescriptor_StringMapWithDefault::release_default_strin return released; } inline void FigureDescriptor_StringMapWithDefault::set_allocated_default_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -25058,12 +25484,11 @@ inline int FigureDescriptor_StringMapWithDefault::keys_size() const { return _internal_keys_size(); } inline void FigureDescriptor_StringMapWithDefault::clear_keys() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.keys_.Clear(); } -inline std::string* FigureDescriptor_StringMapWithDefault::add_keys() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_StringMapWithDefault::add_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_keys()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) return _s; @@ -25078,57 +25503,21 @@ inline std::string* FigureDescriptor_StringMapWithDefault::mutable_keys(int inde // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) return _internal_mutable_keys()->Mutable(index); } -inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, const std::string& value) { - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, std::string&& value) { - _internal_mutable_keys()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_keys()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) } -inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, const char* value, - std::size_t size) { - _internal_mutable_keys()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::set_keys(int index, absl::string_view value) { - _internal_mutable_keys()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::add_keys(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::add_keys(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add(std::move(value)); +template +inline void FigureDescriptor_StringMapWithDefault::add_keys(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_keys(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) } -inline void FigureDescriptor_StringMapWithDefault::add_keys(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::add_keys(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} -inline void FigureDescriptor_StringMapWithDefault::add_keys(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_StringMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) @@ -25137,17 +25526,17 @@ FigureDescriptor_StringMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUN inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_StringMapWithDefault::mutable_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_keys(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_StringMapWithDefault::_internal_keys() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.keys_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_StringMapWithDefault::_internal_mutable_keys() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.keys_; } @@ -25159,12 +25548,11 @@ inline int FigureDescriptor_StringMapWithDefault::values_size() const { return _internal_values_size(); } inline void FigureDescriptor_StringMapWithDefault::clear_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.values_.Clear(); } -inline std::string* FigureDescriptor_StringMapWithDefault::add_values() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_StringMapWithDefault::add_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_values()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) return _s; @@ -25179,57 +25567,21 @@ inline std::string* FigureDescriptor_StringMapWithDefault::mutable_values(int in // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) return _internal_mutable_values()->Mutable(index); } -inline void FigureDescriptor_StringMapWithDefault::set_values(int index, const std::string& value) { - _internal_mutable_values()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::set_values(int index, std::string&& value) { - _internal_mutable_values()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_StringMapWithDefault::set_values(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_values()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) } -inline void FigureDescriptor_StringMapWithDefault::set_values(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_values()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::set_values(int index, const char* value, - std::size_t size) { - _internal_mutable_values()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::set_values(int index, absl::string_view value) { - _internal_mutable_values()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::add_values(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_values()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::add_values(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_values()->Add(std::move(value)); +template +inline void FigureDescriptor_StringMapWithDefault::add_values(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_values(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) } -inline void FigureDescriptor_StringMapWithDefault::add_values(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_values()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::add_values(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_values()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} -inline void FigureDescriptor_StringMapWithDefault::add_values(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_values()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_StringMapWithDefault::values() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) @@ -25238,17 +25590,17 @@ FigureDescriptor_StringMapWithDefault::values() const ABSL_ATTRIBUTE_LIFETIME_BO inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_StringMapWithDefault::mutable_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_values(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_StringMapWithDefault::_internal_values() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.values_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_StringMapWithDefault::_internal_mutable_values() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.values_; } @@ -25262,7 +25614,7 @@ inline bool FigureDescriptor_DoubleMapWithDefault::has_default_double() const { return value; } inline void FigureDescriptor_DoubleMapWithDefault::clear_default_double() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.default_double_ = 0; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -25272,15 +25624,15 @@ inline double FigureDescriptor_DoubleMapWithDefault::default_double() const { } inline void FigureDescriptor_DoubleMapWithDefault::set_default_double(double value) { _internal_set_default_double(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.default_double) } inline double FigureDescriptor_DoubleMapWithDefault::_internal_default_double() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.default_double_; } inline void FigureDescriptor_DoubleMapWithDefault::_internal_set_default_double(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.default_double_ = value; } @@ -25292,12 +25644,11 @@ inline int FigureDescriptor_DoubleMapWithDefault::keys_size() const { return _internal_keys_size(); } inline void FigureDescriptor_DoubleMapWithDefault::clear_keys() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.keys_.Clear(); } -inline std::string* FigureDescriptor_DoubleMapWithDefault::add_keys() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_DoubleMapWithDefault::add_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_keys()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) return _s; @@ -25312,57 +25663,21 @@ inline std::string* FigureDescriptor_DoubleMapWithDefault::mutable_keys(int inde // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) return _internal_mutable_keys()->Mutable(index); } -inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, const std::string& value) { - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, std::string&& value) { - _internal_mutable_keys()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_keys()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) } -inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, const char* value, - std::size_t size) { - _internal_mutable_keys()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::set_keys(int index, absl::string_view value) { - _internal_mutable_keys()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::add_keys(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::add_keys(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add(std::move(value)); +template +inline void FigureDescriptor_DoubleMapWithDefault::add_keys(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_keys(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) } -inline void FigureDescriptor_DoubleMapWithDefault::add_keys(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::add_keys(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} -inline void FigureDescriptor_DoubleMapWithDefault::add_keys(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_DoubleMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) @@ -25371,17 +25686,17 @@ FigureDescriptor_DoubleMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUN inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_DoubleMapWithDefault::mutable_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_keys(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_DoubleMapWithDefault::_internal_keys() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.keys_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_DoubleMapWithDefault::_internal_mutable_keys() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.keys_; } @@ -25393,7 +25708,7 @@ inline int FigureDescriptor_DoubleMapWithDefault::values_size() const { return _internal_values_size(); } inline void FigureDescriptor_DoubleMapWithDefault::clear_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.values_.Clear(); } inline double FigureDescriptor_DoubleMapWithDefault::values(int index) const { @@ -25405,7 +25720,7 @@ inline void FigureDescriptor_DoubleMapWithDefault::set_values(int index, double // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) } inline void FigureDescriptor_DoubleMapWithDefault::add_values(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _internal_mutable_values()->Add(value); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) } @@ -25417,16 +25732,16 @@ inline const ::google::protobuf::RepeatedField& FigureDescriptor_DoubleM inline ::google::protobuf::RepeatedField* FigureDescriptor_DoubleMapWithDefault::mutable_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_values(); } -inline const ::google::protobuf::RepeatedField& FigureDescriptor_DoubleMapWithDefault::_internal_values() - const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); +inline const ::google::protobuf::RepeatedField& +FigureDescriptor_DoubleMapWithDefault::_internal_values() const { + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.values_; } inline ::google::protobuf::RepeatedField* FigureDescriptor_DoubleMapWithDefault::_internal_mutable_values() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.values_; } @@ -25440,7 +25755,7 @@ inline bool FigureDescriptor_BoolMapWithDefault::has_default_bool() const { return value; } inline void FigureDescriptor_BoolMapWithDefault::clear_default_bool() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.default_bool_ = false; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -25450,15 +25765,15 @@ inline bool FigureDescriptor_BoolMapWithDefault::default_bool() const { } inline void FigureDescriptor_BoolMapWithDefault::set_default_bool(bool value) { _internal_set_default_bool(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.default_bool) } inline bool FigureDescriptor_BoolMapWithDefault::_internal_default_bool() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.default_bool_; } inline void FigureDescriptor_BoolMapWithDefault::_internal_set_default_bool(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.default_bool_ = value; } @@ -25470,12 +25785,11 @@ inline int FigureDescriptor_BoolMapWithDefault::keys_size() const { return _internal_keys_size(); } inline void FigureDescriptor_BoolMapWithDefault::clear_keys() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.keys_.Clear(); } -inline std::string* FigureDescriptor_BoolMapWithDefault::add_keys() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_BoolMapWithDefault::add_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_keys()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) return _s; @@ -25490,57 +25804,21 @@ inline std::string* FigureDescriptor_BoolMapWithDefault::mutable_keys(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) return _internal_mutable_keys()->Mutable(index); } -inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, const std::string& value) { - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, std::string&& value) { - _internal_mutable_keys()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_keys()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) } -inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_keys()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, const char* value, - std::size_t size) { - _internal_mutable_keys()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::set_keys(int index, absl::string_view value) { - _internal_mutable_keys()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::add_keys(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::add_keys(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add(std::move(value)); +template +inline void FigureDescriptor_BoolMapWithDefault::add_keys(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_keys(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) } -inline void FigureDescriptor_BoolMapWithDefault::add_keys(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::add_keys(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} -inline void FigureDescriptor_BoolMapWithDefault::add_keys(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_keys()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_BoolMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) @@ -25549,17 +25827,17 @@ FigureDescriptor_BoolMapWithDefault::keys() const ABSL_ATTRIBUTE_LIFETIME_BOUND inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_BoolMapWithDefault::mutable_keys() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_keys(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_BoolMapWithDefault::_internal_keys() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.keys_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_BoolMapWithDefault::_internal_mutable_keys() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.keys_; } @@ -25571,7 +25849,7 @@ inline int FigureDescriptor_BoolMapWithDefault::values_size() const { return _internal_values_size(); } inline void FigureDescriptor_BoolMapWithDefault::clear_values() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.values_.Clear(); } inline bool FigureDescriptor_BoolMapWithDefault::values(int index) const { @@ -25583,7 +25861,7 @@ inline void FigureDescriptor_BoolMapWithDefault::set_values(int index, bool valu // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) } inline void FigureDescriptor_BoolMapWithDefault::add_values(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _internal_mutable_values()->Add(value); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) } @@ -25595,16 +25873,16 @@ inline const ::google::protobuf::RepeatedField& FigureDescriptor_BoolMapWi inline ::google::protobuf::RepeatedField* FigureDescriptor_BoolMapWithDefault::mutable_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_values(); } -inline const ::google::protobuf::RepeatedField& FigureDescriptor_BoolMapWithDefault::_internal_values() - const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); +inline const ::google::protobuf::RepeatedField& +FigureDescriptor_BoolMapWithDefault::_internal_values() const { + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.values_; } inline ::google::protobuf::RepeatedField* FigureDescriptor_BoolMapWithDefault::_internal_mutable_values() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.values_; } @@ -25614,7 +25892,7 @@ inline ::google::protobuf::RepeatedField* FigureDescriptor_BoolMapWithDefa // string id = 1; inline void FigureDescriptor_AxisDescriptor::clear_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.id_.ClearToEmpty(); } inline const std::string& FigureDescriptor_AxisDescriptor::id() const @@ -25625,8 +25903,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::id() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id) } @@ -25636,26 +25913,24 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_id() ABSL_ATTRIBUTE return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.id_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.id_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.id_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id) return _impl_.id_.Release(); } inline void FigureDescriptor_AxisDescriptor::set_allocated_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.id_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.id_.IsDefault()) { @@ -25667,7 +25942,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_id(std::string* value // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; inline void FigureDescriptor_AxisDescriptor::clear_format_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.format_type_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::format_type() const { @@ -25679,18 +25954,17 @@ inline void FigureDescriptor_AxisDescriptor::set_format_type(::io::deephaven::pr // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_type) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::_internal_format_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType>(_impl_.format_type_); } inline void FigureDescriptor_AxisDescriptor::_internal_set_format_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.format_type_ = value; } // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; inline void FigureDescriptor_AxisDescriptor::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::type() const { @@ -25702,18 +25976,17 @@ inline void FigureDescriptor_AxisDescriptor::set_type(::io::deephaven::proto::ba // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.type) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType>(_impl_.type_); } inline void FigureDescriptor_AxisDescriptor::_internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = value; } // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; inline void FigureDescriptor_AxisDescriptor::clear_position() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.position_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::position() const { @@ -25725,18 +25998,17 @@ inline void FigureDescriptor_AxisDescriptor::set_position(::io::deephaven::proto // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.position) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::_internal_position() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition>(_impl_.position_); } inline void FigureDescriptor_AxisDescriptor::_internal_set_position(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.position_ = value; } // bool log = 5; inline void FigureDescriptor_AxisDescriptor::clear_log() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_ = false; } inline bool FigureDescriptor_AxisDescriptor::log() const { @@ -25748,18 +26020,17 @@ inline void FigureDescriptor_AxisDescriptor::set_log(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.log) } inline bool FigureDescriptor_AxisDescriptor::_internal_log() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.log_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_log(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.log_ = value; } // string label = 6; inline void FigureDescriptor_AxisDescriptor::clear_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.ClearToEmpty(); } inline const std::string& FigureDescriptor_AxisDescriptor::label() const @@ -25770,8 +26041,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::label() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_label(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label) } @@ -25781,26 +26051,24 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_label() ABSL_ATTRIB return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_label() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.label_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_label(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.label_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_label() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label) return _impl_.label_.Release(); } inline void FigureDescriptor_AxisDescriptor::set_allocated_label(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.label_.IsDefault()) { @@ -25812,7 +26080,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_label(std::string* va // string label_font = 7; inline void FigureDescriptor_AxisDescriptor::clear_label_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_font_.ClearToEmpty(); } inline const std::string& FigureDescriptor_AxisDescriptor::label_font() const @@ -25823,8 +26091,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::label_font() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_label_font(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_font_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font) } @@ -25834,26 +26101,24 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_label_font() ABSL_A return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_label_font() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.label_font_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_label_font(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_font_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_label_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.label_font_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_label_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font) return _impl_.label_font_.Release(); } inline void FigureDescriptor_AxisDescriptor::set_allocated_label_font(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.label_font_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.label_font_.IsDefault()) { @@ -25865,7 +26130,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_label_font(std::strin // string ticks_font = 8; inline void FigureDescriptor_AxisDescriptor::clear_ticks_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_font_.ClearToEmpty(); } inline const std::string& FigureDescriptor_AxisDescriptor::ticks_font() const @@ -25876,8 +26141,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::ticks_font() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_ticks_font(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_font_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font) } @@ -25887,26 +26151,24 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_ticks_font() ABSL_A return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_ticks_font() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.ticks_font_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_ticks_font(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_font_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_ticks_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.ticks_font_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_ticks_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font) return _impl_.ticks_font_.Release(); } inline void FigureDescriptor_AxisDescriptor::set_allocated_ticks_font(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_font_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.ticks_font_.IsDefault()) { @@ -25922,7 +26184,7 @@ inline bool FigureDescriptor_AxisDescriptor::has_format_pattern() const { return value; } inline void FigureDescriptor_AxisDescriptor::clear_format_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.format_pattern_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -25934,7 +26196,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::format_pattern() cons template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_format_pattern(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.format_pattern_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern) @@ -25945,21 +26207,21 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_format_pattern() AB return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_format_pattern() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.format_pattern_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_format_pattern(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.format_pattern_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_format_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.format_pattern_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_format_pattern() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -25972,7 +26234,7 @@ inline std::string* FigureDescriptor_AxisDescriptor::release_format_pattern() { return released; } inline void FigureDescriptor_AxisDescriptor::set_allocated_format_pattern(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -25989,7 +26251,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_format_pattern(std::s // string color = 10; inline void FigureDescriptor_AxisDescriptor::clear_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.color_.ClearToEmpty(); } inline const std::string& FigureDescriptor_AxisDescriptor::color() const @@ -26000,8 +26262,7 @@ inline const std::string& FigureDescriptor_AxisDescriptor::color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color) } @@ -26011,26 +26272,24 @@ inline std::string* FigureDescriptor_AxisDescriptor::mutable_color() ABSL_ATTRIB return _s; } inline const std::string& FigureDescriptor_AxisDescriptor::_internal_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.color_.Get(); } inline void FigureDescriptor_AxisDescriptor::_internal_set_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.color_.Set(value, GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.color_.Mutable( GetArena()); } inline std::string* FigureDescriptor_AxisDescriptor::release_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color) return _impl_.color_.Release(); } inline void FigureDescriptor_AxisDescriptor::set_allocated_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.color_.IsDefault()) { @@ -26042,7 +26301,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_color(std::string* va // double min_range = 11; inline void FigureDescriptor_AxisDescriptor::clear_min_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.min_range_ = 0; } inline double FigureDescriptor_AxisDescriptor::min_range() const { @@ -26054,18 +26313,17 @@ inline void FigureDescriptor_AxisDescriptor::set_min_range(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.min_range) } inline double FigureDescriptor_AxisDescriptor::_internal_min_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.min_range_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_min_range(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.min_range_ = value; } // double max_range = 12; inline void FigureDescriptor_AxisDescriptor::clear_max_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_range_ = 0; } inline double FigureDescriptor_AxisDescriptor::max_range() const { @@ -26077,18 +26335,17 @@ inline void FigureDescriptor_AxisDescriptor::set_max_range(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.max_range) } inline double FigureDescriptor_AxisDescriptor::_internal_max_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.max_range_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_max_range(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_range_ = value; } // bool minor_ticks_visible = 13; inline void FigureDescriptor_AxisDescriptor::clear_minor_ticks_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.minor_ticks_visible_ = false; } inline bool FigureDescriptor_AxisDescriptor::minor_ticks_visible() const { @@ -26100,18 +26357,17 @@ inline void FigureDescriptor_AxisDescriptor::set_minor_ticks_visible(bool value) // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.minor_ticks_visible) } inline bool FigureDescriptor_AxisDescriptor::_internal_minor_ticks_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.minor_ticks_visible_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_minor_ticks_visible(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.minor_ticks_visible_ = value; } // bool major_ticks_visible = 14; inline void FigureDescriptor_AxisDescriptor::clear_major_ticks_visible() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.major_ticks_visible_ = false; } inline bool FigureDescriptor_AxisDescriptor::major_ticks_visible() const { @@ -26123,18 +26379,17 @@ inline void FigureDescriptor_AxisDescriptor::set_major_ticks_visible(bool value) // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_ticks_visible) } inline bool FigureDescriptor_AxisDescriptor::_internal_major_ticks_visible() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.major_ticks_visible_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_major_ticks_visible(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.major_ticks_visible_ = value; } // int32 minor_tick_count = 15; inline void FigureDescriptor_AxisDescriptor::clear_minor_tick_count() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.minor_tick_count_ = 0; } inline ::int32_t FigureDescriptor_AxisDescriptor::minor_tick_count() const { @@ -26146,12 +26401,11 @@ inline void FigureDescriptor_AxisDescriptor::set_minor_tick_count(::int32_t valu // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.minor_tick_count) } inline ::int32_t FigureDescriptor_AxisDescriptor::_internal_minor_tick_count() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.minor_tick_count_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_minor_tick_count(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.minor_tick_count_ = value; } @@ -26161,7 +26415,7 @@ inline bool FigureDescriptor_AxisDescriptor::has_gap_between_major_ticks() const return value; } inline void FigureDescriptor_AxisDescriptor::clear_gap_between_major_ticks() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.gap_between_major_ticks_ = 0; _impl_._has_bits_[0] &= ~0x00000004u; } @@ -26171,15 +26425,15 @@ inline double FigureDescriptor_AxisDescriptor::gap_between_major_ticks() const { } inline void FigureDescriptor_AxisDescriptor::set_gap_between_major_ticks(double value) { _internal_set_gap_between_major_ticks(value); + _impl_._has_bits_[0] |= 0x00000004u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.gap_between_major_ticks) } inline double FigureDescriptor_AxisDescriptor::_internal_gap_between_major_ticks() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.gap_between_major_ticks_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_gap_between_major_ticks(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.gap_between_major_ticks_ = value; } @@ -26191,7 +26445,7 @@ inline int FigureDescriptor_AxisDescriptor::major_tick_locations_size() const { return _internal_major_tick_locations_size(); } inline void FigureDescriptor_AxisDescriptor::clear_major_tick_locations() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.major_tick_locations_.Clear(); } inline double FigureDescriptor_AxisDescriptor::major_tick_locations(int index) const { @@ -26203,7 +26457,7 @@ inline void FigureDescriptor_AxisDescriptor::set_major_tick_locations(int index, // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_tick_locations) } inline void FigureDescriptor_AxisDescriptor::add_major_tick_locations(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _internal_mutable_major_tick_locations()->Add(value); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_tick_locations) } @@ -26215,22 +26469,22 @@ inline const ::google::protobuf::RepeatedField& FigureDescriptor_AxisDes inline ::google::protobuf::RepeatedField* FigureDescriptor_AxisDescriptor::mutable_major_tick_locations() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_tick_locations) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_major_tick_locations(); } -inline const ::google::protobuf::RepeatedField& FigureDescriptor_AxisDescriptor::_internal_major_tick_locations() - const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); +inline const ::google::protobuf::RepeatedField& +FigureDescriptor_AxisDescriptor::_internal_major_tick_locations() const { + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.major_tick_locations_; } inline ::google::protobuf::RepeatedField* FigureDescriptor_AxisDescriptor::_internal_mutable_major_tick_locations() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.major_tick_locations_; } // double tick_label_angle = 18; inline void FigureDescriptor_AxisDescriptor::clear_tick_label_angle() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.tick_label_angle_ = 0; } inline double FigureDescriptor_AxisDescriptor::tick_label_angle() const { @@ -26242,18 +26496,17 @@ inline void FigureDescriptor_AxisDescriptor::set_tick_label_angle(double value) // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.tick_label_angle) } inline double FigureDescriptor_AxisDescriptor::_internal_tick_label_angle() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.tick_label_angle_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_tick_label_angle(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.tick_label_angle_ = value; } // bool invert = 19; inline void FigureDescriptor_AxisDescriptor::clear_invert() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.invert_ = false; } inline bool FigureDescriptor_AxisDescriptor::invert() const { @@ -26265,18 +26518,17 @@ inline void FigureDescriptor_AxisDescriptor::set_invert(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.invert) } inline bool FigureDescriptor_AxisDescriptor::_internal_invert() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.invert_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_invert(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.invert_ = value; } // bool is_time_axis = 20; inline void FigureDescriptor_AxisDescriptor::clear_is_time_axis() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_time_axis_ = false; } inline bool FigureDescriptor_AxisDescriptor::is_time_axis() const { @@ -26288,12 +26540,11 @@ inline void FigureDescriptor_AxisDescriptor::set_is_time_axis(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.is_time_axis) } inline bool FigureDescriptor_AxisDescriptor::_internal_is_time_axis() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_time_axis_; } inline void FigureDescriptor_AxisDescriptor::_internal_set_is_time_axis(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_time_axis_ = value; } @@ -26304,12 +26555,12 @@ inline bool FigureDescriptor_AxisDescriptor::has_business_calendar_descriptor() return value; } inline void FigureDescriptor_AxisDescriptor::clear_business_calendar_descriptor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.business_calendar_descriptor_ != nullptr) _impl_.business_calendar_descriptor_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& FigureDescriptor_AxisDescriptor::_internal_business_calendar_descriptor() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* p = _impl_.business_calendar_descriptor_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_default_instance_); } @@ -26318,7 +26569,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_business_calendar_descriptor(); } inline void FigureDescriptor_AxisDescriptor::unsafe_arena_set_allocated_business_calendar_descriptor(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.business_calendar_descriptor_); } @@ -26331,7 +26582,7 @@ inline void FigureDescriptor_AxisDescriptor::unsafe_arena_set_allocated_business // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.business_calendar_descriptor) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::release_business_calendar_descriptor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* released = _impl_.business_calendar_descriptor_; @@ -26350,7 +26601,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::unsafe_arena_release_business_calendar_descriptor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.business_calendar_descriptor) _impl_._has_bits_[0] &= ~0x00000002u; @@ -26359,28 +26610,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::_internal_mutable_business_calendar_descriptor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.business_calendar_descriptor_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>(GetArena()); _impl_.business_calendar_descriptor_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor*>(p); } return _impl_.business_calendar_descriptor_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::mutable_business_calendar_descriptor() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* _msg = _internal_mutable_business_calendar_descriptor(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.business_calendar_descriptor) return _msg; } inline void FigureDescriptor_AxisDescriptor::set_allocated_business_calendar_descriptor(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor*>(_impl_.business_calendar_descriptor_); + delete (_impl_.business_calendar_descriptor_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -26399,7 +26650,7 @@ inline void FigureDescriptor_AxisDescriptor::set_allocated_business_calendar_des // string open = 1; inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::clear_open() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.open_.ClearToEmpty(); } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::open() const @@ -26410,8 +26661,7 @@ inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPe template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_open(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.open_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open) } @@ -26421,26 +26671,24 @@ inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod:: return _s; } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_open() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.open_.Get(); } inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_set_open(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.open_.Set(value, GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_mutable_open() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.open_.Mutable( GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::release_open() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open) return _impl_.open_.Release(); } inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_allocated_open(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.open_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.open_.IsDefault()) { @@ -26452,7 +26700,7 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_allo // string close = 2; inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::clear_close() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.close_.ClearToEmpty(); } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::close() const @@ -26463,8 +26711,7 @@ inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPe template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_close(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.close_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close) } @@ -26474,26 +26721,24 @@ inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod:: return _s; } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_close() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.close_.Get(); } inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_set_close(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.close_.Set(value, GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_mutable_close() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.close_.Mutable( GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::release_close() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close) return _impl_.close_.Release(); } inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_allocated_close(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.close_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.close_.IsDefault()) { @@ -26514,12 +26759,12 @@ inline bool FigureDescriptor_BusinessCalendarDescriptor_Holiday::has_date() cons return value; } inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::clear_date() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.date_ != nullptr) _impl_.date_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_date() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* p = _impl_.date_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_); } @@ -26528,7 +26773,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_date(); } inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::unsafe_arena_set_allocated_date(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.date_); } @@ -26541,7 +26786,7 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::unsafe_arena_se // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.date) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::release_date() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* released = _impl_.date_; @@ -26560,7 +26805,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::unsafe_arena_release_date() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.date) _impl_._has_bits_[0] &= ~0x00000001u; @@ -26569,28 +26814,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_mutable_date() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.date_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(GetArena()); _impl_.date_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate*>(p); } return _impl_.date_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::mutable_date() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* _msg = _internal_mutable_date(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.date) return _msg; } inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::set_allocated_date(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate*>(_impl_.date_); + delete (_impl_.date_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -26611,7 +26856,7 @@ inline int FigureDescriptor_BusinessCalendarDescriptor_Holiday::business_periods return _internal_business_periods_size(); } inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::clear_business_periods() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.business_periods_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* FigureDescriptor_BusinessCalendarDescriptor_Holiday::mutable_business_periods(int index) @@ -26622,7 +26867,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* FigureDescriptor_BusinessCalendarDescriptor_Holiday::mutable_business_periods() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.business_periods) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_business_periods(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& FigureDescriptor_BusinessCalendarDescriptor_Holiday::business_periods(int index) const @@ -26631,7 +26876,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_business_periods().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* FigureDescriptor_BusinessCalendarDescriptor_Holiday::add_business_periods() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* _add = _internal_mutable_business_periods()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.business_periods) return _add; @@ -26643,12 +26888,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_business_periods() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.business_periods_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_mutable_business_periods() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.business_periods_; } @@ -26658,7 +26903,7 @@ FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_mutable_business_ // int32 year = 1; inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_year() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.year_ = 0; } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::year() const { @@ -26670,18 +26915,17 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_year(::in // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.year) } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_year() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.year_; } inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_year(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.year_ = value; } // int32 month = 2; inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_month() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.month_ = 0; } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::month() const { @@ -26693,18 +26937,17 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_month(::i // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.month) } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_month() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.month_; } inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_month(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.month_ = value; } // int32 day = 3; inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_day() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.day_ = 0; } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::day() const { @@ -26716,12 +26959,11 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_day(::int // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.day) } inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_day() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.day_; } inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_day(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.day_ = value; } @@ -26731,7 +26973,7 @@ inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set // string name = 1; inline void FigureDescriptor_BusinessCalendarDescriptor::clear_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.ClearToEmpty(); } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::name() const @@ -26742,8 +26984,7 @@ inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::name() co template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor::set_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name) } @@ -26753,26 +26994,24 @@ inline std::string* FigureDescriptor_BusinessCalendarDescriptor::mutable_name() return _s; } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::_internal_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.name_.Get(); } inline void FigureDescriptor_BusinessCalendarDescriptor::_internal_set_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.Set(value, GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.name_.Mutable( GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor::release_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name) return _impl_.name_.Release(); } inline void FigureDescriptor_BusinessCalendarDescriptor::set_allocated_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.name_.IsDefault()) { @@ -26784,7 +27023,7 @@ inline void FigureDescriptor_BusinessCalendarDescriptor::set_allocated_name(std: // string time_zone = 2; inline void FigureDescriptor_BusinessCalendarDescriptor::clear_time_zone() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.time_zone_.ClearToEmpty(); } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::time_zone() const @@ -26795,8 +27034,7 @@ inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::time_zone template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor::set_time_zone(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.time_zone_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone) } @@ -26806,26 +27044,24 @@ inline std::string* FigureDescriptor_BusinessCalendarDescriptor::mutable_time_zo return _s; } inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::_internal_time_zone() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.time_zone_.Get(); } inline void FigureDescriptor_BusinessCalendarDescriptor::_internal_set_time_zone(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.time_zone_.Set(value, GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_time_zone() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.time_zone_.Mutable( GetArena()); } inline std::string* FigureDescriptor_BusinessCalendarDescriptor::release_time_zone() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone) return _impl_.time_zone_.Release(); } inline void FigureDescriptor_BusinessCalendarDescriptor::set_allocated_time_zone(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.time_zone_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.time_zone_.IsDefault()) { @@ -26843,7 +27079,7 @@ inline int FigureDescriptor_BusinessCalendarDescriptor::business_days_size() con return _internal_business_days_size(); } inline void FigureDescriptor_BusinessCalendarDescriptor::clear_business_days() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.business_days_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::business_days(int index) const { @@ -26855,7 +27091,7 @@ inline void FigureDescriptor_BusinessCalendarDescriptor::set_business_days(int i // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_days) } inline void FigureDescriptor_BusinessCalendarDescriptor::add_business_days(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _internal_mutable_business_days()->Add(value); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_days) } @@ -26867,15 +27103,16 @@ inline const ::google::protobuf::RepeatedField& FigureDescriptor_BusinessCa inline ::google::protobuf::RepeatedField* FigureDescriptor_BusinessCalendarDescriptor::mutable_business_days() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_days) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_business_days(); } -inline const ::google::protobuf::RepeatedField& FigureDescriptor_BusinessCalendarDescriptor::_internal_business_days() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); +inline const ::google::protobuf::RepeatedField& FigureDescriptor_BusinessCalendarDescriptor::_internal_business_days() + const { + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.business_days_; } inline ::google::protobuf::RepeatedField* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_business_days() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.business_days_; } @@ -26887,7 +27124,7 @@ inline int FigureDescriptor_BusinessCalendarDescriptor::business_periods_size() return _internal_business_periods_size(); } inline void FigureDescriptor_BusinessCalendarDescriptor::clear_business_periods() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.business_periods_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* FigureDescriptor_BusinessCalendarDescriptor::mutable_business_periods(int index) @@ -26898,7 +27135,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* FigureDescriptor_BusinessCalendarDescriptor::mutable_business_periods() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_periods) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_business_periods(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& FigureDescriptor_BusinessCalendarDescriptor::business_periods(int index) const @@ -26907,7 +27144,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_business_periods().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* FigureDescriptor_BusinessCalendarDescriptor::add_business_periods() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* _add = _internal_mutable_business_periods()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_periods) return _add; @@ -26919,12 +27156,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& FigureDescriptor_BusinessCalendarDescriptor::_internal_business_periods() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.business_periods_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_business_periods() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.business_periods_; } @@ -26936,7 +27173,7 @@ inline int FigureDescriptor_BusinessCalendarDescriptor::holidays_size() const { return _internal_holidays_size(); } inline void FigureDescriptor_BusinessCalendarDescriptor::clear_holidays() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.holidays_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* FigureDescriptor_BusinessCalendarDescriptor::mutable_holidays(int index) @@ -26947,7 +27184,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_Busines inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>* FigureDescriptor_BusinessCalendarDescriptor::mutable_holidays() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.holidays) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_holidays(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday& FigureDescriptor_BusinessCalendarDescriptor::holidays(int index) const @@ -26956,7 +27193,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_B return _internal_holidays().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* FigureDescriptor_BusinessCalendarDescriptor::add_holidays() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* _add = _internal_mutable_holidays()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.holidays) return _add; @@ -26968,12 +27205,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>& FigureDescriptor_BusinessCalendarDescriptor::_internal_holidays() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.holidays_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_holidays() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.holidays_; } @@ -26983,7 +27220,7 @@ FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_holidays() { // string axis_id = 1; inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.ClearToEmpty(); } inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::axis_id() const @@ -26994,8 +27231,7 @@ inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::axis_id( template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesSourceDescriptor::set_axis_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id) } @@ -27005,26 +27241,24 @@ inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::mutable_axis_i return _s; } inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::_internal_axis_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.axis_id_.Get(); } inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_axis_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.Set(value, GetArena()); } inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::_internal_mutable_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.axis_id_.Mutable( GetArena()); } inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::release_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id) return _impl_.axis_id_.Release(); } inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_allocated_axis_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.axis_id_.IsDefault()) { @@ -27036,7 +27270,7 @@ inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_allocated_axis_id( // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_MultiSeriesSourceDescriptor::type() const { @@ -27048,18 +27282,17 @@ inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_type(::io::deephav // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.type) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_MultiSeriesSourceDescriptor::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType>(_impl_.type_); } inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = value; } // int32 partitioned_table_id = 3; inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_partitioned_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.partitioned_table_id_ = 0; } inline ::int32_t FigureDescriptor_MultiSeriesSourceDescriptor::partitioned_table_id() const { @@ -27071,18 +27304,17 @@ inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_partitioned_table_ // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.partitioned_table_id) } inline ::int32_t FigureDescriptor_MultiSeriesSourceDescriptor::_internal_partitioned_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.partitioned_table_id_; } inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_partitioned_table_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.partitioned_table_id_ = value; } // string column_name = 4; inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::column_name() const @@ -27093,8 +27325,7 @@ inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::column_n template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesSourceDescriptor::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name) } @@ -27104,26 +27335,24 @@ inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::mutable_column return _s; } inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name) return _impl_.column_name_.Release(); } inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -27139,7 +27368,7 @@ inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_allocated_column_n // string axis_id = 1; inline void FigureDescriptor_SourceDescriptor::clear_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SourceDescriptor::axis_id() const @@ -27150,8 +27379,7 @@ inline const std::string& FigureDescriptor_SourceDescriptor::axis_id() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_axis_id(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id) } @@ -27161,26 +27389,24 @@ inline std::string* FigureDescriptor_SourceDescriptor::mutable_axis_id() ABSL_AT return _s; } inline const std::string& FigureDescriptor_SourceDescriptor::_internal_axis_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.axis_id_.Get(); } inline void FigureDescriptor_SourceDescriptor::_internal_set_axis_id(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.axis_id_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::release_axis_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id) return _impl_.axis_id_.Release(); } inline void FigureDescriptor_SourceDescriptor::set_allocated_axis_id(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.axis_id_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.axis_id_.IsDefault()) { @@ -27192,7 +27418,7 @@ inline void FigureDescriptor_SourceDescriptor::set_allocated_axis_id(std::string // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; inline void FigureDescriptor_SourceDescriptor::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = 0; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_SourceDescriptor::type() const { @@ -27204,18 +27430,17 @@ inline void FigureDescriptor_SourceDescriptor::set_type(::io::deephaven::proto:: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.type) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_SourceDescriptor::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType>(_impl_.type_); } inline void FigureDescriptor_SourceDescriptor::_internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = value; } // int32 table_id = 3; inline void FigureDescriptor_SourceDescriptor::clear_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.table_id_ = 0; } inline ::int32_t FigureDescriptor_SourceDescriptor::table_id() const { @@ -27227,18 +27452,17 @@ inline void FigureDescriptor_SourceDescriptor::set_table_id(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.table_id) } inline ::int32_t FigureDescriptor_SourceDescriptor::_internal_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.table_id_; } inline void FigureDescriptor_SourceDescriptor::_internal_set_table_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.table_id_ = value; } // int32 partitioned_table_id = 4; inline void FigureDescriptor_SourceDescriptor::clear_partitioned_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.partitioned_table_id_ = 0; } inline ::int32_t FigureDescriptor_SourceDescriptor::partitioned_table_id() const { @@ -27250,18 +27474,17 @@ inline void FigureDescriptor_SourceDescriptor::set_partitioned_table_id(::int32_ // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.partitioned_table_id) } inline ::int32_t FigureDescriptor_SourceDescriptor::_internal_partitioned_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.partitioned_table_id_; } inline void FigureDescriptor_SourceDescriptor::_internal_set_partitioned_table_id(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.partitioned_table_id_ = value; } // string column_name = 5; inline void FigureDescriptor_SourceDescriptor::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SourceDescriptor::column_name() const @@ -27272,8 +27495,7 @@ inline const std::string& FigureDescriptor_SourceDescriptor::column_name() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name) } @@ -27283,26 +27505,24 @@ inline std::string* FigureDescriptor_SourceDescriptor::mutable_column_name() ABS return _s; } inline const std::string& FigureDescriptor_SourceDescriptor::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void FigureDescriptor_SourceDescriptor::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name) return _impl_.column_name_.Release(); } inline void FigureDescriptor_SourceDescriptor::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -27314,7 +27534,7 @@ inline void FigureDescriptor_SourceDescriptor::set_allocated_column_name(std::st // string column_type = 6; inline void FigureDescriptor_SourceDescriptor::clear_column_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_type_.ClearToEmpty(); } inline const std::string& FigureDescriptor_SourceDescriptor::column_type() const @@ -27325,8 +27545,7 @@ inline const std::string& FigureDescriptor_SourceDescriptor::column_type() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_column_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type) } @@ -27336,26 +27555,24 @@ inline std::string* FigureDescriptor_SourceDescriptor::mutable_column_type() ABS return _s; } inline const std::string& FigureDescriptor_SourceDescriptor::_internal_column_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_type_.Get(); } inline void FigureDescriptor_SourceDescriptor::_internal_set_column_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_type_.Set(value, GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_column_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_type_.Mutable( GetArena()); } inline std::string* FigureDescriptor_SourceDescriptor::release_column_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type) return _impl_.column_type_.Release(); } inline void FigureDescriptor_SourceDescriptor::set_allocated_column_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_type_.IsDefault()) { @@ -27372,12 +27589,12 @@ inline bool FigureDescriptor_SourceDescriptor::has_one_click() const { return value; } inline void FigureDescriptor_SourceDescriptor::clear_one_click() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.one_click_ != nullptr) _impl_.one_click_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& FigureDescriptor_SourceDescriptor::_internal_one_click() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* p = _impl_.one_click_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_OneClickDescriptor_default_instance_); } @@ -27386,7 +27603,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_O return _internal_one_click(); } inline void FigureDescriptor_SourceDescriptor::unsafe_arena_set_allocated_one_click(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.one_click_); } @@ -27399,7 +27616,7 @@ inline void FigureDescriptor_SourceDescriptor::unsafe_arena_set_allocated_one_cl // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.one_click) } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::release_one_click() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* released = _impl_.one_click_; @@ -27418,7 +27635,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClic return released; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::unsafe_arena_release_one_click() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.one_click) _impl_._has_bits_[0] &= ~0x00000001u; @@ -27427,28 +27644,28 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClic return temp; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::_internal_mutable_one_click() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.one_click_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>(GetArena()); _impl_.one_click_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor*>(p); } return _impl_.one_click_; } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::mutable_one_click() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* _msg = _internal_mutable_one_click(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.one_click) return _msg; } inline void FigureDescriptor_SourceDescriptor::set_allocated_one_click(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor*>(_impl_.one_click_); + delete (_impl_.one_click_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -27473,12 +27690,11 @@ inline int FigureDescriptor_OneClickDescriptor::columns_size() const { return _internal_columns_size(); } inline void FigureDescriptor_OneClickDescriptor::clear_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_.Clear(); } -inline std::string* FigureDescriptor_OneClickDescriptor::add_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_OneClickDescriptor::add_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) return _s; @@ -27493,57 +27709,21 @@ inline std::string* FigureDescriptor_OneClickDescriptor::mutable_columns(int ind // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) return _internal_mutable_columns()->Mutable(index); } -inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, const std::string& value) { - _internal_mutable_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, std::string&& value) { - _internal_mutable_columns()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) } -inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::set_columns(int index, absl::string_view value) { - _internal_mutable_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::add_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::add_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns()->Add(std::move(value)); +template +inline void FigureDescriptor_OneClickDescriptor::add_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) } -inline void FigureDescriptor_OneClickDescriptor::add_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::add_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} -inline void FigureDescriptor_OneClickDescriptor::add_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_OneClickDescriptor::columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) @@ -27552,17 +27732,17 @@ FigureDescriptor_OneClickDescriptor::columns() const ABSL_ATTRIBUTE_LIFETIME_BOU inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_OneClickDescriptor::mutable_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_OneClickDescriptor::_internal_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_OneClickDescriptor::_internal_mutable_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_; } @@ -27574,12 +27754,11 @@ inline int FigureDescriptor_OneClickDescriptor::column_types_size() const { return _internal_column_types_size(); } inline void FigureDescriptor_OneClickDescriptor::clear_column_types() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_types_.Clear(); } -inline std::string* FigureDescriptor_OneClickDescriptor::add_column_types() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor_OneClickDescriptor::add_column_types() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_column_types()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) return _s; @@ -27594,57 +27773,21 @@ inline std::string* FigureDescriptor_OneClickDescriptor::mutable_column_types(in // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) return _internal_mutable_column_types()->Mutable(index); } -inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, const std::string& value) { - _internal_mutable_column_types()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, std::string&& value) { - _internal_mutable_column_types()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_column_types()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) } -inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_column_types()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, const char* value, - std::size_t size) { - _internal_mutable_column_types()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::set_column_types(int index, absl::string_view value) { - _internal_mutable_column_types()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::add_column_types(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_types()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::add_column_types(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_types()->Add(std::move(value)); +template +inline void FigureDescriptor_OneClickDescriptor::add_column_types(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_column_types(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) } -inline void FigureDescriptor_OneClickDescriptor::add_column_types(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_types()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::add_column_types(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_types()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} -inline void FigureDescriptor_OneClickDescriptor::add_column_types(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_types()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_OneClickDescriptor::column_types() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) @@ -27653,23 +27796,23 @@ FigureDescriptor_OneClickDescriptor::column_types() const ABSL_ATTRIBUTE_LIFETIM inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_OneClickDescriptor::mutable_column_types() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_column_types(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor_OneClickDescriptor::_internal_column_types() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_types_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor_OneClickDescriptor::_internal_mutable_column_types() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.column_types_; } // bool require_all_filters_to_display = 3; inline void FigureDescriptor_OneClickDescriptor::clear_require_all_filters_to_display() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.require_all_filters_to_display_ = false; } inline bool FigureDescriptor_OneClickDescriptor::require_all_filters_to_display() const { @@ -27681,12 +27824,11 @@ inline void FigureDescriptor_OneClickDescriptor::set_require_all_filters_to_disp // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.require_all_filters_to_display) } inline bool FigureDescriptor_OneClickDescriptor::_internal_require_all_filters_to_display() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.require_all_filters_to_display_; } inline void FigureDescriptor_OneClickDescriptor::_internal_set_require_all_filters_to_display(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.require_all_filters_to_display_ = value; } @@ -27700,7 +27842,7 @@ inline bool FigureDescriptor::has_title() const { return value; } inline void FigureDescriptor::clear_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -27712,7 +27854,7 @@ inline const std::string& FigureDescriptor::title() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.title_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title) @@ -27723,21 +27865,21 @@ inline std::string* FigureDescriptor::mutable_title() ABSL_ATTRIBUTE_LIFETIME_BO return _s; } inline const std::string& FigureDescriptor::_internal_title() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_.Get(); } inline void FigureDescriptor::_internal_set_title(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.title_.Set(value, GetArena()); } inline std::string* FigureDescriptor::_internal_mutable_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.title_.Mutable( GetArena()); } inline std::string* FigureDescriptor::release_title() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -27750,7 +27892,7 @@ inline std::string* FigureDescriptor::release_title() { return released; } inline void FigureDescriptor::set_allocated_title(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -27767,7 +27909,7 @@ inline void FigureDescriptor::set_allocated_title(std::string* value) { // string title_font = 2; inline void FigureDescriptor::clear_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.ClearToEmpty(); } inline const std::string& FigureDescriptor::title_font() const @@ -27778,8 +27920,7 @@ inline const std::string& FigureDescriptor::title_font() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title_font(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font) } @@ -27789,26 +27930,24 @@ inline std::string* FigureDescriptor::mutable_title_font() ABSL_ATTRIBUTE_LIFETI return _s; } inline const std::string& FigureDescriptor::_internal_title_font() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_font_.Get(); } inline void FigureDescriptor::_internal_set_title_font(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.Set(value, GetArena()); } inline std::string* FigureDescriptor::_internal_mutable_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.title_font_.Mutable( GetArena()); } inline std::string* FigureDescriptor::release_title_font() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font) return _impl_.title_font_.Release(); } inline void FigureDescriptor::set_allocated_title_font(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_font_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.title_font_.IsDefault()) { @@ -27820,7 +27959,7 @@ inline void FigureDescriptor::set_allocated_title_font(std::string* value) { // string title_color = 3; inline void FigureDescriptor::clear_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.ClearToEmpty(); } inline const std::string& FigureDescriptor::title_color() const @@ -27831,8 +27970,7 @@ inline const std::string& FigureDescriptor::title_color() const template inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title_color(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color) } @@ -27842,26 +27980,24 @@ inline std::string* FigureDescriptor::mutable_title_color() ABSL_ATTRIBUTE_LIFET return _s; } inline const std::string& FigureDescriptor::_internal_title_color() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.title_color_.Get(); } inline void FigureDescriptor::_internal_set_title_color(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.Set(value, GetArena()); } inline std::string* FigureDescriptor::_internal_mutable_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.title_color_.Mutable( GetArena()); } inline std::string* FigureDescriptor::release_title_color() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color) return _impl_.title_color_.Release(); } inline void FigureDescriptor::set_allocated_title_color(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.title_color_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.title_color_.IsDefault()) { @@ -27873,7 +28009,7 @@ inline void FigureDescriptor::set_allocated_title_color(std::string* value) { // int64 update_interval = 7 [jstype = JS_STRING]; inline void FigureDescriptor::clear_update_interval() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_interval_ = ::int64_t{0}; } inline ::int64_t FigureDescriptor::update_interval() const { @@ -27885,18 +28021,17 @@ inline void FigureDescriptor::set_update_interval(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.update_interval) } inline ::int64_t FigureDescriptor::_internal_update_interval() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.update_interval_; } inline void FigureDescriptor::_internal_set_update_interval(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_interval_ = value; } // int32 cols = 8; inline void FigureDescriptor::clear_cols() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cols_ = 0; } inline ::int32_t FigureDescriptor::cols() const { @@ -27908,18 +28043,17 @@ inline void FigureDescriptor::set_cols(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.cols) } inline ::int32_t FigureDescriptor::_internal_cols() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.cols_; } inline void FigureDescriptor::_internal_set_cols(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cols_ = value; } // int32 rows = 9; inline void FigureDescriptor::clear_rows() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rows_ = 0; } inline ::int32_t FigureDescriptor::rows() const { @@ -27931,12 +28065,11 @@ inline void FigureDescriptor::set_rows(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.rows) } inline ::int32_t FigureDescriptor::_internal_rows() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.rows_; } inline void FigureDescriptor::_internal_set_rows(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rows_ = value; } @@ -27948,7 +28081,7 @@ inline int FigureDescriptor::charts_size() const { return _internal_charts_size(); } inline void FigureDescriptor::clear_charts() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.charts_.Clear(); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* FigureDescriptor::mutable_charts(int index) @@ -27959,7 +28092,7 @@ inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDe inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>* FigureDescriptor::mutable_charts() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.charts) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_charts(); } inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor& FigureDescriptor::charts(int index) const @@ -27968,7 +28101,7 @@ inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_C return _internal_charts().Get(index); } inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* FigureDescriptor::add_charts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* _add = _internal_mutable_charts()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.charts) return _add; @@ -27980,12 +28113,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>& FigureDescriptor::_internal_charts() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.charts_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>* FigureDescriptor::_internal_mutable_charts() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.charts_; } @@ -27997,12 +28130,11 @@ inline int FigureDescriptor::errors_size() const { return _internal_errors_size(); } inline void FigureDescriptor::clear_errors() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.errors_.Clear(); } -inline std::string* FigureDescriptor::add_errors() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* FigureDescriptor::add_errors() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_errors()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) return _s; @@ -28017,57 +28149,21 @@ inline std::string* FigureDescriptor::mutable_errors(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) return _internal_mutable_errors()->Mutable(index); } -inline void FigureDescriptor::set_errors(int index, const std::string& value) { - _internal_mutable_errors()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::set_errors(int index, std::string&& value) { - _internal_mutable_errors()->Mutable(index)->assign(std::move(value)); +template +inline void FigureDescriptor::set_errors(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_errors()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) } -inline void FigureDescriptor::set_errors(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_errors()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::set_errors(int index, const char* value, - std::size_t size) { - _internal_mutable_errors()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::set_errors(int index, absl::string_view value) { - _internal_mutable_errors()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::add_errors(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_errors()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::add_errors(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_errors()->Add(std::move(value)); +template +inline void FigureDescriptor::add_errors(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_errors(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) } -inline void FigureDescriptor::add_errors(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_errors()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::add_errors(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_errors()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} -inline void FigureDescriptor::add_errors(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_errors()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) -} inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor::errors() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) @@ -28076,17 +28172,17 @@ FigureDescriptor::errors() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* FigureDescriptor::mutable_errors() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_errors(); } inline const ::google::protobuf::RepeatedPtrField& FigureDescriptor::_internal_errors() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.errors_; } inline ::google::protobuf::RepeatedPtrField* FigureDescriptor::_internal_mutable_errors() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.errors_; } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc index 13898a9f0f8..756c910842a 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/hierarchicaltable.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/hierarchicaltable.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -25,8 +28,14 @@ namespace deephaven { namespace proto { namespace backplane { namespace grpc { - template -PROTOBUF_CONSTEXPR TreeResponse::TreeResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR TreeResponse::TreeResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct TreeResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR TreeResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TreeResponseDefaultTypeInternal() {} @@ -37,8 +46,14 @@ struct TreeResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TreeResponseDefaultTypeInternal _TreeResponse_default_instance_; - template -PROTOBUF_CONSTEXPR RollupResponse::RollupResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR RollupResponse::RollupResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct RollupResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR RollupResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~RollupResponseDefaultTypeInternal() {} @@ -49,8 +64,14 @@ struct RollupResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RollupResponseDefaultTypeInternal _RollupResponse_default_instance_; - template -PROTOBUF_CONSTEXPR HierarchicalTableViewResponse::HierarchicalTableViewResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR HierarchicalTableViewResponse::HierarchicalTableViewResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct HierarchicalTableViewResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableViewResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableViewResponseDefaultTypeInternal() {} @@ -72,7 +93,13 @@ inline constexpr HierarchicalTableDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR HierarchicalTableDescriptor::HierarchicalTableDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HierarchicalTableDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableDescriptorDefaultTypeInternal() {} @@ -83,8 +110,14 @@ struct HierarchicalTableDescriptorDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableDescriptorDefaultTypeInternal _HierarchicalTableDescriptor_default_instance_; - template -PROTOBUF_CONSTEXPR HierarchicalTableApplyResponse::HierarchicalTableApplyResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR HierarchicalTableApplyResponse::HierarchicalTableApplyResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct HierarchicalTableApplyResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableApplyResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableApplyResponseDefaultTypeInternal() {} @@ -111,7 +144,13 @@ inline constexpr TreeRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR TreeRequest::TreeRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TreeRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR TreeRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TreeRequestDefaultTypeInternal() {} @@ -133,7 +172,13 @@ inline constexpr HierarchicalTableViewKeyTableDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR HierarchicalTableViewKeyTableDescriptor::HierarchicalTableViewKeyTableDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal() {} @@ -153,7 +198,13 @@ inline constexpr HierarchicalTableSourceExportRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HierarchicalTableSourceExportRequest::HierarchicalTableSourceExportRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HierarchicalTableSourceExportRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableSourceExportRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableSourceExportRequestDefaultTypeInternal() {} @@ -175,7 +226,13 @@ inline constexpr HierarchicalTableViewRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HierarchicalTableViewRequest::HierarchicalTableViewRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HierarchicalTableViewRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableViewRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableViewRequestDefaultTypeInternal() {} @@ -197,7 +254,13 @@ inline constexpr HierarchicalTableApplyRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HierarchicalTableApplyRequest::HierarchicalTableApplyRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HierarchicalTableApplyRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HierarchicalTableApplyRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HierarchicalTableApplyRequestDefaultTypeInternal() {} @@ -220,7 +283,13 @@ inline constexpr RollupRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR RollupRequest::RollupRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct RollupRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR RollupRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~RollupRequestDefaultTypeInternal() {} @@ -236,152 +305,152 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[11]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.result_rollup_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.source_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.aggregations_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.include_constituents_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.group_by_columns_), - 0, - 1, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.result_tree_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.source_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.identifier_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.parent_identifier_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.promote_orphans_), - 0, - 1, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.result_hierarchical_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.input_hierarchical_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.filters_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.sorts_), - 0, - 1, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _impl_.snapshot_schema_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _impl_.is_static_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.result_view_id_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.expansions_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.target_), - 0, - ~0u, - ~0u, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_action_column_), - 1, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_.result_table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_.hierarchical_table_id_), - 0, - 1, +const ::uint32_t + TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.result_rollup_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.source_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.aggregations_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.include_constituents_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupRequest, _impl_.group_by_columns_), + 0, + 1, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RollupResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.result_tree_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.source_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.identifier_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.parent_identifier_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeRequest, _impl_.promote_orphans_), + 0, + 1, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TreeResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.result_hierarchical_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.input_hierarchical_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.filters_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, _impl_.sorts_), + 0, + 1, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _impl_.snapshot_schema_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor, _impl_.is_static_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.result_view_id_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.expansions_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_.target_), + 0, + ~0u, + ~0u, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_action_column_), + 1, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_.result_table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, _impl_.hierarchical_table_id_), + 0, + 1, }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, 13, -1, sizeof(::io::deephaven::proto::backplane::grpc::RollupRequest)}, {18, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::RollupResponse)}, {26, 39, -1, sizeof(::io::deephaven::proto::backplane::grpc::TreeRequest)}, @@ -394,7 +463,6 @@ static const ::_pbi::MigrationSchema {115, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse)}, {123, 133, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_RollupRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_RollupResponse_default_instance_._instance, @@ -408,7 +476,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_HierarchicalTableViewResponse_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_HierarchicalTableSourceExportRequest_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fhierarchicaltable_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fhierarchicaltable_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\'deephaven/proto/hierarchicaltable.prot" "o\022!io.deephaven.proto.backplane.grpc\032\033de" "ephaven/proto/table.proto\032\034deephaven/pro" @@ -483,7 +552,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto = { false, false, 2647, @@ -496,28 +565,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fhierarchicalt schemas, file_default_instances, TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto, file_level_service_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fhierarchicaltable_2eproto(&descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto); namespace io { namespace deephaven { namespace proto { @@ -527,47 +577,38 @@ namespace grpc { class RollupRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_rollup_table_id(const RollupRequest* msg); - static void set_has_result_rollup_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& source_table_id(const RollupRequest* msg); - static void set_has_source_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_Internal::result_rollup_table_id(const RollupRequest* msg) { - return *msg->_impl_.result_rollup_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_Internal::source_table_id(const RollupRequest* msg) { - return *msg->_impl_.source_table_id_; -} void RollupRequest::clear_result_rollup_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_rollup_table_id_ != nullptr) _impl_.result_rollup_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void RollupRequest::clear_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_table_id_ != nullptr) _impl_.source_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } void RollupRequest::clear_aggregations() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.aggregations_.Clear(); } RollupRequest::RollupRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.RollupRequest) } inline PROTOBUF_NDEBUG_INLINE RollupRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::RollupRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, aggregations_{visibility, arena, from.aggregations_}, @@ -576,19 +617,23 @@ inline PROTOBUF_NDEBUG_INLINE RollupRequest::Impl_::Impl_( RollupRequest::RollupRequest( ::google::protobuf::Arena* arena, const RollupRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE RollupRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_rollup_table_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_rollup_table_id_) - : nullptr; - _impl_.source_table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_table_id_) - : nullptr; + _impl_.result_rollup_table_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_rollup_table_id_) + : nullptr; + _impl_.source_table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.source_table_id_) + : nullptr; _impl_.include_constituents_ = from._impl_.include_constituents_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.RollupRequest) @@ -621,38 +666,34 @@ inline void RollupRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void RollupRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RollupRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.aggregations_.Clear(); - _impl_.group_by_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_rollup_table_id_ != nullptr); - _impl_.result_rollup_table_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_table_id_ != nullptr); - _impl_.source_table_id_->Clear(); - } - } - _impl_.include_constituents_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* RollupRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + RollupRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_RollupRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &RollupRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &RollupRequest::ByteSizeLong, + &RollupRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_._cached_size_), + false, + }, + &RollupRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* RollupRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 72, 2> RollupRequest::_table_ = { { @@ -665,8 +706,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 72, 2> RollupRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_RollupRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RollupRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; @@ -715,114 +760,156 @@ const ::_pbi::TcParseTable<3, 5, 3, 72, 2> RollupRequest::_table_ = { }}, }; -::uint8_t* RollupRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RollupRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_rollup_table_id(this), - _Internal::result_rollup_table_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_table_id(this), - _Internal::source_table_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_aggregations_size()); i < n; i++) { - const auto& repfield = this->_internal_aggregations().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - // bool include_constituents = 4; - if (this->_internal_include_constituents() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_include_constituents(), target); - } - - // repeated string group_by_columns = 5; - for (int i = 0, n = this->_internal_group_by_columns_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RollupRequest) - return target; -} - -::size_t RollupRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RollupRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void RollupRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RollupRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; - total_size += 1UL * this->_internal_aggregations_size(); - for (const auto& msg : this->_internal_aggregations()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string group_by_columns = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_columns().size()); - for (int i = 0, n = _internal_group_by_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_columns().Get(i)); - } + _impl_.aggregations_.Clear(); + _impl_.group_by_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_rollup_table_id_); + ABSL_DCHECK(_impl_.result_rollup_table_id_ != nullptr); + _impl_.result_rollup_table_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_table_id_); + ABSL_DCHECK(_impl_.source_table_id_ != nullptr); + _impl_.source_table_id_->Clear(); } - - } - // bool include_constituents = 4; - if (this->_internal_include_constituents() != 0) { - total_size += 2; } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData RollupRequest::_class_data_ = { - RollupRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* RollupRequest::GetClassData() const { - return &_class_data_; + _impl_.include_constituents_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void RollupRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* RollupRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const RollupRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* RollupRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const RollupRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RollupRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_rollup_table_id_, this_._impl_.result_rollup_table_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_table_id_, this_._impl_.source_table_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_aggregations_size()); + i < n; i++) { + const auto& repfield = this_._internal_aggregations().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + // bool include_constituents = 4; + if (this_._internal_include_constituents() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_include_constituents(), target); + } + + // repeated string group_by_columns = 5; + for (int i = 0, n = this_._internal_group_by_columns_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RollupRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t RollupRequest::ByteSizeLong(const MessageLite& base) { + const RollupRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t RollupRequest::ByteSizeLong() const { + const RollupRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RollupRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; + { + total_size += 1UL * this_._internal_aggregations_size(); + for (const auto& msg : this_._internal_aggregations()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string group_by_columns = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_columns().size()); + for (int i = 0, n = this_._internal_group_by_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_rollup_table_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_table_id_); + } + } + { + // bool include_constituents = 4; + if (this_._internal_include_constituents() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void RollupRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.RollupRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -834,17 +921,28 @@ void RollupRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::googl cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_rollup_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_rollup_table_id()); + ABSL_DCHECK(from._impl_.result_rollup_table_id_ != nullptr); + if (_this->_impl_.result_rollup_table_id_ == nullptr) { + _this->_impl_.result_rollup_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_rollup_table_id_); + } else { + _this->_impl_.result_rollup_table_id_->MergeFrom(*from._impl_.result_rollup_table_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_source_table_id()); + ABSL_DCHECK(from._impl_.source_table_id_ != nullptr); + if (_this->_impl_.source_table_id_ == nullptr) { + _this->_impl_.source_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_table_id_); + } else { + _this->_impl_.source_table_id_->MergeFrom(*from._impl_.source_table_id_); + } } } if (from._internal_include_constituents() != 0) { - _this->_internal_set_include_constituents(from._internal_include_constituents()); + _this->_impl_.include_constituents_ = from._impl_.include_constituents_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -855,13 +953,7 @@ void RollupRequest::CopyFrom(const RollupRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool RollupRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* RollupRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void RollupRequest::InternalSwap(RollupRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -877,9 +969,7 @@ void RollupRequest::InternalSwap(RollupRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata RollupRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -888,13 +978,21 @@ class RollupResponse::_Internal { }; RollupResponse::RollupResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.RollupResponse) } RollupResponse::RollupResponse( ::google::protobuf::Arena* arena, const RollupResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE RollupResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -903,6 +1001,61 @@ RollupResponse::RollupResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.RollupResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + RollupResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_RollupResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &RollupResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &RollupResponse::ByteSizeLong, + &RollupResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(RollupResponse, _impl_._cached_size_), + false, + }, + &RollupResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* RollupResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> RollupResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RollupResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -912,51 +1065,40 @@ RollupResponse::RollupResponse( ::google::protobuf::Metadata RollupResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[1]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class TreeRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_tree_table_id(const TreeRequest* msg); - static void set_has_result_tree_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& source_table_id(const TreeRequest* msg); - static void set_has_source_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_Internal::result_tree_table_id(const TreeRequest* msg) { - return *msg->_impl_.result_tree_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_Internal::source_table_id(const TreeRequest* msg) { - return *msg->_impl_.source_table_id_; -} void TreeRequest::clear_result_tree_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_tree_table_id_ != nullptr) _impl_.result_tree_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void TreeRequest::clear_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_table_id_ != nullptr) _impl_.source_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } TreeRequest::TreeRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TreeRequest) } inline PROTOBUF_NDEBUG_INLINE TreeRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TreeRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, identifier_column_(arena, from.identifier_column_), @@ -965,19 +1107,23 @@ inline PROTOBUF_NDEBUG_INLINE TreeRequest::Impl_::Impl_( TreeRequest::TreeRequest( ::google::protobuf::Arena* arena, const TreeRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TreeRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_tree_table_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_tree_table_id_) - : nullptr; - _impl_.source_table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_table_id_) - : nullptr; + _impl_.result_tree_table_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_tree_table_id_) + : nullptr; + _impl_.source_table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.source_table_id_) + : nullptr; _impl_.promote_orphans_ = from._impl_.promote_orphans_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TreeRequest) @@ -1012,38 +1158,34 @@ inline void TreeRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TreeRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TreeRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.identifier_column_.ClearToEmpty(); - _impl_.parent_identifier_column_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_tree_table_id_ != nullptr); - _impl_.result_tree_table_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_table_id_ != nullptr); - _impl_.source_table_id_->Clear(); - } - } - _impl_.promote_orphans_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TreeRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TreeRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TreeRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TreeRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TreeRequest::ByteSizeLong, + &TreeRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_._cached_size_), + false, + }, + &TreeRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TreeRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 2, 95, 2> TreeRequest::_table_ = { { @@ -1056,8 +1198,12 @@ const ::_pbi::TcParseTable<3, 5, 2, 95, 2> TreeRequest::_table_ = { 5, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TreeRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TreeRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; @@ -1106,114 +1252,147 @@ const ::_pbi::TcParseTable<3, 5, 2, 95, 2> TreeRequest::_table_ = { }}, }; -::uint8_t* TreeRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TreeRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_tree_table_id(this), - _Internal::result_tree_table_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_table_id(this), - _Internal::source_table_id(this).GetCachedSize(), target, stream); - } - - // string identifier_column = 3; - if (!this->_internal_identifier_column().empty()) { - const std::string& _s = this->_internal_identifier_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // string parent_identifier_column = 4; - if (!this->_internal_parent_identifier_column().empty()) { - const std::string& _s = this->_internal_parent_identifier_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - // bool promote_orphans = 5; - if (this->_internal_promote_orphans() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_promote_orphans(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TreeRequest) - return target; -} - -::size_t TreeRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TreeRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TreeRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TreeRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string identifier_column = 3; - if (!this->_internal_identifier_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_identifier_column()); - } - - // string parent_identifier_column = 4; - if (!this->_internal_parent_identifier_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_parent_identifier_column()); - } - + _impl_.identifier_column_.ClearToEmpty(); + _impl_.parent_identifier_column_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_tree_table_id_); + ABSL_DCHECK(_impl_.result_tree_table_id_ != nullptr); + _impl_.result_tree_table_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_table_id_); + ABSL_DCHECK(_impl_.source_table_id_ != nullptr); + _impl_.source_table_id_->Clear(); } - - } - // bool promote_orphans = 5; - if (this->_internal_promote_orphans() != 0) { - total_size += 2; } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TreeRequest::_class_data_ = { - TreeRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TreeRequest::GetClassData() const { - return &_class_data_; + _impl_.promote_orphans_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TreeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TreeRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TreeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TreeRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TreeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TreeRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_tree_table_id_, this_._impl_.result_tree_table_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_table_id_, this_._impl_.source_table_id_->GetCachedSize(), target, + stream); + } + + // string identifier_column = 3; + if (!this_._internal_identifier_column().empty()) { + const std::string& _s = this_._internal_identifier_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // string parent_identifier_column = 4; + if (!this_._internal_parent_identifier_column().empty()) { + const std::string& _s = this_._internal_parent_identifier_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + // bool promote_orphans = 5; + if (this_._internal_promote_orphans() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_promote_orphans(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TreeRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TreeRequest::ByteSizeLong(const MessageLite& base) { + const TreeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TreeRequest::ByteSizeLong() const { + const TreeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TreeRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string identifier_column = 3; + if (!this_._internal_identifier_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_identifier_column()); + } + // string parent_identifier_column = 4; + if (!this_._internal_parent_identifier_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_parent_identifier_column()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_tree_table_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_table_id_); + } + } + { + // bool promote_orphans = 5; + if (this_._internal_promote_orphans() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TreeRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TreeRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -1228,17 +1407,28 @@ void TreeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_tree_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_tree_table_id()); + ABSL_DCHECK(from._impl_.result_tree_table_id_ != nullptr); + if (_this->_impl_.result_tree_table_id_ == nullptr) { + _this->_impl_.result_tree_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_tree_table_id_); + } else { + _this->_impl_.result_tree_table_id_->MergeFrom(*from._impl_.result_tree_table_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_source_table_id()); + ABSL_DCHECK(from._impl_.source_table_id_ != nullptr); + if (_this->_impl_.source_table_id_ == nullptr) { + _this->_impl_.source_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_table_id_); + } else { + _this->_impl_.source_table_id_->MergeFrom(*from._impl_.source_table_id_); + } } } if (from._internal_promote_orphans() != 0) { - _this->_internal_set_promote_orphans(from._internal_promote_orphans()); + _this->_impl_.promote_orphans_ = from._impl_.promote_orphans_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1249,13 +1439,7 @@ void TreeRequest::CopyFrom(const TreeRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TreeRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TreeRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TreeRequest::InternalSwap(TreeRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1273,9 +1457,7 @@ void TreeRequest::InternalSwap(TreeRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TreeRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1284,13 +1466,21 @@ class TreeResponse::_Internal { }; TreeResponse::TreeResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TreeResponse) } TreeResponse::TreeResponse( ::google::protobuf::Arena* arena, const TreeResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TreeResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -1299,6 +1489,61 @@ TreeResponse::TreeResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TreeResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TreeResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_TreeResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TreeResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &TreeResponse::ByteSizeLong, + &TreeResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TreeResponse, _impl_._cached_size_), + false, + }, + &TreeResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TreeResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> TreeResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TreeResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -1308,59 +1553,48 @@ TreeResponse::TreeResponse( ::google::protobuf::Metadata TreeResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[3]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HierarchicalTableApplyRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_hierarchical_table_id(const HierarchicalTableApplyRequest* msg); - static void set_has_result_hierarchical_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& input_hierarchical_table_id(const HierarchicalTableApplyRequest* msg); - static void set_has_input_hierarchical_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_Internal::result_hierarchical_table_id(const HierarchicalTableApplyRequest* msg) { - return *msg->_impl_.result_hierarchical_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_Internal::input_hierarchical_table_id(const HierarchicalTableApplyRequest* msg) { - return *msg->_impl_.input_hierarchical_table_id_; -} void HierarchicalTableApplyRequest::clear_result_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_hierarchical_table_id_ != nullptr) _impl_.result_hierarchical_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void HierarchicalTableApplyRequest::clear_input_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_hierarchical_table_id_ != nullptr) _impl_.input_hierarchical_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } void HierarchicalTableApplyRequest::clear_filters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filters_.Clear(); } void HierarchicalTableApplyRequest::clear_sorts() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sorts_.Clear(); } HierarchicalTableApplyRequest::HierarchicalTableApplyRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) } inline PROTOBUF_NDEBUG_INLINE HierarchicalTableApplyRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, filters_{visibility, arena, from.filters_}, @@ -1369,19 +1603,23 @@ inline PROTOBUF_NDEBUG_INLINE HierarchicalTableApplyRequest::Impl_::Impl_( HierarchicalTableApplyRequest::HierarchicalTableApplyRequest( ::google::protobuf::Arena* arena, const HierarchicalTableApplyRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableApplyRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_hierarchical_table_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_hierarchical_table_id_) - : nullptr; - _impl_.input_hierarchical_table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_hierarchical_table_id_) - : nullptr; + _impl_.result_hierarchical_table_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_hierarchical_table_id_) + : nullptr; + _impl_.input_hierarchical_table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.input_hierarchical_table_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) } @@ -1413,37 +1651,34 @@ inline void HierarchicalTableApplyRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HierarchicalTableApplyRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.filters_.Clear(); - _impl_.sorts_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_hierarchical_table_id_ != nullptr); - _impl_.result_hierarchical_table_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.input_hierarchical_table_id_ != nullptr); - _impl_.input_hierarchical_table_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HierarchicalTableApplyRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableApplyRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HierarchicalTableApplyRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableApplyRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HierarchicalTableApplyRequest::ByteSizeLong, + &HierarchicalTableApplyRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_._cached_size_), + false, + }, + &HierarchicalTableApplyRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableApplyRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 4, 0, 2> HierarchicalTableApplyRequest::_table_ = { { @@ -1456,8 +1691,12 @@ const ::_pbi::TcParseTable<2, 4, 4, 0, 2> HierarchicalTableApplyRequest::_table_ 4, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HierarchicalTableApplyRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; {::_pbi::TcParser::FastMtR1, @@ -1495,102 +1734,143 @@ const ::_pbi::TcParseTable<2, 4, 4, 0, 2> HierarchicalTableApplyRequest::_table_ }}, }; -::uint8_t* HierarchicalTableApplyRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_hierarchical_table_id(this), - _Internal::result_hierarchical_table_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::input_hierarchical_table_id(this), - _Internal::input_hierarchical_table_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_filters_size()); i < n; i++) { - const auto& repfield = this->_internal_filters().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; - for (unsigned i = 0, - n = static_cast(this->_internal_sorts_size()); i < n; i++) { - const auto& repfield = this->_internal_sorts().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(4, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - return target; -} - -::size_t HierarchicalTableApplyRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HierarchicalTableApplyRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - total_size += 1UL * this->_internal_filters_size(); - for (const auto& msg : this->_internal_filters()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; - total_size += 1UL * this->_internal_sorts_size(); - for (const auto& msg : this->_internal_sorts()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } + _impl_.filters_.Clear(); + _impl_.sorts_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_hierarchical_table_id_); + ABSL_DCHECK(_impl_.result_hierarchical_table_id_ != nullptr); + _impl_.result_hierarchical_table_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.input_hierarchical_table_id_); - } - + ABSL_DCHECK(_impl_.input_hierarchical_table_id_ != nullptr); + _impl_.input_hierarchical_table_id_->Clear(); + } } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HierarchicalTableApplyRequest::_class_data_ = { - HierarchicalTableApplyRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HierarchicalTableApplyRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HierarchicalTableApplyRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HierarchicalTableApplyRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HierarchicalTableApplyRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HierarchicalTableApplyRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HierarchicalTableApplyRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_hierarchical_table_id_, this_._impl_.result_hierarchical_table_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.input_hierarchical_table_id_, this_._impl_.input_hierarchical_table_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_filters_size()); + i < n; i++) { + const auto& repfield = this_._internal_filters().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; + for (unsigned i = 0, n = static_cast( + this_._internal_sorts_size()); + i < n; i++) { + const auto& repfield = this_._internal_sorts().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HierarchicalTableApplyRequest::ByteSizeLong(const MessageLite& base) { + const HierarchicalTableApplyRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HierarchicalTableApplyRequest::ByteSizeLong() const { + const HierarchicalTableApplyRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; + { + total_size += 1UL * this_._internal_filters_size(); + for (const auto& msg : this_._internal_filters()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; + { + total_size += 1UL * this_._internal_sorts_size(); + for (const auto& msg : this_._internal_sorts()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_hierarchical_table_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.input_hierarchical_table_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HierarchicalTableApplyRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -1603,14 +1883,25 @@ void HierarchicalTableApplyRequest::MergeImpl(::google::protobuf::Message& to_ms cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_hierarchical_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_hierarchical_table_id()); + ABSL_DCHECK(from._impl_.result_hierarchical_table_id_ != nullptr); + if (_this->_impl_.result_hierarchical_table_id_ == nullptr) { + _this->_impl_.result_hierarchical_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_hierarchical_table_id_); + } else { + _this->_impl_.result_hierarchical_table_id_->MergeFrom(*from._impl_.result_hierarchical_table_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_input_hierarchical_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_input_hierarchical_table_id()); + ABSL_DCHECK(from._impl_.input_hierarchical_table_id_ != nullptr); + if (_this->_impl_.input_hierarchical_table_id_ == nullptr) { + _this->_impl_.input_hierarchical_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_hierarchical_table_id_); + } else { + _this->_impl_.input_hierarchical_table_id_->MergeFrom(*from._impl_.input_hierarchical_table_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1621,13 +1912,7 @@ void HierarchicalTableApplyRequest::CopyFrom(const HierarchicalTableApplyRequest MergeFrom(from); } -PROTOBUF_NOINLINE bool HierarchicalTableApplyRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HierarchicalTableApplyRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HierarchicalTableApplyRequest::InternalSwap(HierarchicalTableApplyRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1643,9 +1928,7 @@ void HierarchicalTableApplyRequest::InternalSwap(HierarchicalTableApplyRequest* } ::google::protobuf::Metadata HierarchicalTableApplyRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[4]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1654,13 +1937,21 @@ class HierarchicalTableApplyResponse::_Internal { }; HierarchicalTableApplyResponse::HierarchicalTableApplyResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse) } HierarchicalTableApplyResponse::HierarchicalTableApplyResponse( ::google::protobuf::Arena* arena, const HierarchicalTableApplyResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableApplyResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -1669,6 +1960,61 @@ HierarchicalTableApplyResponse::HierarchicalTableApplyResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableApplyResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_HierarchicalTableApplyResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableApplyResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &HierarchicalTableApplyResponse::ByteSizeLong, + &HierarchicalTableApplyResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyResponse, _impl_._cached_size_), + false, + }, + &HierarchicalTableApplyResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableApplyResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> HierarchicalTableApplyResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -1678,9 +2024,7 @@ HierarchicalTableApplyResponse::HierarchicalTableApplyResponse( ::google::protobuf::Metadata HierarchicalTableApplyResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[5]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1689,25 +2033,33 @@ class HierarchicalTableDescriptor::_Internal { }; HierarchicalTableDescriptor::HierarchicalTableDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) } inline PROTOBUF_NDEBUG_INLINE HierarchicalTableDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor& from_msg) : snapshot_schema_(arena, from.snapshot_schema_), _cached_size_{0} {} HierarchicalTableDescriptor::HierarchicalTableDescriptor( ::google::protobuf::Arena* arena, const HierarchicalTableDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.is_static_ = from._impl_.is_static_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) @@ -1733,25 +2085,34 @@ inline void HierarchicalTableDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HierarchicalTableDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.snapshot_schema_.ClearToEmpty(); - _impl_.is_static_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HierarchicalTableDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HierarchicalTableDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HierarchicalTableDescriptor::ByteSizeLong, + &HierarchicalTableDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableDescriptor, _impl_._cached_size_), + false, + }, + &HierarchicalTableDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HierarchicalTableDescriptor::_table_ = { { @@ -1764,8 +2125,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HierarchicalTableDescriptor::_table_ = 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_HierarchicalTableDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool is_static = 2; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -1788,66 +2153,86 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HierarchicalTableDescriptor::_table_ = }}, }; -::uint8_t* HierarchicalTableDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes snapshot_schema = 1; - if (!this->_internal_snapshot_schema().empty()) { - const std::string& _s = this->_internal_snapshot_schema(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - // bool is_static = 2; - if (this->_internal_is_static() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_is_static(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - return target; -} - -::size_t HierarchicalTableDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HierarchicalTableDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bytes snapshot_schema = 1; - if (!this->_internal_snapshot_schema().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_snapshot_schema()); - } - - // bool is_static = 2; - if (this->_internal_is_static() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HierarchicalTableDescriptor::_class_data_ = { - HierarchicalTableDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HierarchicalTableDescriptor::GetClassData() const { - return &_class_data_; + _impl_.snapshot_schema_.ClearToEmpty(); + _impl_.is_static_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HierarchicalTableDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HierarchicalTableDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HierarchicalTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HierarchicalTableDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HierarchicalTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes snapshot_schema = 1; + if (!this_._internal_snapshot_schema().empty()) { + const std::string& _s = this_._internal_snapshot_schema(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // bool is_static = 2; + if (this_._internal_is_static() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_is_static(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HierarchicalTableDescriptor::ByteSizeLong(const MessageLite& base) { + const HierarchicalTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HierarchicalTableDescriptor::ByteSizeLong() const { + const HierarchicalTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // bytes snapshot_schema = 1; + if (!this_._internal_snapshot_schema().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_snapshot_schema()); + } + // bool is_static = 2; + if (this_._internal_is_static() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HierarchicalTableDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) @@ -1859,7 +2244,7 @@ void HierarchicalTableDescriptor::MergeImpl(::google::protobuf::Message& to_msg, _this->_internal_set_snapshot_schema(from._internal_snapshot_schema()); } if (from._internal_is_static() != 0) { - _this->_internal_set_is_static(from._internal_is_static()); + _this->_impl_.is_static_ = from._impl_.is_static_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1871,13 +2256,7 @@ void HierarchicalTableDescriptor::CopyFrom(const HierarchicalTableDescriptor& fr MergeFrom(from); } -PROTOBUF_NOINLINE bool HierarchicalTableDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HierarchicalTableDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HierarchicalTableDescriptor::InternalSwap(HierarchicalTableDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1888,45 +2267,22 @@ void HierarchicalTableDescriptor::InternalSwap(HierarchicalTableDescriptor* PROT } ::google::protobuf::Metadata HierarchicalTableDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HierarchicalTableViewRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_._has_bits_); + 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_._has_bits_); static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_view_id(const HierarchicalTableViewRequest* msg); - static void set_has_result_view_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& hierarchical_table_id(const HierarchicalTableViewRequest* msg); - static const ::io::deephaven::proto::backplane::grpc::Ticket& existing_view_id(const HierarchicalTableViewRequest* msg); - static const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& expansions(const HierarchicalTableViewRequest* msg); - static void set_has_expansions(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_Internal::result_view_id(const HierarchicalTableViewRequest* msg) { - return *msg->_impl_.result_view_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_Internal::hierarchical_table_id(const HierarchicalTableViewRequest* msg) { - return *msg->_impl_.target_.hierarchical_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_Internal::existing_view_id(const HierarchicalTableViewRequest* msg) { - return *msg->_impl_.target_.existing_view_id_; -} -const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& HierarchicalTableViewRequest::_Internal::expansions(const HierarchicalTableViewRequest* msg) { - return *msg->_impl_.expansions_; -} void HierarchicalTableViewRequest::clear_result_view_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_view_id_ != nullptr) _impl_.result_view_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -1944,10 +2300,12 @@ void HierarchicalTableViewRequest::set_allocated_hierarchical_table_id(::io::dee // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) } void HierarchicalTableViewRequest::clear_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (target_case() == kHierarchicalTableId) { if (GetArena() == nullptr) { delete _impl_.target_.hierarchical_table_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.target_.hierarchical_table_id_); } clear_has_target(); } @@ -1966,22 +2324,28 @@ void HierarchicalTableViewRequest::set_allocated_existing_view_id(::io::deephave // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) } void HierarchicalTableViewRequest::clear_existing_view_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (target_case() == kExistingViewId) { if (GetArena() == nullptr) { delete _impl_.target_.existing_view_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.target_.existing_view_id_); } clear_has_target(); } } HierarchicalTableViewRequest::HierarchicalTableViewRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) } inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, target_{}, @@ -1990,27 +2354,31 @@ inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewRequest::Impl_::Impl_( HierarchicalTableViewRequest::HierarchicalTableViewRequest( ::google::protobuf::Arena* arena, const HierarchicalTableViewRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableViewRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_view_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_view_id_) - : nullptr; - _impl_.expansions_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>(arena, *from._impl_.expansions_) - : nullptr; + _impl_.result_view_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_view_id_) + : nullptr; + _impl_.expansions_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>( + arena, *from._impl_.expansions_) + : nullptr; switch (target_case()) { case TARGET_NOT_SET: break; case kHierarchicalTableId: - _impl_.target_.hierarchical_table_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.hierarchical_table_id_); + _impl_.target_.hierarchical_table_id_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.hierarchical_table_id_); break; case kExistingViewId: - _impl_.target_.existing_view_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.existing_view_id_); + _impl_.target_.existing_view_id_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.existing_view_id_); break; } @@ -2049,17 +2417,21 @@ inline void HierarchicalTableViewRequest::SharedDtor() { void HierarchicalTableViewRequest::clear_target() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (target_case()) { case kHierarchicalTableId: { if (GetArena() == nullptr) { delete _impl_.target_.hierarchical_table_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.target_.hierarchical_table_id_); } break; } case kExistingViewId: { if (GetArena() == nullptr) { delete _impl_.target_.existing_view_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.target_.existing_view_id_); } break; } @@ -2071,36 +2443,34 @@ void HierarchicalTableViewRequest::clear_target() { } -PROTOBUF_NOINLINE void HierarchicalTableViewRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_view_id_ != nullptr); - _impl_.result_view_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.expansions_ != nullptr); - _impl_.expansions_->Clear(); - } - } - clear_target(); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HierarchicalTableViewRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableViewRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HierarchicalTableViewRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableViewRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HierarchicalTableViewRequest::ByteSizeLong, + &HierarchicalTableViewRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_._cached_size_), + false, + }, + &HierarchicalTableViewRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableViewRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 4, 4, 0, 2> HierarchicalTableViewRequest::_table_ = { { @@ -2113,8 +2483,12 @@ const ::_pbi::TcParseTable<1, 4, 4, 0, 2> HierarchicalTableViewRequest::_table_ 4, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HierarchicalTableViewRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; {::_pbi::TcParser::FastMtS1, @@ -2146,107 +2520,137 @@ const ::_pbi::TcParseTable<1, 4, 4, 0, 2> HierarchicalTableViewRequest::_table_ }}, }; -::uint8_t* HierarchicalTableViewRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_view_id(this), - _Internal::result_view_id(this).GetCachedSize(), target, stream); - } - - switch (target_case()) { - case kHierarchicalTableId: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::hierarchical_table_id(this), - _Internal::hierarchical_table_id(this).GetCachedSize(), target, stream); - break; - } - case kExistingViewId: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::existing_view_id(this), - _Internal::existing_view_id(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::expansions(this), - _Internal::expansions(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - return target; -} - -::size_t HierarchicalTableViewRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HierarchicalTableViewRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_view_id_); + ABSL_DCHECK(_impl_.result_view_id_ != nullptr); + _impl_.result_view_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.expansions_); - } - - } - switch (target_case()) { - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - case kHierarchicalTableId: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.target_.hierarchical_table_id_); - break; - } - // .io.deephaven.proto.backplane.grpc.Ticket existing_view_id = 3; - case kExistingViewId: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.target_.existing_view_id_); - break; - } - case TARGET_NOT_SET: { - break; + ABSL_DCHECK(_impl_.expansions_ != nullptr); + _impl_.expansions_->Clear(); } } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HierarchicalTableViewRequest::_class_data_ = { - HierarchicalTableViewRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HierarchicalTableViewRequest::GetClassData() const { - return &_class_data_; + clear_target(); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HierarchicalTableViewRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HierarchicalTableViewRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HierarchicalTableViewRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HierarchicalTableViewRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HierarchicalTableViewRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_view_id_, this_._impl_.result_view_id_->GetCachedSize(), target, + stream); + } + + switch (this_.target_case()) { + case kHierarchicalTableId: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.target_.hierarchical_table_id_, this_._impl_.target_.hierarchical_table_id_->GetCachedSize(), target, + stream); + break; + } + case kExistingViewId: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.target_.existing_view_id_, this_._impl_.target_.existing_view_id_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.expansions_, this_._impl_.expansions_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HierarchicalTableViewRequest::ByteSizeLong(const MessageLite& base) { + const HierarchicalTableViewRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HierarchicalTableViewRequest::ByteSizeLong() const { + const HierarchicalTableViewRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_view_id_); + } + // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.expansions_); + } + } + switch (this_.target_case()) { + // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; + case kHierarchicalTableId: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.target_.hierarchical_table_id_); + break; + } + // .io.deephaven.proto.backplane.grpc.Ticket existing_view_id = 3; + case kExistingViewId: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.target_.existing_view_id_); + break; + } + case TARGET_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HierarchicalTableViewRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -2255,27 +2659,56 @@ void HierarchicalTableViewRequest::MergeImpl(::google::protobuf::Message& to_msg cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_view_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_view_id()); + ABSL_DCHECK(from._impl_.result_view_id_ != nullptr); + if (_this->_impl_.result_view_id_ == nullptr) { + _this->_impl_.result_view_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_view_id_); + } else { + _this->_impl_.result_view_id_->MergeFrom(*from._impl_.result_view_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_expansions()->::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor::MergeFrom( - from._internal_expansions()); + ABSL_DCHECK(from._impl_.expansions_ != nullptr); + if (_this->_impl_.expansions_ == nullptr) { + _this->_impl_.expansions_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>(arena, *from._impl_.expansions_); + } else { + _this->_impl_.expansions_->MergeFrom(*from._impl_.expansions_); + } } } - switch (from.target_case()) { - case kHierarchicalTableId: { - _this->_internal_mutable_hierarchical_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_hierarchical_table_id()); - break; - } - case kExistingViewId: { - _this->_internal_mutable_existing_view_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_existing_view_id()); - break; + _this->_impl_._has_bits_[0] |= cached_has_bits; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_target(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case TARGET_NOT_SET: { - break; + + switch (oneof_from_case) { + case kHierarchicalTableId: { + if (oneof_needs_init) { + _this->_impl_.target_.hierarchical_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.hierarchical_table_id_); + } else { + _this->_impl_.target_.hierarchical_table_id_->MergeFrom(from._internal_hierarchical_table_id()); + } + break; + } + case kExistingViewId: { + if (oneof_needs_init) { + _this->_impl_.target_.existing_view_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.existing_view_id_); + } else { + _this->_impl_.target_.existing_view_id_->MergeFrom(from._internal_existing_view_id()); + } + break; + } + case TARGET_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -2288,13 +2721,7 @@ void HierarchicalTableViewRequest::CopyFrom(const HierarchicalTableViewRequest& MergeFrom(from); } -PROTOBUF_NOINLINE bool HierarchicalTableViewRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HierarchicalTableViewRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HierarchicalTableViewRequest::InternalSwap(HierarchicalTableViewRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -2310,42 +2737,35 @@ void HierarchicalTableViewRequest::InternalSwap(HierarchicalTableViewRequest* PR } ::google::protobuf::Metadata HierarchicalTableViewRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[7]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HierarchicalTableViewKeyTableDescriptor::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& key_table_id(const HierarchicalTableViewKeyTableDescriptor* msg); - static void set_has_key_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_key_table_action_column(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewKeyTableDescriptor::_Internal::key_table_id(const HierarchicalTableViewKeyTableDescriptor* msg) { - return *msg->_impl_.key_table_id_; -} void HierarchicalTableViewKeyTableDescriptor::clear_key_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.key_table_id_ != nullptr) _impl_.key_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } HierarchicalTableViewKeyTableDescriptor::HierarchicalTableViewKeyTableDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) } inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewKeyTableDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, key_table_action_column_(arena, from.key_table_action_column_) {} @@ -2353,16 +2773,20 @@ inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewKeyTableDescriptor::Impl_::Im HierarchicalTableViewKeyTableDescriptor::HierarchicalTableViewKeyTableDescriptor( ::google::protobuf::Arena* arena, const HierarchicalTableViewKeyTableDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableViewKeyTableDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.key_table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.key_table_id_) - : nullptr; + _impl_.key_table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.key_table_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) } @@ -2388,34 +2812,34 @@ inline void HierarchicalTableViewKeyTableDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HierarchicalTableViewKeyTableDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.key_table_action_column_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.key_table_id_ != nullptr); - _impl_.key_table_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HierarchicalTableViewKeyTableDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableViewKeyTableDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HierarchicalTableViewKeyTableDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableViewKeyTableDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HierarchicalTableViewKeyTableDescriptor::ByteSizeLong, + &HierarchicalTableViewKeyTableDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_._cached_size_), + false, + }, + &HierarchicalTableViewKeyTableDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableViewKeyTableDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 105, 2> HierarchicalTableViewKeyTableDescriptor::_table_ = { { @@ -2428,8 +2852,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 105, 2> HierarchicalTableViewKeyTableDescrip 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HierarchicalTableViewKeyTableDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string key_table_action_column = 2; {::_pbi::TcParser::FastUS1, @@ -2455,75 +2883,103 @@ const ::_pbi::TcParseTable<1, 2, 1, 105, 2> HierarchicalTableViewKeyTableDescrip }}, }; -::uint8_t* HierarchicalTableViewKeyTableDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::key_table_id(this), - _Internal::key_table_id(this).GetCachedSize(), target, stream); - } - - // optional string key_table_action_column = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_key_table_action_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - return target; -} - -::size_t HierarchicalTableViewKeyTableDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HierarchicalTableViewKeyTableDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // optional string key_table_action_column = 2; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_key_table_action_column()); + _impl_.key_table_action_column_.ClearNonDefaultToEmpty(); } - - // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.key_table_id_); + ABSL_DCHECK(_impl_.key_table_id_ != nullptr); + _impl_.key_table_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HierarchicalTableViewKeyTableDescriptor::_class_data_ = { - HierarchicalTableViewKeyTableDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HierarchicalTableViewKeyTableDescriptor::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HierarchicalTableViewKeyTableDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HierarchicalTableViewKeyTableDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HierarchicalTableViewKeyTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HierarchicalTableViewKeyTableDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HierarchicalTableViewKeyTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.key_table_id_, this_._impl_.key_table_id_->GetCachedSize(), target, + stream); + } + + // optional string key_table_action_column = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_key_table_action_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HierarchicalTableViewKeyTableDescriptor::ByteSizeLong(const MessageLite& base) { + const HierarchicalTableViewKeyTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HierarchicalTableViewKeyTableDescriptor::ByteSizeLong() const { + const HierarchicalTableViewKeyTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional string key_table_action_column = 2; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_key_table_action_column()); + } + // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.key_table_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HierarchicalTableViewKeyTableDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -2535,10 +2991,16 @@ void HierarchicalTableViewKeyTableDescriptor::MergeImpl(::google::protobuf::Mess _this->_internal_set_key_table_action_column(from._internal_key_table_action_column()); } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_key_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_key_table_id()); + ABSL_DCHECK(from._impl_.key_table_id_ != nullptr); + if (_this->_impl_.key_table_id_ == nullptr) { + _this->_impl_.key_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.key_table_id_); + } else { + _this->_impl_.key_table_id_->MergeFrom(*from._impl_.key_table_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2549,13 +3011,7 @@ void HierarchicalTableViewKeyTableDescriptor::CopyFrom(const HierarchicalTableVi MergeFrom(from); } -PROTOBUF_NOINLINE bool HierarchicalTableViewKeyTableDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HierarchicalTableViewKeyTableDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HierarchicalTableViewKeyTableDescriptor::InternalSwap(HierarchicalTableViewKeyTableDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2567,9 +3023,7 @@ void HierarchicalTableViewKeyTableDescriptor::InternalSwap(HierarchicalTableView } ::google::protobuf::Metadata HierarchicalTableViewKeyTableDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[8]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2578,13 +3032,21 @@ class HierarchicalTableViewResponse::_Internal { }; HierarchicalTableViewResponse::HierarchicalTableViewResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse) } HierarchicalTableViewResponse::HierarchicalTableViewResponse( ::google::protobuf::Arena* arena, const HierarchicalTableViewResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableViewResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2593,6 +3055,61 @@ HierarchicalTableViewResponse::HierarchicalTableViewResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableViewResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_HierarchicalTableViewResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableViewResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &HierarchicalTableViewResponse::ByteSizeLong, + &HierarchicalTableViewResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableViewResponse, _impl_._cached_size_), + false, + }, + &HierarchicalTableViewResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableViewResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> HierarchicalTableViewResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2602,70 +3119,63 @@ HierarchicalTableViewResponse::HierarchicalTableViewResponse( ::google::protobuf::Metadata HierarchicalTableViewResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[9]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HierarchicalTableSourceExportRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_table_id(const HierarchicalTableSourceExportRequest* msg); - static void set_has_result_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& hierarchical_table_id(const HierarchicalTableSourceExportRequest* msg); - static void set_has_hierarchical_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_Internal::result_table_id(const HierarchicalTableSourceExportRequest* msg) { - return *msg->_impl_.result_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_Internal::hierarchical_table_id(const HierarchicalTableSourceExportRequest* msg) { - return *msg->_impl_.hierarchical_table_id_; -} void HierarchicalTableSourceExportRequest::clear_result_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_table_id_ != nullptr) _impl_.result_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void HierarchicalTableSourceExportRequest::clear_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.hierarchical_table_id_ != nullptr) _impl_.hierarchical_table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } HierarchicalTableSourceExportRequest::HierarchicalTableSourceExportRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) } inline PROTOBUF_NDEBUG_INLINE HierarchicalTableSourceExportRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} HierarchicalTableSourceExportRequest::HierarchicalTableSourceExportRequest( ::google::protobuf::Arena* arena, const HierarchicalTableSourceExportRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HierarchicalTableSourceExportRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_table_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_table_id_) - : nullptr; - _impl_.hierarchical_table_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.hierarchical_table_id_) - : nullptr; + _impl_.result_table_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_table_id_) + : nullptr; + _impl_.hierarchical_table_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.hierarchical_table_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) } @@ -2695,35 +3205,34 @@ inline void HierarchicalTableSourceExportRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HierarchicalTableSourceExportRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_table_id_ != nullptr); - _impl_.result_table_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.hierarchical_table_id_ != nullptr); - _impl_.hierarchical_table_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HierarchicalTableSourceExportRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HierarchicalTableSourceExportRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HierarchicalTableSourceExportRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HierarchicalTableSourceExportRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HierarchicalTableSourceExportRequest::ByteSizeLong, + &HierarchicalTableSourceExportRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_._cached_size_), + false, + }, + &HierarchicalTableSourceExportRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HierarchicalTableSourceExportRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> HierarchicalTableSourceExportRequest::_table_ = { { @@ -2736,8 +3245,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> HierarchicalTableSourceExportRequest:: 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HierarchicalTableSourceExportRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; {::_pbi::TcParser::FastMtS1, @@ -2761,74 +3274,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> HierarchicalTableSourceExportRequest:: }}, }; -::uint8_t* HierarchicalTableSourceExportRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_table_id(this), - _Internal::result_table_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::hierarchical_table_id(this), - _Internal::hierarchical_table_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - return target; -} - -::size_t HierarchicalTableSourceExportRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HierarchicalTableSourceExportRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_table_id_); + ABSL_DCHECK(_impl_.result_table_id_ != nullptr); + _impl_.result_table_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.hierarchical_table_id_); + ABSL_DCHECK(_impl_.hierarchical_table_id_ != nullptr); + _impl_.hierarchical_table_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HierarchicalTableSourceExportRequest::_class_data_ = { - HierarchicalTableSourceExportRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HierarchicalTableSourceExportRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HierarchicalTableSourceExportRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HierarchicalTableSourceExportRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HierarchicalTableSourceExportRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HierarchicalTableSourceExportRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HierarchicalTableSourceExportRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_table_id_, this_._impl_.result_table_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.hierarchical_table_id_, this_._impl_.hierarchical_table_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HierarchicalTableSourceExportRequest::ByteSizeLong(const MessageLite& base) { + const HierarchicalTableSourceExportRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HierarchicalTableSourceExportRequest::ByteSizeLong() const { + const HierarchicalTableSourceExportRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_table_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.hierarchical_table_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HierarchicalTableSourceExportRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -2837,14 +3379,25 @@ void HierarchicalTableSourceExportRequest::MergeImpl(::google::protobuf::Message cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_table_id()); + ABSL_DCHECK(from._impl_.result_table_id_ != nullptr); + if (_this->_impl_.result_table_id_ == nullptr) { + _this->_impl_.result_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_table_id_); + } else { + _this->_impl_.result_table_id_->MergeFrom(*from._impl_.result_table_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_hierarchical_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_hierarchical_table_id()); + ABSL_DCHECK(from._impl_.hierarchical_table_id_ != nullptr); + if (_this->_impl_.hierarchical_table_id_ == nullptr) { + _this->_impl_.hierarchical_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.hierarchical_table_id_); + } else { + _this->_impl_.hierarchical_table_id_->MergeFrom(*from._impl_.hierarchical_table_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2855,13 +3408,7 @@ void HierarchicalTableSourceExportRequest::CopyFrom(const HierarchicalTableSourc MergeFrom(from); } -PROTOBUF_NOINLINE bool HierarchicalTableSourceExportRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HierarchicalTableSourceExportRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HierarchicalTableSourceExportRequest::InternalSwap(HierarchicalTableSourceExportRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -2875,9 +3422,7 @@ void HierarchicalTableSourceExportRequest::InternalSwap(HierarchicalTableSourceE } ::google::protobuf::Metadata HierarchicalTableSourceExportRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fhierarchicaltable_2eproto[10]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -2890,4 +3435,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.h index 6cd28312720..234e4f3c4e7 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/hierarchicaltable.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fhierarchicaltable_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fhierarchicaltable_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -117,20 +111,17 @@ namespace grpc { // ------------------------------------------------------------------- -class TreeResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TreeResponse) */ { +class TreeResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TreeResponse) */ { public: inline TreeResponse() : TreeResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR TreeResponse(::google::protobuf::internal::ConstantInitialized); - - inline TreeResponse(const TreeResponse& from) - : TreeResponse(nullptr, from) {} - TreeResponse(TreeResponse&& from) noexcept - : TreeResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR TreeResponse( + ::google::protobuf::internal::ConstantInitialized); + inline TreeResponse(const TreeResponse& from) : TreeResponse(nullptr, from) {} + inline TreeResponse(TreeResponse&& from) noexcept + : TreeResponse(nullptr, std::move(from)) {} inline TreeResponse& operator=(const TreeResponse& from) { CopyFrom(from); return *this; @@ -138,9 +129,9 @@ class TreeResponse final : inline TreeResponse& operator=(TreeResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -172,22 +163,17 @@ class TreeResponse final : } static inline const TreeResponse* internal_default_instance() { return reinterpret_cast( - &_TreeResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(TreeResponse& a, TreeResponse& b) { - a.Swap(&b); + &_TreeResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(TreeResponse& a, TreeResponse& b) { a.Swap(&b); } inline void Swap(TreeResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -201,8 +187,8 @@ class TreeResponse final : // implements Message ---------------------------------------------- - TreeResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TreeResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const TreeResponse& from) { @@ -212,27 +198,41 @@ class TreeResponse final : void MergeFrom(const TreeResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TreeResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TreeResponse"; } + + protected: explicit TreeResponse(::google::protobuf::Arena* arena); TreeResponse(::google::protobuf::Arena* arena, const TreeResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + TreeResponse(::google::protobuf::Arena* arena, TreeResponse&& from) noexcept + : TreeResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TreeResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_TreeResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -241,32 +241,30 @@ class TreeResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TreeResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class RollupResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RollupResponse) */ { +class RollupResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RollupResponse) */ { public: inline RollupResponse() : RollupResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR RollupResponse(::google::protobuf::internal::ConstantInitialized); - - inline RollupResponse(const RollupResponse& from) - : RollupResponse(nullptr, from) {} - RollupResponse(RollupResponse&& from) noexcept - : RollupResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR RollupResponse( + ::google::protobuf::internal::ConstantInitialized); + inline RollupResponse(const RollupResponse& from) : RollupResponse(nullptr, from) {} + inline RollupResponse(RollupResponse&& from) noexcept + : RollupResponse(nullptr, std::move(from)) {} inline RollupResponse& operator=(const RollupResponse& from) { CopyFrom(from); return *this; @@ -274,9 +272,9 @@ class RollupResponse final : inline RollupResponse& operator=(RollupResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -308,22 +306,17 @@ class RollupResponse final : } static inline const RollupResponse* internal_default_instance() { return reinterpret_cast( - &_RollupResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(RollupResponse& a, RollupResponse& b) { - a.Swap(&b); + &_RollupResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(RollupResponse& a, RollupResponse& b) { a.Swap(&b); } inline void Swap(RollupResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -337,8 +330,8 @@ class RollupResponse final : // implements Message ---------------------------------------------- - RollupResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + RollupResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const RollupResponse& from) { @@ -348,27 +341,41 @@ class RollupResponse final : void MergeFrom(const RollupResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.RollupResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.RollupResponse"; } + + protected: explicit RollupResponse(::google::protobuf::Arena* arena); RollupResponse(::google::protobuf::Arena* arena, const RollupResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + RollupResponse(::google::protobuf::Arena* arena, RollupResponse&& from) noexcept + : RollupResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RollupResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_RollupResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -377,32 +384,30 @@ class RollupResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const RollupResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableViewResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse) */ { +class HierarchicalTableViewResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse) */ { public: inline HierarchicalTableViewResponse() : HierarchicalTableViewResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableViewResponse(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableViewResponse(const HierarchicalTableViewResponse& from) - : HierarchicalTableViewResponse(nullptr, from) {} - HierarchicalTableViewResponse(HierarchicalTableViewResponse&& from) noexcept - : HierarchicalTableViewResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableViewResponse( + ::google::protobuf::internal::ConstantInitialized); + inline HierarchicalTableViewResponse(const HierarchicalTableViewResponse& from) : HierarchicalTableViewResponse(nullptr, from) {} + inline HierarchicalTableViewResponse(HierarchicalTableViewResponse&& from) noexcept + : HierarchicalTableViewResponse(nullptr, std::move(from)) {} inline HierarchicalTableViewResponse& operator=(const HierarchicalTableViewResponse& from) { CopyFrom(from); return *this; @@ -410,9 +415,9 @@ class HierarchicalTableViewResponse final : inline HierarchicalTableViewResponse& operator=(HierarchicalTableViewResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -444,22 +449,17 @@ class HierarchicalTableViewResponse final : } static inline const HierarchicalTableViewResponse* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableViewResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 9; - - friend void swap(HierarchicalTableViewResponse& a, HierarchicalTableViewResponse& b) { - a.Swap(&b); + &_HierarchicalTableViewResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 9; + friend void swap(HierarchicalTableViewResponse& a, HierarchicalTableViewResponse& b) { a.Swap(&b); } inline void Swap(HierarchicalTableViewResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -473,8 +473,8 @@ class HierarchicalTableViewResponse final : // implements Message ---------------------------------------------- - HierarchicalTableViewResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableViewResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const HierarchicalTableViewResponse& from) { @@ -484,27 +484,41 @@ class HierarchicalTableViewResponse final : void MergeFrom(const HierarchicalTableViewResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse"; } + + protected: explicit HierarchicalTableViewResponse(::google::protobuf::Arena* arena); HierarchicalTableViewResponse(::google::protobuf::Arena* arena, const HierarchicalTableViewResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableViewResponse(::google::protobuf::Arena* arena, HierarchicalTableViewResponse&& from) noexcept + : HierarchicalTableViewResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableViewResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableViewResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -513,33 +527,31 @@ class HierarchicalTableViewResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableViewResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) */ { +class HierarchicalTableDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) */ { public: inline HierarchicalTableDescriptor() : HierarchicalTableDescriptor(nullptr) {} - ~HierarchicalTableDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableDescriptor(const HierarchicalTableDescriptor& from) - : HierarchicalTableDescriptor(nullptr, from) {} - HierarchicalTableDescriptor(HierarchicalTableDescriptor&& from) noexcept - : HierarchicalTableDescriptor() { - *this = ::std::move(from); - } - + ~HierarchicalTableDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline HierarchicalTableDescriptor(const HierarchicalTableDescriptor& from) : HierarchicalTableDescriptor(nullptr, from) {} + inline HierarchicalTableDescriptor(HierarchicalTableDescriptor&& from) noexcept + : HierarchicalTableDescriptor(nullptr, std::move(from)) {} inline HierarchicalTableDescriptor& operator=(const HierarchicalTableDescriptor& from) { CopyFrom(from); return *this; @@ -547,9 +559,9 @@ class HierarchicalTableDescriptor final : inline HierarchicalTableDescriptor& operator=(HierarchicalTableDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -581,22 +593,17 @@ class HierarchicalTableDescriptor final : } static inline const HierarchicalTableDescriptor* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(HierarchicalTableDescriptor& a, HierarchicalTableDescriptor& b) { - a.Swap(&b); + &_HierarchicalTableDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(HierarchicalTableDescriptor& a, HierarchicalTableDescriptor& b) { a.Swap(&b); } inline void Swap(HierarchicalTableDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -610,52 +617,69 @@ class HierarchicalTableDescriptor final : // implements Message ---------------------------------------------- - HierarchicalTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HierarchicalTableDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HierarchicalTableDescriptor& from) { - HierarchicalTableDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const HierarchicalTableDescriptor& from) { HierarchicalTableDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HierarchicalTableDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor"; } + + protected: explicit HierarchicalTableDescriptor(::google::protobuf::Arena* arena); HierarchicalTableDescriptor(::google::protobuf::Arena* arena, const HierarchicalTableDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableDescriptor(::google::protobuf::Arena* arena, HierarchicalTableDescriptor&& from) noexcept + : HierarchicalTableDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSnapshotSchemaFieldNumber = 1, kIsStaticFieldNumber = 2, @@ -689,12 +713,15 @@ class HierarchicalTableDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -702,13 +729,13 @@ class HierarchicalTableDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableDescriptor& from_msg); ::google::protobuf::internal::ArenaStringPtr snapshot_schema_; bool is_static_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -716,22 +743,20 @@ class HierarchicalTableDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableApplyResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse) */ { +class HierarchicalTableApplyResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse) */ { public: inline HierarchicalTableApplyResponse() : HierarchicalTableApplyResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableApplyResponse(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableApplyResponse(const HierarchicalTableApplyResponse& from) - : HierarchicalTableApplyResponse(nullptr, from) {} - HierarchicalTableApplyResponse(HierarchicalTableApplyResponse&& from) noexcept - : HierarchicalTableApplyResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableApplyResponse( + ::google::protobuf::internal::ConstantInitialized); + inline HierarchicalTableApplyResponse(const HierarchicalTableApplyResponse& from) : HierarchicalTableApplyResponse(nullptr, from) {} + inline HierarchicalTableApplyResponse(HierarchicalTableApplyResponse&& from) noexcept + : HierarchicalTableApplyResponse(nullptr, std::move(from)) {} inline HierarchicalTableApplyResponse& operator=(const HierarchicalTableApplyResponse& from) { CopyFrom(from); return *this; @@ -739,9 +764,9 @@ class HierarchicalTableApplyResponse final : inline HierarchicalTableApplyResponse& operator=(HierarchicalTableApplyResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -773,22 +798,17 @@ class HierarchicalTableApplyResponse final : } static inline const HierarchicalTableApplyResponse* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableApplyResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(HierarchicalTableApplyResponse& a, HierarchicalTableApplyResponse& b) { - a.Swap(&b); + &_HierarchicalTableApplyResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(HierarchicalTableApplyResponse& a, HierarchicalTableApplyResponse& b) { a.Swap(&b); } inline void Swap(HierarchicalTableApplyResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -802,8 +822,8 @@ class HierarchicalTableApplyResponse final : // implements Message ---------------------------------------------- - HierarchicalTableApplyResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableApplyResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const HierarchicalTableApplyResponse& from) { @@ -813,27 +833,41 @@ class HierarchicalTableApplyResponse final : void MergeFrom(const HierarchicalTableApplyResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse"; } + + protected: explicit HierarchicalTableApplyResponse(::google::protobuf::Arena* arena); HierarchicalTableApplyResponse(::google::protobuf::Arena* arena, const HierarchicalTableApplyResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableApplyResponse(::google::protobuf::Arena* arena, HierarchicalTableApplyResponse&& from) noexcept + : HierarchicalTableApplyResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableApplyResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -842,33 +876,31 @@ class HierarchicalTableApplyResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableApplyResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TreeRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TreeRequest) */ { +class TreeRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TreeRequest) */ { public: inline TreeRequest() : TreeRequest(nullptr) {} - ~TreeRequest() override; - template - explicit PROTOBUF_CONSTEXPR TreeRequest(::google::protobuf::internal::ConstantInitialized); - - inline TreeRequest(const TreeRequest& from) - : TreeRequest(nullptr, from) {} - TreeRequest(TreeRequest&& from) noexcept - : TreeRequest() { - *this = ::std::move(from); - } - + ~TreeRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TreeRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline TreeRequest(const TreeRequest& from) : TreeRequest(nullptr, from) {} + inline TreeRequest(TreeRequest&& from) noexcept + : TreeRequest(nullptr, std::move(from)) {} inline TreeRequest& operator=(const TreeRequest& from) { CopyFrom(from); return *this; @@ -876,9 +908,9 @@ class TreeRequest final : inline TreeRequest& operator=(TreeRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -910,22 +942,17 @@ class TreeRequest final : } static inline const TreeRequest* internal_default_instance() { return reinterpret_cast( - &_TreeRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(TreeRequest& a, TreeRequest& b) { - a.Swap(&b); + &_TreeRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(TreeRequest& a, TreeRequest& b) { a.Swap(&b); } inline void Swap(TreeRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -939,52 +966,69 @@ class TreeRequest final : // implements Message ---------------------------------------------- - TreeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TreeRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TreeRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TreeRequest& from) { - TreeRequest::MergeImpl(*this, from); - } + void MergeFrom(const TreeRequest& from) { TreeRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TreeRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TreeRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TreeRequest"; } + + protected: explicit TreeRequest(::google::protobuf::Arena* arena); TreeRequest(::google::protobuf::Arena* arena, const TreeRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TreeRequest(::google::protobuf::Arena* arena, TreeRequest&& from) noexcept + : TreeRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kIdentifierColumnFieldNumber = 3, kParentIdentifierColumnFieldNumber = 4, @@ -1067,12 +1111,15 @@ class TreeRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TreeRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 2, 95, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TreeRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1080,13 +1127,13 @@ class TreeRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TreeRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr identifier_column_; @@ -1098,23 +1145,21 @@ class TreeRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableViewKeyTableDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) */ { +class HierarchicalTableViewKeyTableDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) */ { public: inline HierarchicalTableViewKeyTableDescriptor() : HierarchicalTableViewKeyTableDescriptor(nullptr) {} - ~HierarchicalTableViewKeyTableDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableViewKeyTableDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableViewKeyTableDescriptor(const HierarchicalTableViewKeyTableDescriptor& from) - : HierarchicalTableViewKeyTableDescriptor(nullptr, from) {} - HierarchicalTableViewKeyTableDescriptor(HierarchicalTableViewKeyTableDescriptor&& from) noexcept - : HierarchicalTableViewKeyTableDescriptor() { - *this = ::std::move(from); - } - + ~HierarchicalTableViewKeyTableDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableViewKeyTableDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline HierarchicalTableViewKeyTableDescriptor(const HierarchicalTableViewKeyTableDescriptor& from) : HierarchicalTableViewKeyTableDescriptor(nullptr, from) {} + inline HierarchicalTableViewKeyTableDescriptor(HierarchicalTableViewKeyTableDescriptor&& from) noexcept + : HierarchicalTableViewKeyTableDescriptor(nullptr, std::move(from)) {} inline HierarchicalTableViewKeyTableDescriptor& operator=(const HierarchicalTableViewKeyTableDescriptor& from) { CopyFrom(from); return *this; @@ -1122,9 +1167,9 @@ class HierarchicalTableViewKeyTableDescriptor final : inline HierarchicalTableViewKeyTableDescriptor& operator=(HierarchicalTableViewKeyTableDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1156,22 +1201,17 @@ class HierarchicalTableViewKeyTableDescriptor final : } static inline const HierarchicalTableViewKeyTableDescriptor* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableViewKeyTableDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 8; - - friend void swap(HierarchicalTableViewKeyTableDescriptor& a, HierarchicalTableViewKeyTableDescriptor& b) { - a.Swap(&b); + &_HierarchicalTableViewKeyTableDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 8; + friend void swap(HierarchicalTableViewKeyTableDescriptor& a, HierarchicalTableViewKeyTableDescriptor& b) { a.Swap(&b); } inline void Swap(HierarchicalTableViewKeyTableDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1185,52 +1225,69 @@ class HierarchicalTableViewKeyTableDescriptor final : // implements Message ---------------------------------------------- - HierarchicalTableViewKeyTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableViewKeyTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HierarchicalTableViewKeyTableDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HierarchicalTableViewKeyTableDescriptor& from) { - HierarchicalTableViewKeyTableDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const HierarchicalTableViewKeyTableDescriptor& from) { HierarchicalTableViewKeyTableDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HierarchicalTableViewKeyTableDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor"; } + + protected: explicit HierarchicalTableViewKeyTableDescriptor(::google::protobuf::Arena* arena); HierarchicalTableViewKeyTableDescriptor(::google::protobuf::Arena* arena, const HierarchicalTableViewKeyTableDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableViewKeyTableDescriptor(::google::protobuf::Arena* arena, HierarchicalTableViewKeyTableDescriptor&& from) noexcept + : HierarchicalTableViewKeyTableDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeyTableActionColumnFieldNumber = 2, kKeyTableIdFieldNumber = 1, @@ -1270,12 +1327,15 @@ class HierarchicalTableViewKeyTableDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 105, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableViewKeyTableDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1283,13 +1343,13 @@ class HierarchicalTableViewKeyTableDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableViewKeyTableDescriptor& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr key_table_action_column_; @@ -1298,23 +1358,21 @@ class HierarchicalTableViewKeyTableDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableSourceExportRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) */ { +class HierarchicalTableSourceExportRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) */ { public: inline HierarchicalTableSourceExportRequest() : HierarchicalTableSourceExportRequest(nullptr) {} - ~HierarchicalTableSourceExportRequest() override; - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableSourceExportRequest(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableSourceExportRequest(const HierarchicalTableSourceExportRequest& from) - : HierarchicalTableSourceExportRequest(nullptr, from) {} - HierarchicalTableSourceExportRequest(HierarchicalTableSourceExportRequest&& from) noexcept - : HierarchicalTableSourceExportRequest() { - *this = ::std::move(from); - } - + ~HierarchicalTableSourceExportRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableSourceExportRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HierarchicalTableSourceExportRequest(const HierarchicalTableSourceExportRequest& from) : HierarchicalTableSourceExportRequest(nullptr, from) {} + inline HierarchicalTableSourceExportRequest(HierarchicalTableSourceExportRequest&& from) noexcept + : HierarchicalTableSourceExportRequest(nullptr, std::move(from)) {} inline HierarchicalTableSourceExportRequest& operator=(const HierarchicalTableSourceExportRequest& from) { CopyFrom(from); return *this; @@ -1322,9 +1380,9 @@ class HierarchicalTableSourceExportRequest final : inline HierarchicalTableSourceExportRequest& operator=(HierarchicalTableSourceExportRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1356,22 +1414,17 @@ class HierarchicalTableSourceExportRequest final : } static inline const HierarchicalTableSourceExportRequest* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableSourceExportRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 10; - - friend void swap(HierarchicalTableSourceExportRequest& a, HierarchicalTableSourceExportRequest& b) { - a.Swap(&b); + &_HierarchicalTableSourceExportRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 10; + friend void swap(HierarchicalTableSourceExportRequest& a, HierarchicalTableSourceExportRequest& b) { a.Swap(&b); } inline void Swap(HierarchicalTableSourceExportRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1385,52 +1438,69 @@ class HierarchicalTableSourceExportRequest final : // implements Message ---------------------------------------------- - HierarchicalTableSourceExportRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableSourceExportRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HierarchicalTableSourceExportRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HierarchicalTableSourceExportRequest& from) { - HierarchicalTableSourceExportRequest::MergeImpl(*this, from); - } + void MergeFrom(const HierarchicalTableSourceExportRequest& from) { HierarchicalTableSourceExportRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HierarchicalTableSourceExportRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest"; } + + protected: explicit HierarchicalTableSourceExportRequest(::google::protobuf::Arena* arena); HierarchicalTableSourceExportRequest(::google::protobuf::Arena* arena, const HierarchicalTableSourceExportRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableSourceExportRequest(::google::protobuf::Arena* arena, HierarchicalTableSourceExportRequest&& from) noexcept + : HierarchicalTableSourceExportRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultTableIdFieldNumber = 1, kHierarchicalTableIdFieldNumber = 2, @@ -1468,12 +1538,15 @@ class HierarchicalTableSourceExportRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableSourceExportRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1481,13 +1554,13 @@ class HierarchicalTableSourceExportRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableSourceExportRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_table_id_; @@ -1496,23 +1569,21 @@ class HierarchicalTableSourceExportRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableViewRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) */ { +class HierarchicalTableViewRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) */ { public: inline HierarchicalTableViewRequest() : HierarchicalTableViewRequest(nullptr) {} - ~HierarchicalTableViewRequest() override; - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableViewRequest(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableViewRequest(const HierarchicalTableViewRequest& from) - : HierarchicalTableViewRequest(nullptr, from) {} - HierarchicalTableViewRequest(HierarchicalTableViewRequest&& from) noexcept - : HierarchicalTableViewRequest() { - *this = ::std::move(from); - } - + ~HierarchicalTableViewRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableViewRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HierarchicalTableViewRequest(const HierarchicalTableViewRequest& from) : HierarchicalTableViewRequest(nullptr, from) {} + inline HierarchicalTableViewRequest(HierarchicalTableViewRequest&& from) noexcept + : HierarchicalTableViewRequest(nullptr, std::move(from)) {} inline HierarchicalTableViewRequest& operator=(const HierarchicalTableViewRequest& from) { CopyFrom(from); return *this; @@ -1520,9 +1591,9 @@ class HierarchicalTableViewRequest final : inline HierarchicalTableViewRequest& operator=(HierarchicalTableViewRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1557,25 +1628,19 @@ class HierarchicalTableViewRequest final : kExistingViewId = 3, TARGET_NOT_SET = 0, }; - static inline const HierarchicalTableViewRequest* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableViewRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(HierarchicalTableViewRequest& a, HierarchicalTableViewRequest& b) { - a.Swap(&b); + &_HierarchicalTableViewRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(HierarchicalTableViewRequest& a, HierarchicalTableViewRequest& b) { a.Swap(&b); } inline void Swap(HierarchicalTableViewRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1589,52 +1654,69 @@ class HierarchicalTableViewRequest final : // implements Message ---------------------------------------------- - HierarchicalTableViewRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableViewRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HierarchicalTableViewRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HierarchicalTableViewRequest& from) { - HierarchicalTableViewRequest::MergeImpl(*this, from); - } + void MergeFrom(const HierarchicalTableViewRequest& from) { HierarchicalTableViewRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HierarchicalTableViewRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest"; } + + protected: explicit HierarchicalTableViewRequest(::google::protobuf::Arena* arena); HierarchicalTableViewRequest(::google::protobuf::Arena* arena, const HierarchicalTableViewRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableViewRequest(::google::protobuf::Arena* arena, HierarchicalTableViewRequest&& from) noexcept + : HierarchicalTableViewRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultViewIdFieldNumber = 1, kExpansionsFieldNumber = 4, @@ -1716,15 +1798,17 @@ class HierarchicalTableViewRequest final : class _Internal; void set_has_hierarchical_table_id(); void set_has_existing_view_id(); - inline bool has_target() const; inline void clear_has_target(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 4, 4, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableViewRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1732,46 +1816,43 @@ class HierarchicalTableViewRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableViewRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_view_id_; ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* expansions_; union TargetUnion { constexpr TargetUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::Ticket* hierarchical_table_id_; ::io::deephaven::proto::backplane::grpc::Ticket* existing_view_id_; } target_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HierarchicalTableApplyRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) */ { +class HierarchicalTableApplyRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) */ { public: inline HierarchicalTableApplyRequest() : HierarchicalTableApplyRequest(nullptr) {} - ~HierarchicalTableApplyRequest() override; - template - explicit PROTOBUF_CONSTEXPR HierarchicalTableApplyRequest(::google::protobuf::internal::ConstantInitialized); - - inline HierarchicalTableApplyRequest(const HierarchicalTableApplyRequest& from) - : HierarchicalTableApplyRequest(nullptr, from) {} - HierarchicalTableApplyRequest(HierarchicalTableApplyRequest&& from) noexcept - : HierarchicalTableApplyRequest() { - *this = ::std::move(from); - } - + ~HierarchicalTableApplyRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HierarchicalTableApplyRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HierarchicalTableApplyRequest(const HierarchicalTableApplyRequest& from) : HierarchicalTableApplyRequest(nullptr, from) {} + inline HierarchicalTableApplyRequest(HierarchicalTableApplyRequest&& from) noexcept + : HierarchicalTableApplyRequest(nullptr, std::move(from)) {} inline HierarchicalTableApplyRequest& operator=(const HierarchicalTableApplyRequest& from) { CopyFrom(from); return *this; @@ -1779,9 +1860,9 @@ class HierarchicalTableApplyRequest final : inline HierarchicalTableApplyRequest& operator=(HierarchicalTableApplyRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1813,22 +1894,17 @@ class HierarchicalTableApplyRequest final : } static inline const HierarchicalTableApplyRequest* internal_default_instance() { return reinterpret_cast( - &_HierarchicalTableApplyRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(HierarchicalTableApplyRequest& a, HierarchicalTableApplyRequest& b) { - a.Swap(&b); + &_HierarchicalTableApplyRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(HierarchicalTableApplyRequest& a, HierarchicalTableApplyRequest& b) { a.Swap(&b); } inline void Swap(HierarchicalTableApplyRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1842,52 +1918,69 @@ class HierarchicalTableApplyRequest final : // implements Message ---------------------------------------------- - HierarchicalTableApplyRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HierarchicalTableApplyRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HierarchicalTableApplyRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HierarchicalTableApplyRequest& from) { - HierarchicalTableApplyRequest::MergeImpl(*this, from); - } + void MergeFrom(const HierarchicalTableApplyRequest& from) { HierarchicalTableApplyRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HierarchicalTableApplyRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest"; } + + protected: explicit HierarchicalTableApplyRequest(::google::protobuf::Arena* arena); HierarchicalTableApplyRequest(::google::protobuf::Arena* arena, const HierarchicalTableApplyRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HierarchicalTableApplyRequest(::google::protobuf::Arena* arena, HierarchicalTableApplyRequest&& from) noexcept + : HierarchicalTableApplyRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFiltersFieldNumber = 3, kSortsFieldNumber = 4, @@ -1902,16 +1995,15 @@ class HierarchicalTableApplyRequest final : public: void clear_filters() ; ::io::deephaven::proto::backplane::grpc::Condition* mutable_filters(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >* - mutable_filters(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* mutable_filters(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& _internal_filters() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* _internal_mutable_filters(); public: const ::io::deephaven::proto::backplane::grpc::Condition& filters(int index) const; ::io::deephaven::proto::backplane::grpc::Condition* add_filters(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >& - filters() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& filters() const; // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; int sorts_size() const; private: @@ -1920,16 +2012,15 @@ class HierarchicalTableApplyRequest final : public: void clear_sorts() ; ::io::deephaven::proto::backplane::grpc::SortDescriptor* mutable_sorts(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor >* - mutable_sorts(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* mutable_sorts(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& _internal_sorts() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* _internal_mutable_sorts(); public: const ::io::deephaven::proto::backplane::grpc::SortDescriptor& sorts(int index) const; ::io::deephaven::proto::backplane::grpc::SortDescriptor* add_sorts(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor >& - sorts() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& sorts() const; // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; bool has_result_hierarchical_table_id() const; void clear_result_hierarchical_table_id() ; @@ -1963,12 +2054,15 @@ class HierarchicalTableApplyRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 4, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HierarchicalTableApplyRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1976,13 +2070,13 @@ class HierarchicalTableApplyRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HierarchicalTableApplyRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition > filters_; @@ -1993,23 +2087,21 @@ class HierarchicalTableApplyRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class RollupRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RollupRequest) */ { +class RollupRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RollupRequest) */ { public: inline RollupRequest() : RollupRequest(nullptr) {} - ~RollupRequest() override; - template - explicit PROTOBUF_CONSTEXPR RollupRequest(::google::protobuf::internal::ConstantInitialized); - - inline RollupRequest(const RollupRequest& from) - : RollupRequest(nullptr, from) {} - RollupRequest(RollupRequest&& from) noexcept - : RollupRequest() { - *this = ::std::move(from); - } - + ~RollupRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR RollupRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline RollupRequest(const RollupRequest& from) : RollupRequest(nullptr, from) {} + inline RollupRequest(RollupRequest&& from) noexcept + : RollupRequest(nullptr, std::move(from)) {} inline RollupRequest& operator=(const RollupRequest& from) { CopyFrom(from); return *this; @@ -2017,9 +2109,9 @@ class RollupRequest final : inline RollupRequest& operator=(RollupRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2051,22 +2143,17 @@ class RollupRequest final : } static inline const RollupRequest* internal_default_instance() { return reinterpret_cast( - &_RollupRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(RollupRequest& a, RollupRequest& b) { - a.Swap(&b); + &_RollupRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(RollupRequest& a, RollupRequest& b) { a.Swap(&b); } inline void Swap(RollupRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2080,52 +2167,69 @@ class RollupRequest final : // implements Message ---------------------------------------------- - RollupRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + RollupRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const RollupRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const RollupRequest& from) { - RollupRequest::MergeImpl(*this, from); - } + void MergeFrom(const RollupRequest& from) { RollupRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(RollupRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.RollupRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.RollupRequest"; } + + protected: explicit RollupRequest(::google::protobuf::Arena* arena); RollupRequest(::google::protobuf::Arena* arena, const RollupRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + RollupRequest(::google::protobuf::Arena* arena, RollupRequest&& from) noexcept + : RollupRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAggregationsFieldNumber = 3, kGroupByColumnsFieldNumber = 5, @@ -2141,16 +2245,15 @@ class RollupRequest final : public: void clear_aggregations() ; ::io::deephaven::proto::backplane::grpc::Aggregation* mutable_aggregations(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >* - mutable_aggregations(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* mutable_aggregations(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& _internal_aggregations() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* _internal_mutable_aggregations(); public: const ::io::deephaven::proto::backplane::grpc::Aggregation& aggregations(int index) const; ::io::deephaven::proto::backplane::grpc::Aggregation* add_aggregations(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >& - aggregations() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& aggregations() const; // repeated string group_by_columns = 5; int group_by_columns_size() const; private: @@ -2160,17 +2263,11 @@ class RollupRequest final : void clear_group_by_columns() ; const std::string& group_by_columns(int index) const; std::string* mutable_group_by_columns(int index); - void set_group_by_columns(int index, const std::string& value); - void set_group_by_columns(int index, std::string&& value); - void set_group_by_columns(int index, const char* value); - void set_group_by_columns(int index, const char* value, std::size_t size); - void set_group_by_columns(int index, absl::string_view value); + template + void set_group_by_columns(int index, Arg_&& value, Args_... args); std::string* add_group_by_columns(); - void add_group_by_columns(const std::string& value); - void add_group_by_columns(std::string&& value); - void add_group_by_columns(const char* value); - void add_group_by_columns(const char* value, std::size_t size); - void add_group_by_columns(absl::string_view value); + template + void add_group_by_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_columns() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_columns(); @@ -2222,12 +2319,15 @@ class RollupRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RollupRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 72, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_RollupRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2235,13 +2335,13 @@ class RollupRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const RollupRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation > aggregations_; @@ -2278,7 +2378,7 @@ inline bool RollupRequest::has_result_rollup_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_internal_result_rollup_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_rollup_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -2287,7 +2387,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::res return _internal_result_rollup_table_id(); } inline void RollupRequest::unsafe_arena_set_allocated_result_rollup_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_rollup_table_id_); } @@ -2300,7 +2400,7 @@ inline void RollupRequest::unsafe_arena_set_allocated_result_rollup_table_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RollupRequest.result_rollup_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::release_result_rollup_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_rollup_table_id_; @@ -2319,7 +2419,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::release_r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_arena_release_result_rollup_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RollupRequest.result_rollup_table_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -2328,22 +2428,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_ar return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::_internal_mutable_result_rollup_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_rollup_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_rollup_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_rollup_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::mutable_result_rollup_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_rollup_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.result_rollup_table_id) return _msg; } inline void RollupRequest::set_allocated_result_rollup_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_rollup_table_id_); } @@ -2369,7 +2469,7 @@ inline bool RollupRequest::has_source_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_internal_source_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.source_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -2378,7 +2478,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::sou return _internal_source_table_id(); } inline void RollupRequest::unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); } @@ -2391,7 +2491,7 @@ inline void RollupRequest::unsafe_arena_set_allocated_source_table_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::release_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_table_id_; @@ -2410,7 +2510,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::release_s return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_arena_release_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -2419,22 +2519,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_ar return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::_internal_mutable_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.source_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::mutable_source_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_source_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) return _msg; } inline void RollupRequest::set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); } @@ -2468,7 +2568,7 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation* RollupRequest::muta inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* RollupRequest::mutable_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.RollupRequest.aggregations) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_aggregations(); } inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RollupRequest::aggregations(int index) const @@ -2477,7 +2577,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RollupRequest return _internal_aggregations().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Aggregation* RollupRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Aggregation* _add = _internal_mutable_aggregations()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RollupRequest.aggregations) return _add; @@ -2489,18 +2589,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& RollupRequest::_internal_aggregations() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.aggregations_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* RollupRequest::_internal_mutable_aggregations() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.aggregations_; } // bool include_constituents = 4; inline void RollupRequest::clear_include_constituents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_constituents_ = false; } inline bool RollupRequest::include_constituents() const { @@ -2512,12 +2612,11 @@ inline void RollupRequest::set_include_constituents(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RollupRequest.include_constituents) } inline bool RollupRequest::_internal_include_constituents() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.include_constituents_; } inline void RollupRequest::_internal_set_include_constituents(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_constituents_ = value; } @@ -2529,12 +2628,11 @@ inline int RollupRequest::group_by_columns_size() const { return _internal_group_by_columns_size(); } inline void RollupRequest::clear_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_columns_.Clear(); } -inline std::string* RollupRequest::add_group_by_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* RollupRequest::add_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) return _s; @@ -2549,57 +2647,21 @@ inline std::string* RollupRequest::mutable_group_by_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) return _internal_mutable_group_by_columns()->Mutable(index); } -inline void RollupRequest::set_group_by_columns(int index, const std::string& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::set_group_by_columns(int index, std::string&& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(std::move(value)); +template +inline void RollupRequest::set_group_by_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) } -inline void RollupRequest::set_group_by_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::set_group_by_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::set_group_by_columns(int index, absl::string_view value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::add_group_by_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::add_group_by_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add(std::move(value)); +template +inline void RollupRequest::add_group_by_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) } -inline void RollupRequest::add_group_by_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::add_group_by_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} -inline void RollupRequest::add_group_by_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) -} inline const ::google::protobuf::RepeatedPtrField& RollupRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) @@ -2608,17 +2670,17 @@ RollupRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* RollupRequest::mutable_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_columns(); } inline const ::google::protobuf::RepeatedPtrField& RollupRequest::_internal_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_columns_; } inline ::google::protobuf::RepeatedPtrField* RollupRequest::_internal_mutable_group_by_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_columns_; } @@ -2637,7 +2699,7 @@ inline bool TreeRequest::has_result_tree_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_internal_result_tree_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_tree_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -2646,7 +2708,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::resul return _internal_result_tree_table_id(); } inline void TreeRequest::unsafe_arena_set_allocated_result_tree_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_tree_table_id_); } @@ -2659,7 +2721,7 @@ inline void TreeRequest::unsafe_arena_set_allocated_result_tree_table_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.result_tree_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::release_result_tree_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_tree_table_id_; @@ -2678,7 +2740,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::release_res return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_arena_release_result_tree_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TreeRequest.result_tree_table_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -2687,22 +2749,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_aren return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::_internal_mutable_result_tree_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_tree_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_tree_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_tree_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::mutable_result_tree_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_tree_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TreeRequest.result_tree_table_id) return _msg; } inline void TreeRequest::set_allocated_result_tree_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_tree_table_id_); } @@ -2728,7 +2790,7 @@ inline bool TreeRequest::has_source_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_internal_source_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.source_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -2737,7 +2799,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::sourc return _internal_source_table_id(); } inline void TreeRequest::unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); } @@ -2750,7 +2812,7 @@ inline void TreeRequest::unsafe_arena_set_allocated_source_table_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::release_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_table_id_; @@ -2769,7 +2831,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::release_sou return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_arena_release_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -2778,22 +2840,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_aren return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::_internal_mutable_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.source_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::mutable_source_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_source_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) return _msg; } inline void TreeRequest::set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); } @@ -2814,7 +2876,7 @@ inline void TreeRequest::set_allocated_source_table_id(::io::deephaven::proto::b // string identifier_column = 3; inline void TreeRequest::clear_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.identifier_column_.ClearToEmpty(); } inline const std::string& TreeRequest::identifier_column() const @@ -2825,8 +2887,7 @@ inline const std::string& TreeRequest::identifier_column() const template inline PROTOBUF_ALWAYS_INLINE void TreeRequest::set_identifier_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.identifier_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column) } @@ -2836,26 +2897,24 @@ inline std::string* TreeRequest::mutable_identifier_column() ABSL_ATTRIBUTE_LIFE return _s; } inline const std::string& TreeRequest::_internal_identifier_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.identifier_column_.Get(); } inline void TreeRequest::_internal_set_identifier_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.identifier_column_.Set(value, GetArena()); } inline std::string* TreeRequest::_internal_mutable_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.identifier_column_.Mutable( GetArena()); } inline std::string* TreeRequest::release_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column) return _impl_.identifier_column_.Release(); } inline void TreeRequest::set_allocated_identifier_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.identifier_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.identifier_column_.IsDefault()) { @@ -2867,7 +2926,7 @@ inline void TreeRequest::set_allocated_identifier_column(std::string* value) { // string parent_identifier_column = 4; inline void TreeRequest::clear_parent_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.parent_identifier_column_.ClearToEmpty(); } inline const std::string& TreeRequest::parent_identifier_column() const @@ -2878,8 +2937,7 @@ inline const std::string& TreeRequest::parent_identifier_column() const template inline PROTOBUF_ALWAYS_INLINE void TreeRequest::set_parent_identifier_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.parent_identifier_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column) } @@ -2889,26 +2947,24 @@ inline std::string* TreeRequest::mutable_parent_identifier_column() ABSL_ATTRIBU return _s; } inline const std::string& TreeRequest::_internal_parent_identifier_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.parent_identifier_column_.Get(); } inline void TreeRequest::_internal_set_parent_identifier_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.parent_identifier_column_.Set(value, GetArena()); } inline std::string* TreeRequest::_internal_mutable_parent_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.parent_identifier_column_.Mutable( GetArena()); } inline std::string* TreeRequest::release_parent_identifier_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column) return _impl_.parent_identifier_column_.Release(); } inline void TreeRequest::set_allocated_parent_identifier_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.parent_identifier_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.parent_identifier_column_.IsDefault()) { @@ -2920,7 +2976,7 @@ inline void TreeRequest::set_allocated_parent_identifier_column(std::string* val // bool promote_orphans = 5; inline void TreeRequest::clear_promote_orphans() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.promote_orphans_ = false; } inline bool TreeRequest::promote_orphans() const { @@ -2932,12 +2988,11 @@ inline void TreeRequest::set_promote_orphans(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TreeRequest.promote_orphans) } inline bool TreeRequest::_internal_promote_orphans() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.promote_orphans_; } inline void TreeRequest::_internal_set_promote_orphans(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.promote_orphans_ = value; } @@ -2956,7 +3011,7 @@ inline bool HierarchicalTableApplyRequest::has_result_hierarchical_table_id() co return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_internal_result_hierarchical_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_hierarchical_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -2965,7 +3020,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableA return _internal_result_hierarchical_table_id(); } inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_result_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_hierarchical_table_id_); } @@ -2978,7 +3033,7 @@ inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_result_hie // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.result_hierarchical_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::release_result_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_hierarchical_table_id_; @@ -2997,7 +3052,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRe return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::unsafe_arena_release_result_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.result_hierarchical_table_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3006,22 +3061,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::_internal_mutable_result_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_hierarchical_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_hierarchical_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::mutable_result_hierarchical_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_hierarchical_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.result_hierarchical_table_id) return _msg; } inline void HierarchicalTableApplyRequest::set_allocated_result_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_hierarchical_table_id_); } @@ -3047,7 +3102,7 @@ inline bool HierarchicalTableApplyRequest::has_input_hierarchical_table_id() con return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_internal_input_hierarchical_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.input_hierarchical_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3056,7 +3111,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableA return _internal_input_hierarchical_table_id(); } inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_input_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_hierarchical_table_id_); } @@ -3069,7 +3124,7 @@ inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_input_hier // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.input_hierarchical_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::release_input_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_hierarchical_table_id_; @@ -3088,7 +3143,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRe return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::unsafe_arena_release_input_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.input_hierarchical_table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3097,22 +3152,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::_internal_mutable_input_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_hierarchical_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.input_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.input_hierarchical_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::mutable_input_hierarchical_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_input_hierarchical_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.input_hierarchical_table_id) return _msg; } inline void HierarchicalTableApplyRequest::set_allocated_input_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_hierarchical_table_id_); } @@ -3146,7 +3201,7 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* HierarchicalTableAppl inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* HierarchicalTableApplyRequest::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.filters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_filters(); } inline const ::io::deephaven::proto::backplane::grpc::Condition& HierarchicalTableApplyRequest::filters(int index) const @@ -3155,7 +3210,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Condition& HierarchicalTab return _internal_filters().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Condition* HierarchicalTableApplyRequest::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Condition* _add = _internal_mutable_filters()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.filters) return _add; @@ -3167,12 +3222,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& HierarchicalTableApplyRequest::_internal_filters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filters_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* HierarchicalTableApplyRequest::_internal_mutable_filters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.filters_; } @@ -3191,7 +3246,7 @@ inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* HierarchicalTabl inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* HierarchicalTableApplyRequest::mutable_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.sorts) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_sorts(); } inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& HierarchicalTableApplyRequest::sorts(int index) const @@ -3200,7 +3255,7 @@ inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& Hierarchic return _internal_sorts().Get(index); } inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* HierarchicalTableApplyRequest::add_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::SortDescriptor* _add = _internal_mutable_sorts()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.sorts) return _add; @@ -3212,12 +3267,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& HierarchicalTableApplyRequest::_internal_sorts() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.sorts_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* HierarchicalTableApplyRequest::_internal_mutable_sorts() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.sorts_; } @@ -3231,7 +3286,7 @@ HierarchicalTableApplyRequest::_internal_mutable_sorts() { // bytes snapshot_schema = 1; inline void HierarchicalTableDescriptor::clear_snapshot_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.snapshot_schema_.ClearToEmpty(); } inline const std::string& HierarchicalTableDescriptor::snapshot_schema() const @@ -3242,8 +3297,7 @@ inline const std::string& HierarchicalTableDescriptor::snapshot_schema() const template inline PROTOBUF_ALWAYS_INLINE void HierarchicalTableDescriptor::set_snapshot_schema(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.snapshot_schema_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.snapshot_schema) } @@ -3253,26 +3307,24 @@ inline std::string* HierarchicalTableDescriptor::mutable_snapshot_schema() ABSL_ return _s; } inline const std::string& HierarchicalTableDescriptor::_internal_snapshot_schema() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.snapshot_schema_.Get(); } inline void HierarchicalTableDescriptor::_internal_set_snapshot_schema(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.snapshot_schema_.Set(value, GetArena()); } inline std::string* HierarchicalTableDescriptor::_internal_mutable_snapshot_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.snapshot_schema_.Mutable( GetArena()); } inline std::string* HierarchicalTableDescriptor::release_snapshot_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.snapshot_schema) return _impl_.snapshot_schema_.Release(); } inline void HierarchicalTableDescriptor::set_allocated_snapshot_schema(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.snapshot_schema_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.snapshot_schema_.IsDefault()) { @@ -3284,7 +3336,7 @@ inline void HierarchicalTableDescriptor::set_allocated_snapshot_schema(std::stri // bool is_static = 2; inline void HierarchicalTableDescriptor::clear_is_static() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_static_ = false; } inline bool HierarchicalTableDescriptor::is_static() const { @@ -3296,12 +3348,11 @@ inline void HierarchicalTableDescriptor::set_is_static(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.is_static) } inline bool HierarchicalTableDescriptor::_internal_is_static() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_static_; } inline void HierarchicalTableDescriptor::_internal_set_is_static(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_static_ = value; } @@ -3316,7 +3367,7 @@ inline bool HierarchicalTableViewRequest::has_result_view_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_internal_result_view_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_view_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3325,7 +3376,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableV return _internal_result_view_id(); } inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_result_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_view_id_); } @@ -3338,7 +3389,7 @@ inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_result_view // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::release_result_view_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_view_id_; @@ -3357,7 +3408,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewReq return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::unsafe_arena_release_result_view_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3366,22 +3417,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewReq return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::_internal_mutable_result_view_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_view_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_view_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_view_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::mutable_result_view_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_view_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) return _msg; } inline void HierarchicalTableViewRequest::set_allocated_result_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_view_id_); } @@ -3457,7 +3508,8 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewReq if (target_case() != kHierarchicalTableId) { clear_target(); set_has_hierarchical_table_id(); - _impl_.target_.hierarchical_table_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + _impl_.target_.hierarchical_table_id_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); } return _impl_.target_.hierarchical_table_id_; } @@ -3524,7 +3576,8 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewReq if (target_case() != kExistingViewId) { clear_target(); set_has_existing_view_id(); - _impl_.target_.existing_view_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + _impl_.target_.existing_view_id_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); } return _impl_.target_.existing_view_id_; } @@ -3541,12 +3594,12 @@ inline bool HierarchicalTableViewRequest::has_expansions() const { return value; } inline void HierarchicalTableViewRequest::clear_expansions() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.expansions_ != nullptr) _impl_.expansions_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& HierarchicalTableViewRequest::_internal_expansions() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* p = _impl_.expansions_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_HierarchicalTableViewKeyTableDescriptor_default_instance_); } @@ -3555,7 +3608,7 @@ inline const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTa return _internal_expansions(); } inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_expansions(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.expansions_); } @@ -3568,7 +3621,7 @@ inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_expansions( // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) } inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::release_expansions() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* released = _impl_.expansions_; @@ -3587,7 +3640,7 @@ inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDes return released; } inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::unsafe_arena_release_expansions() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3596,28 +3649,28 @@ inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDes return temp; } inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::_internal_mutable_expansions() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.expansions_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>(GetArena()); _impl_.expansions_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor*>(p); } return _impl_.expansions_; } inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::mutable_expansions() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* _msg = _internal_mutable_expansions(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) return _msg; } inline void HierarchicalTableViewRequest::set_allocated_expansions(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor*>(_impl_.expansions_); + delete (_impl_.expansions_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -3650,7 +3703,7 @@ inline bool HierarchicalTableViewKeyTableDescriptor::has_key_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewKeyTableDescriptor::_internal_key_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.key_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3659,7 +3712,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableV return _internal_key_table_id(); } inline void HierarchicalTableViewKeyTableDescriptor::unsafe_arena_set_allocated_key_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_id_); } @@ -3672,7 +3725,7 @@ inline void HierarchicalTableViewKeyTableDescriptor::unsafe_arena_set_allocated_ // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::release_key_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.key_table_id_; @@ -3691,7 +3744,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKey return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::unsafe_arena_release_key_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3700,22 +3753,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKey return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::_internal_mutable_key_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.key_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.key_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.key_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::mutable_key_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_key_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) return _msg; } inline void HierarchicalTableViewKeyTableDescriptor::set_allocated_key_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_id_); } @@ -3740,7 +3793,7 @@ inline bool HierarchicalTableViewKeyTableDescriptor::has_key_table_action_column return value; } inline void HierarchicalTableViewKeyTableDescriptor::clear_key_table_action_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_table_action_column_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -3752,7 +3805,7 @@ inline const std::string& HierarchicalTableViewKeyTableDescriptor::key_table_act template inline PROTOBUF_ALWAYS_INLINE void HierarchicalTableViewKeyTableDescriptor::set_key_table_action_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.key_table_action_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column) @@ -3763,21 +3816,21 @@ inline std::string* HierarchicalTableViewKeyTableDescriptor::mutable_key_table_a return _s; } inline const std::string& HierarchicalTableViewKeyTableDescriptor::_internal_key_table_action_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.key_table_action_column_.Get(); } inline void HierarchicalTableViewKeyTableDescriptor::_internal_set_key_table_action_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.key_table_action_column_.Set(value, GetArena()); } inline std::string* HierarchicalTableViewKeyTableDescriptor::_internal_mutable_key_table_action_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.key_table_action_column_.Mutable( GetArena()); } inline std::string* HierarchicalTableViewKeyTableDescriptor::release_key_table_action_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -3790,7 +3843,7 @@ inline std::string* HierarchicalTableViewKeyTableDescriptor::release_key_table_a return released; } inline void HierarchicalTableViewKeyTableDescriptor::set_allocated_key_table_action_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -3820,7 +3873,7 @@ inline bool HierarchicalTableSourceExportRequest::has_result_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_internal_result_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3829,7 +3882,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableS return _internal_result_table_id(); } inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_result_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_table_id_); } @@ -3842,7 +3895,7 @@ inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_res // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::release_result_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_table_id_; @@ -3861,7 +3914,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceE return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::unsafe_arena_release_result_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3870,22 +3923,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceE return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::_internal_mutable_result_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::mutable_result_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) return _msg; } inline void HierarchicalTableSourceExportRequest::set_allocated_result_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_table_id_); } @@ -3911,7 +3964,7 @@ inline bool HierarchicalTableSourceExportRequest::has_hierarchical_table_id() co return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_internal_hierarchical_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.hierarchical_table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3920,7 +3973,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableS return _internal_hierarchical_table_id(); } inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.hierarchical_table_id_); } @@ -3933,7 +3986,7 @@ inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_hie // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::release_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.hierarchical_table_id_; @@ -3952,7 +4005,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceE return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::unsafe_arena_release_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3961,22 +4014,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceE return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::_internal_mutable_hierarchical_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.hierarchical_table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.hierarchical_table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::mutable_hierarchical_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_hierarchical_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) return _msg; } inline void HierarchicalTableSourceExportRequest::set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.hierarchical_table_id_); } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc index ee54b2cd25f..400bf8c6d8e 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/inputtable.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/inputtable.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -25,8 +28,14 @@ namespace deephaven { namespace proto { namespace backplane { namespace grpc { - template -PROTOBUF_CONSTEXPR DeleteTableResponse::DeleteTableResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR DeleteTableResponse::DeleteTableResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct DeleteTableResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR DeleteTableResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DeleteTableResponseDefaultTypeInternal() {} @@ -37,8 +46,14 @@ struct DeleteTableResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteTableResponseDefaultTypeInternal _DeleteTableResponse_default_instance_; - template -PROTOBUF_CONSTEXPR AddTableResponse::AddTableResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AddTableResponse::AddTableResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AddTableResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR AddTableResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AddTableResponseDefaultTypeInternal() {} @@ -58,7 +73,13 @@ inline constexpr DeleteTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR DeleteTableRequest::DeleteTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct DeleteTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR DeleteTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DeleteTableRequestDefaultTypeInternal() {} @@ -78,7 +99,13 @@ inline constexpr AddTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AddTableRequest::AddTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AddTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AddTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AddTableRequestDefaultTypeInternal() {} @@ -94,70 +121,70 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2finputtable_2eproto[4]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2finputtable_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2finputtable_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2finputtable_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_.input_table_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_.table_to_add_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_.input_table_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_.table_to_remove_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) +const ::uint32_t + TableStruct_deephaven_2fproto_2finputtable_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_.input_table_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableRequest, _impl_.table_to_add_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AddTableResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_.input_table_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableRequest, _impl_.table_to_remove_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteTableResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, 10, -1, sizeof(::io::deephaven::proto::backplane::grpc::AddTableRequest)}, {12, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AddTableResponse)}, {20, 30, -1, sizeof(::io::deephaven::proto::backplane::grpc::DeleteTableRequest)}, {32, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::DeleteTableResponse)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_AddTableRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_AddTableResponse_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_DeleteTableRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_DeleteTableResponse_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2finputtable_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2finputtable_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n deephaven/proto/inputtable.proto\022!io.d" "eephaven.proto.backplane.grpc\032\034deephaven" "/proto/ticket.proto\"\222\001\n\017AddTableRequest\022" @@ -185,7 +212,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2finputtable_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2finputtable_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2finputtable_2eproto = { false, false, 823, @@ -198,28 +225,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2finputtable_2e schemas, file_default_instances, TableStruct_deephaven_2fproto_2finputtable_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2finputtable_2eproto, file_level_enum_descriptors_deephaven_2fproto_2finputtable_2eproto, file_level_service_descriptors_deephaven_2fproto_2finputtable_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2finputtable_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2finputtable_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2finputtable_2eproto(&descriptor_table_deephaven_2fproto_2finputtable_2eproto); namespace io { namespace deephaven { namespace proto { @@ -229,62 +237,57 @@ namespace grpc { class AddTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& input_table(const AddTableRequest* msg); - static void set_has_input_table(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& table_to_add(const AddTableRequest* msg); - static void set_has_table_to_add(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_Internal::input_table(const AddTableRequest* msg) { - return *msg->_impl_.input_table_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_Internal::table_to_add(const AddTableRequest* msg) { - return *msg->_impl_.table_to_add_; -} void AddTableRequest::clear_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_table_ != nullptr) _impl_.input_table_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void AddTableRequest::clear_table_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_to_add_ != nullptr) _impl_.table_to_add_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } AddTableRequest::AddTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AddTableRequest) } inline PROTOBUF_NDEBUG_INLINE AddTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} AddTableRequest::AddTableRequest( ::google::protobuf::Arena* arena, const AddTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AddTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.input_table_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_table_) - : nullptr; - _impl_.table_to_add_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_to_add_) - : nullptr; + _impl_.input_table_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.input_table_) + : nullptr; + _impl_.table_to_add_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.table_to_add_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AddTableRequest) } @@ -314,35 +317,34 @@ inline void AddTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AddTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AddTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.input_table_ != nullptr); - _impl_.input_table_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.table_to_add_ != nullptr); - _impl_.table_to_add_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AddTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AddTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AddTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AddTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AddTableRequest::ByteSizeLong, + &AddTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_._cached_size_), + false, + }, + &AddTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2finputtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AddTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> AddTableRequest::_table_ = { { @@ -355,8 +357,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> AddTableRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AddTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AddTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; {::_pbi::TcParser::FastMtS1, @@ -380,74 +386,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> AddTableRequest::_table_ = { }}, }; -::uint8_t* AddTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AddTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::input_table(this), - _Internal::input_table(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::table_to_add(this), - _Internal::table_to_add(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AddTableRequest) - return target; -} - -::size_t AddTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AddTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AddTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AddTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.input_table_); + ABSL_DCHECK(_impl_.input_table_ != nullptr); + _impl_.input_table_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.table_to_add_); + ABSL_DCHECK(_impl_.table_to_add_ != nullptr); + _impl_.table_to_add_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AddTableRequest::_class_data_ = { - AddTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AddTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AddTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AddTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AddTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AddTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AddTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AddTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.input_table_, this_._impl_.input_table_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.table_to_add_, this_._impl_.table_to_add_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AddTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AddTableRequest::ByteSizeLong(const MessageLite& base) { + const AddTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AddTableRequest::ByteSizeLong() const { + const AddTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AddTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.input_table_); + } + // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.table_to_add_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AddTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AddTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -456,14 +491,25 @@ void AddTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_input_table()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_input_table()); + ABSL_DCHECK(from._impl_.input_table_ != nullptr); + if (_this->_impl_.input_table_ == nullptr) { + _this->_impl_.input_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_table_); + } else { + _this->_impl_.input_table_->MergeFrom(*from._impl_.input_table_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_table_to_add()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_table_to_add()); + ABSL_DCHECK(from._impl_.table_to_add_ != nullptr); + if (_this->_impl_.table_to_add_ == nullptr) { + _this->_impl_.table_to_add_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_to_add_); + } else { + _this->_impl_.table_to_add_->MergeFrom(*from._impl_.table_to_add_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -474,13 +520,7 @@ void AddTableRequest::CopyFrom(const AddTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AddTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AddTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AddTableRequest::InternalSwap(AddTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -494,9 +534,7 @@ void AddTableRequest::InternalSwap(AddTableRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata AddTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2finputtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2finputtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2finputtable_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -505,13 +543,21 @@ class AddTableResponse::_Internal { }; AddTableResponse::AddTableResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AddTableResponse) } AddTableResponse::AddTableResponse( ::google::protobuf::Arena* arena, const AddTableResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AddTableResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -520,6 +566,61 @@ AddTableResponse::AddTableResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AddTableResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AddTableResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AddTableResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AddTableResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AddTableResponse::ByteSizeLong, + &AddTableResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AddTableResponse, _impl_._cached_size_), + false, + }, + &AddTableResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2finputtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AddTableResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AddTableResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AddTableResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -529,70 +630,63 @@ AddTableResponse::AddTableResponse( ::google::protobuf::Metadata AddTableResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2finputtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2finputtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2finputtable_2eproto[1]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class DeleteTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& input_table(const DeleteTableRequest* msg); - static void set_has_input_table(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& table_to_remove(const DeleteTableRequest* msg); - static void set_has_table_to_remove(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_Internal::input_table(const DeleteTableRequest* msg) { - return *msg->_impl_.input_table_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_Internal::table_to_remove(const DeleteTableRequest* msg) { - return *msg->_impl_.table_to_remove_; -} void DeleteTableRequest::clear_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_table_ != nullptr) _impl_.input_table_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void DeleteTableRequest::clear_table_to_remove() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_to_remove_ != nullptr) _impl_.table_to_remove_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } DeleteTableRequest::DeleteTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.DeleteTableRequest) } inline PROTOBUF_NDEBUG_INLINE DeleteTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} DeleteTableRequest::DeleteTableRequest( ::google::protobuf::Arena* arena, const DeleteTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DeleteTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.input_table_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_table_) - : nullptr; - _impl_.table_to_remove_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_to_remove_) - : nullptr; + _impl_.input_table_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.input_table_) + : nullptr; + _impl_.table_to_remove_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.table_to_remove_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DeleteTableRequest) } @@ -622,35 +716,34 @@ inline void DeleteTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void DeleteTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.input_table_ != nullptr); - _impl_.input_table_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.table_to_remove_ != nullptr); - _impl_.table_to_remove_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* DeleteTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DeleteTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_DeleteTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DeleteTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &DeleteTableRequest::ByteSizeLong, + &DeleteTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_._cached_size_), + false, + }, + &DeleteTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2finputtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DeleteTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DeleteTableRequest::_table_ = { { @@ -663,8 +756,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DeleteTableRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_DeleteTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DeleteTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; {::_pbi::TcParser::FastMtS1, @@ -688,74 +785,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> DeleteTableRequest::_table_ = { }}, }; -::uint8_t* DeleteTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::input_table(this), - _Internal::input_table(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::table_to_remove(this), - _Internal::table_to_remove(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - return target; -} - -::size_t DeleteTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void DeleteTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.input_table_); + ABSL_DCHECK(_impl_.input_table_ != nullptr); + _impl_.input_table_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.table_to_remove_); + ABSL_DCHECK(_impl_.table_to_remove_ != nullptr); + _impl_.table_to_remove_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData DeleteTableRequest::_class_data_ = { - DeleteTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* DeleteTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void DeleteTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* DeleteTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const DeleteTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* DeleteTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const DeleteTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.input_table_, this_._impl_.input_table_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.table_to_remove_, this_._impl_.table_to_remove_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DeleteTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t DeleteTableRequest::ByteSizeLong(const MessageLite& base) { + const DeleteTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t DeleteTableRequest::ByteSizeLong() const { + const DeleteTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.input_table_); + } + // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.table_to_remove_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void DeleteTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -764,14 +890,25 @@ void DeleteTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_input_table()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_input_table()); + ABSL_DCHECK(from._impl_.input_table_ != nullptr); + if (_this->_impl_.input_table_ == nullptr) { + _this->_impl_.input_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.input_table_); + } else { + _this->_impl_.input_table_->MergeFrom(*from._impl_.input_table_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_table_to_remove()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_table_to_remove()); + ABSL_DCHECK(from._impl_.table_to_remove_ != nullptr); + if (_this->_impl_.table_to_remove_ == nullptr) { + _this->_impl_.table_to_remove_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_to_remove_); + } else { + _this->_impl_.table_to_remove_->MergeFrom(*from._impl_.table_to_remove_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -782,13 +919,7 @@ void DeleteTableRequest::CopyFrom(const DeleteTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool DeleteTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* DeleteTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void DeleteTableRequest::InternalSwap(DeleteTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -802,9 +933,7 @@ void DeleteTableRequest::InternalSwap(DeleteTableRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata DeleteTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2finputtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2finputtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2finputtable_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -813,13 +942,21 @@ class DeleteTableResponse::_Internal { }; DeleteTableResponse::DeleteTableResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.DeleteTableResponse) } DeleteTableResponse::DeleteTableResponse( ::google::protobuf::Arena* arena, const DeleteTableResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DeleteTableResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -828,6 +965,61 @@ DeleteTableResponse::DeleteTableResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DeleteTableResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DeleteTableResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_DeleteTableResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DeleteTableResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &DeleteTableResponse::ByteSizeLong, + &DeleteTableResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DeleteTableResponse, _impl_._cached_size_), + false, + }, + &DeleteTableResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2finputtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DeleteTableResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> DeleteTableResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DeleteTableResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -837,9 +1029,7 @@ DeleteTableResponse::DeleteTableResponse( ::google::protobuf::Metadata DeleteTableResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2finputtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2finputtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2finputtable_2eproto[3]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -852,4 +1042,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2finputtable_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.h index 00baa4ead2a..154359cc611 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/inputtable.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2finputtable_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2finputtable_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -95,20 +89,17 @@ namespace grpc { // ------------------------------------------------------------------- -class DeleteTableResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteTableResponse) */ { +class DeleteTableResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteTableResponse) */ { public: inline DeleteTableResponse() : DeleteTableResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR DeleteTableResponse(::google::protobuf::internal::ConstantInitialized); - - inline DeleteTableResponse(const DeleteTableResponse& from) - : DeleteTableResponse(nullptr, from) {} - DeleteTableResponse(DeleteTableResponse&& from) noexcept - : DeleteTableResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR DeleteTableResponse( + ::google::protobuf::internal::ConstantInitialized); + inline DeleteTableResponse(const DeleteTableResponse& from) : DeleteTableResponse(nullptr, from) {} + inline DeleteTableResponse(DeleteTableResponse&& from) noexcept + : DeleteTableResponse(nullptr, std::move(from)) {} inline DeleteTableResponse& operator=(const DeleteTableResponse& from) { CopyFrom(from); return *this; @@ -116,9 +107,9 @@ class DeleteTableResponse final : inline DeleteTableResponse& operator=(DeleteTableResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -150,22 +141,17 @@ class DeleteTableResponse final : } static inline const DeleteTableResponse* internal_default_instance() { return reinterpret_cast( - &_DeleteTableResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(DeleteTableResponse& a, DeleteTableResponse& b) { - a.Swap(&b); + &_DeleteTableResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(DeleteTableResponse& a, DeleteTableResponse& b) { a.Swap(&b); } inline void Swap(DeleteTableResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -179,8 +165,8 @@ class DeleteTableResponse final : // implements Message ---------------------------------------------- - DeleteTableResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DeleteTableResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const DeleteTableResponse& from) { @@ -190,27 +176,41 @@ class DeleteTableResponse final : void MergeFrom(const DeleteTableResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.DeleteTableResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.DeleteTableResponse"; } + + protected: explicit DeleteTableResponse(::google::protobuf::Arena* arena); DeleteTableResponse(::google::protobuf::Arena* arena, const DeleteTableResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + DeleteTableResponse(::google::protobuf::Arena* arena, DeleteTableResponse&& from) noexcept + : DeleteTableResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.DeleteTableResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_DeleteTableResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -219,32 +219,30 @@ class DeleteTableResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DeleteTableResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2finputtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AddTableResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AddTableResponse) */ { +class AddTableResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AddTableResponse) */ { public: inline AddTableResponse() : AddTableResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AddTableResponse(::google::protobuf::internal::ConstantInitialized); - - inline AddTableResponse(const AddTableResponse& from) - : AddTableResponse(nullptr, from) {} - AddTableResponse(AddTableResponse&& from) noexcept - : AddTableResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AddTableResponse( + ::google::protobuf::internal::ConstantInitialized); + inline AddTableResponse(const AddTableResponse& from) : AddTableResponse(nullptr, from) {} + inline AddTableResponse(AddTableResponse&& from) noexcept + : AddTableResponse(nullptr, std::move(from)) {} inline AddTableResponse& operator=(const AddTableResponse& from) { CopyFrom(from); return *this; @@ -252,9 +250,9 @@ class AddTableResponse final : inline AddTableResponse& operator=(AddTableResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -286,22 +284,17 @@ class AddTableResponse final : } static inline const AddTableResponse* internal_default_instance() { return reinterpret_cast( - &_AddTableResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(AddTableResponse& a, AddTableResponse& b) { - a.Swap(&b); + &_AddTableResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(AddTableResponse& a, AddTableResponse& b) { a.Swap(&b); } inline void Swap(AddTableResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -315,8 +308,8 @@ class AddTableResponse final : // implements Message ---------------------------------------------- - AddTableResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AddTableResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AddTableResponse& from) { @@ -326,27 +319,41 @@ class AddTableResponse final : void MergeFrom(const AddTableResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AddTableResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AddTableResponse"; } + + protected: explicit AddTableResponse(::google::protobuf::Arena* arena); AddTableResponse(::google::protobuf::Arena* arena, const AddTableResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AddTableResponse(::google::protobuf::Arena* arena, AddTableResponse&& from) noexcept + : AddTableResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AddTableResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AddTableResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -355,33 +362,31 @@ class AddTableResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AddTableResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2finputtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class DeleteTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteTableRequest) */ { +class DeleteTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteTableRequest) */ { public: inline DeleteTableRequest() : DeleteTableRequest(nullptr) {} - ~DeleteTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR DeleteTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline DeleteTableRequest(const DeleteTableRequest& from) - : DeleteTableRequest(nullptr, from) {} - DeleteTableRequest(DeleteTableRequest&& from) noexcept - : DeleteTableRequest() { - *this = ::std::move(from); - } - + ~DeleteTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR DeleteTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline DeleteTableRequest(const DeleteTableRequest& from) : DeleteTableRequest(nullptr, from) {} + inline DeleteTableRequest(DeleteTableRequest&& from) noexcept + : DeleteTableRequest(nullptr, std::move(from)) {} inline DeleteTableRequest& operator=(const DeleteTableRequest& from) { CopyFrom(from); return *this; @@ -389,9 +394,9 @@ class DeleteTableRequest final : inline DeleteTableRequest& operator=(DeleteTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -423,22 +428,17 @@ class DeleteTableRequest final : } static inline const DeleteTableRequest* internal_default_instance() { return reinterpret_cast( - &_DeleteTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(DeleteTableRequest& a, DeleteTableRequest& b) { - a.Swap(&b); + &_DeleteTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(DeleteTableRequest& a, DeleteTableRequest& b) { a.Swap(&b); } inline void Swap(DeleteTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -452,52 +452,69 @@ class DeleteTableRequest final : // implements Message ---------------------------------------------- - DeleteTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DeleteTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const DeleteTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const DeleteTableRequest& from) { - DeleteTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const DeleteTableRequest& from) { DeleteTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(DeleteTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.DeleteTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.DeleteTableRequest"; } + + protected: explicit DeleteTableRequest(::google::protobuf::Arena* arena); DeleteTableRequest(::google::protobuf::Arena* arena, const DeleteTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + DeleteTableRequest(::google::protobuf::Arena* arena, DeleteTableRequest&& from) noexcept + : DeleteTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kInputTableFieldNumber = 1, kTableToRemoveFieldNumber = 2, @@ -535,12 +552,15 @@ class DeleteTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.DeleteTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_DeleteTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -548,13 +568,13 @@ class DeleteTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DeleteTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* input_table_; @@ -563,23 +583,21 @@ class DeleteTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2finputtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AddTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AddTableRequest) */ { +class AddTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AddTableRequest) */ { public: inline AddTableRequest() : AddTableRequest(nullptr) {} - ~AddTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR AddTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline AddTableRequest(const AddTableRequest& from) - : AddTableRequest(nullptr, from) {} - AddTableRequest(AddTableRequest&& from) noexcept - : AddTableRequest() { - *this = ::std::move(from); - } - + ~AddTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AddTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AddTableRequest(const AddTableRequest& from) : AddTableRequest(nullptr, from) {} + inline AddTableRequest(AddTableRequest&& from) noexcept + : AddTableRequest(nullptr, std::move(from)) {} inline AddTableRequest& operator=(const AddTableRequest& from) { CopyFrom(from); return *this; @@ -587,9 +605,9 @@ class AddTableRequest final : inline AddTableRequest& operator=(AddTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -621,22 +639,17 @@ class AddTableRequest final : } static inline const AddTableRequest* internal_default_instance() { return reinterpret_cast( - &_AddTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(AddTableRequest& a, AddTableRequest& b) { - a.Swap(&b); + &_AddTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(AddTableRequest& a, AddTableRequest& b) { a.Swap(&b); } inline void Swap(AddTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -650,52 +663,69 @@ class AddTableRequest final : // implements Message ---------------------------------------------- - AddTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AddTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AddTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AddTableRequest& from) { - AddTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const AddTableRequest& from) { AddTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AddTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AddTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AddTableRequest"; } + + protected: explicit AddTableRequest(::google::protobuf::Arena* arena); AddTableRequest(::google::protobuf::Arena* arena, const AddTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AddTableRequest(::google::protobuf::Arena* arena, AddTableRequest&& from) noexcept + : AddTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kInputTableFieldNumber = 1, kTableToAddFieldNumber = 2, @@ -733,12 +763,15 @@ class AddTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AddTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AddTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -746,13 +779,13 @@ class AddTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AddTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* input_table_; @@ -786,7 +819,7 @@ inline bool AddTableRequest::has_input_table() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_internal_input_table() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.input_table_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -795,7 +828,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::i return _internal_input_table(); } inline void AddTableRequest::unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); } @@ -808,7 +841,7 @@ inline void AddTableRequest::unsafe_arena_set_allocated_input_table(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::release_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_table_; @@ -827,7 +860,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_arena_release_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) _impl_._has_bits_[0] &= ~0x00000001u; @@ -836,22 +869,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::_internal_mutable_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_table_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.input_table_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::mutable_input_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_input_table(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) return _msg; } inline void AddTableRequest::set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); } @@ -877,7 +910,7 @@ inline bool AddTableRequest::has_table_to_add() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_internal_table_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.table_to_add_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -886,7 +919,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::t return _internal_table_to_add(); } inline void AddTableRequest::unsafe_arena_set_allocated_table_to_add(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_add_); } @@ -899,7 +932,7 @@ inline void AddTableRequest::unsafe_arena_set_allocated_table_to_add(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::release_table_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_to_add_; @@ -918,7 +951,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_arena_release_table_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) _impl_._has_bits_[0] &= ~0x00000002u; @@ -927,22 +960,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::_internal_mutable_table_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_to_add_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.table_to_add_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.table_to_add_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::mutable_table_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_table_to_add(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) return _msg; } inline void AddTableRequest::set_allocated_table_to_add(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_add_); } @@ -976,7 +1009,7 @@ inline bool DeleteTableRequest::has_input_table() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_internal_input_table() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.input_table_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -985,7 +1018,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest return _internal_input_table(); } inline void DeleteTableRequest::unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); } @@ -998,7 +1031,7 @@ inline void DeleteTableRequest::unsafe_arena_set_allocated_input_table(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::release_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_table_; @@ -1017,7 +1050,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsafe_arena_release_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1026,22 +1059,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::_internal_mutable_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.input_table_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.input_table_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::mutable_input_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_input_table(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) return _msg; } inline void DeleteTableRequest::set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); } @@ -1067,7 +1100,7 @@ inline bool DeleteTableRequest::has_table_to_remove() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_internal_table_to_remove() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.table_to_remove_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1076,7 +1109,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest return _internal_table_to_remove(); } inline void DeleteTableRequest::unsafe_arena_set_allocated_table_to_remove(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_remove_); } @@ -1089,7 +1122,7 @@ inline void DeleteTableRequest::unsafe_arena_set_allocated_table_to_remove(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::release_table_to_remove() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_to_remove_; @@ -1108,7 +1141,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsafe_arena_release_table_to_remove() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) _impl_._has_bits_[0] &= ~0x00000002u; @@ -1117,22 +1150,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::_internal_mutable_table_to_remove() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_to_remove_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.table_to_remove_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.table_to_remove_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::mutable_table_to_remove() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_table_to_remove(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) return _msg; } inline void DeleteTableRequest::set_allocated_table_to_remove(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_remove_); } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc index be7a90f8b13..ea5f444d72a 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/object.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/object.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -25,8 +28,14 @@ namespace deephaven { namespace proto { namespace backplane { namespace grpc { - template -PROTOBUF_CONSTEXPR BrowserNextResponse::BrowserNextResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR BrowserNextResponse::BrowserNextResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct BrowserNextResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR BrowserNextResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BrowserNextResponseDefaultTypeInternal() {} @@ -48,7 +57,13 @@ inline constexpr ServerData::Impl_::Impl_( template PROTOBUF_CONSTEXPR ServerData::ServerData(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ServerDataDefaultTypeInternal { PROTOBUF_CONSTEXPR ServerDataDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ServerDataDefaultTypeInternal() {} @@ -73,7 +88,13 @@ inline constexpr FetchObjectResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR FetchObjectResponse::FetchObjectResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FetchObjectResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR FetchObjectResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FetchObjectResponseDefaultTypeInternal() {} @@ -92,7 +113,13 @@ inline constexpr FetchObjectRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR FetchObjectRequest::FetchObjectRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FetchObjectRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR FetchObjectRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FetchObjectRequestDefaultTypeInternal() {} @@ -111,7 +138,13 @@ inline constexpr ConnectRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ConnectRequest::ConnectRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ConnectRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ConnectRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConnectRequestDefaultTypeInternal() {} @@ -133,7 +166,13 @@ inline constexpr ClientData::Impl_::Impl_( template PROTOBUF_CONSTEXPR ClientData::ClientData(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ClientDataDefaultTypeInternal { PROTOBUF_CONSTEXPR ClientDataDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ClientDataDefaultTypeInternal() {} @@ -153,7 +192,13 @@ inline constexpr StreamResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR StreamResponse::StreamResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct StreamResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR StreamResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~StreamResponseDefaultTypeInternal() {} @@ -173,7 +218,13 @@ inline constexpr StreamRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR StreamRequest::StreamRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct StreamRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR StreamRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~StreamRequestDefaultTypeInternal() {} @@ -189,97 +240,97 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fobject_2eproto[8]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fobject_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fobject_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fobject_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _impl_.source_id_), - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.data_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.typed_export_ids_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _impl_.source_id_), - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _impl_.payload_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _impl_.references_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _impl_.payload_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _impl_.exported_references_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_.message_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_.message_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BrowserNextResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) +const ::uint32_t + TableStruct_deephaven_2fproto_2fobject_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectRequest, _impl_.source_id_), + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.data_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchObjectResponse, _impl_.typed_export_ids_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ConnectRequest, _impl_.source_id_), + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _impl_.payload_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ClientData, _impl_.references_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _impl_.payload_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ServerData, _impl_.exported_references_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_.message_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_.message_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BrowserNextResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, 9, -1, sizeof(::io::deephaven::proto::backplane::grpc::FetchObjectRequest)}, {10, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::FetchObjectResponse)}, {21, 30, -1, sizeof(::io::deephaven::proto::backplane::grpc::ConnectRequest)}, @@ -289,7 +340,6 @@ static const ::_pbi::MigrationSchema {62, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::StreamResponse)}, {72, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::BrowserNextResponse)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_FetchObjectRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_FetchObjectResponse_default_instance_._instance, @@ -300,7 +350,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_StreamResponse_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_BrowserNextResponse_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fobject_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fobject_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\034deephaven/proto/object.proto\022!io.deeph" "aven.proto.backplane.grpc\032\034deephaven/pro" "to/ticket.proto\"W\n\022FetchObjectRequest\022A\n" @@ -345,7 +396,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fobject_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fobject_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fobject_2eproto = { false, false, 1483, @@ -358,28 +409,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fobject_2eprot schemas, file_default_instances, TableStruct_deephaven_2fproto_2fobject_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fobject_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fobject_2eproto, file_level_service_descriptors_deephaven_2fproto_2fobject_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fobject_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fobject_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fobject_2eproto(&descriptor_table_deephaven_2fproto_2fobject_2eproto); namespace io { namespace deephaven { namespace proto { @@ -389,47 +421,49 @@ namespace grpc { class FetchObjectRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TypedTicket& source_id(const FetchObjectRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRequest::_Internal::source_id(const FetchObjectRequest* msg) { - return *msg->_impl_.source_id_; -} void FetchObjectRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } FetchObjectRequest::FetchObjectRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FetchObjectRequest) } inline PROTOBUF_NDEBUG_INLINE FetchObjectRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} FetchObjectRequest::FetchObjectRequest( ::google::protobuf::Arena* arena, const FetchObjectRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FetchObjectRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchObjectRequest) } @@ -453,29 +487,34 @@ inline void FetchObjectRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FetchObjectRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FetchObjectRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FetchObjectRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FetchObjectRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FetchObjectRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FetchObjectRequest::ByteSizeLong, + &FetchObjectRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_._cached_size_), + false, + }, + &FetchObjectRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FetchObjectRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> FetchObjectRequest::_table_ = { { @@ -488,8 +527,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> FetchObjectRequest::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FetchObjectRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchObjectRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; {::_pbi::TcParser::FastMtS1, @@ -506,68 +549,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> FetchObjectRequest::_table_ = { }}, }; -::uint8_t* FetchObjectRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - return target; -} - -::size_t FetchObjectRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FetchObjectRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FetchObjectRequest::_class_data_ = { - FetchObjectRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FetchObjectRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FetchObjectRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FetchObjectRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FetchObjectRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FetchObjectRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FetchObjectRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchObjectRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FetchObjectRequest::ByteSizeLong(const MessageLite& base) { + const FetchObjectRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FetchObjectRequest::ByteSizeLong() const { + const FetchObjectRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FetchObjectRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TypedTicket::MergeFrom( - from._internal_source_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -578,13 +654,7 @@ void FetchObjectRequest::CopyFrom(const FetchObjectRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FetchObjectRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FetchObjectRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FetchObjectRequest::InternalSwap(FetchObjectRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -593,9 +663,7 @@ void FetchObjectRequest::InternalSwap(FetchObjectRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata FetchObjectRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -604,17 +672,21 @@ class FetchObjectResponse::_Internal { }; void FetchObjectResponse::clear_typed_export_ids() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.typed_export_ids_.Clear(); } FetchObjectResponse::FetchObjectResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FetchObjectResponse) } inline PROTOBUF_NDEBUG_INLINE FetchObjectResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FetchObjectResponse& from_msg) : typed_export_ids_{visibility, arena, from.typed_export_ids_}, type_(arena, from.type_), data_(arena, from.data_), @@ -623,12 +695,16 @@ inline PROTOBUF_NDEBUG_INLINE FetchObjectResponse::Impl_::Impl_( FetchObjectResponse::FetchObjectResponse( ::google::protobuf::Arena* arena, const FetchObjectResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FetchObjectResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchObjectResponse) } @@ -655,26 +731,34 @@ inline void FetchObjectResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FetchObjectResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.typed_export_ids_.Clear(); - _impl_.type_.ClearToEmpty(); - _impl_.data_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FetchObjectResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FetchObjectResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FetchObjectResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FetchObjectResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FetchObjectResponse::ByteSizeLong, + &FetchObjectResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_._cached_size_), + false, + }, + &FetchObjectResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FetchObjectResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 66, 2> FetchObjectResponse::_table_ = { { @@ -687,8 +771,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 66, 2> FetchObjectResponse::_table_ = { 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FetchObjectResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchObjectResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string type = 1; @@ -721,82 +809,109 @@ const ::_pbi::TcParseTable<2, 3, 1, 66, 2> FetchObjectResponse::_table_ = { }}, }; -::uint8_t* FetchObjectResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string type = 1; - if (!this->_internal_type().empty()) { - const std::string& _s = this->_internal_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchObjectResponse.type"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // bytes data = 2; - if (!this->_internal_data().empty()) { - const std::string& _s = this->_internal_data(); - target = stream->WriteBytesMaybeAliased(2, _s, target); - } - - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_typed_export_ids_size()); i < n; i++) { - const auto& repfield = this->_internal_typed_export_ids().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - return target; -} - -::size_t FetchObjectResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FetchObjectResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; - total_size += 1UL * this->_internal_typed_export_ids_size(); - for (const auto& msg : this->_internal_typed_export_ids()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string type = 1; - if (!this->_internal_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_type()); - } - - // bytes data = 2; - if (!this->_internal_data().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_data()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FetchObjectResponse::_class_data_ = { - FetchObjectResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FetchObjectResponse::GetClassData() const { - return &_class_data_; + _impl_.typed_export_ids_.Clear(); + _impl_.type_.ClearToEmpty(); + _impl_.data_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FetchObjectResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FetchObjectResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FetchObjectResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FetchObjectResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FetchObjectResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string type = 1; + if (!this_._internal_type().empty()) { + const std::string& _s = this_._internal_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchObjectResponse.type"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // bytes data = 2; + if (!this_._internal_data().empty()) { + const std::string& _s = this_._internal_data(); + target = stream->WriteBytesMaybeAliased(2, _s, target); + } + + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_typed_export_ids_size()); + i < n; i++) { + const auto& repfield = this_._internal_typed_export_ids().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchObjectResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FetchObjectResponse::ByteSizeLong(const MessageLite& base) { + const FetchObjectResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FetchObjectResponse::ByteSizeLong() const { + const FetchObjectResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; + { + total_size += 1UL * this_._internal_typed_export_ids_size(); + for (const auto& msg : this_._internal_typed_export_ids()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string type = 1; + if (!this_._internal_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_type()); + } + // bytes data = 2; + if (!this_._internal_data().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_data()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FetchObjectResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) @@ -822,13 +937,7 @@ void FetchObjectResponse::CopyFrom(const FetchObjectResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FetchObjectResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FetchObjectResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FetchObjectResponse::InternalSwap(FetchObjectResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -840,55 +949,55 @@ void FetchObjectResponse::InternalSwap(FetchObjectResponse* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata FetchObjectResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ConnectRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TypedTicket& source_id(const ConnectRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TypedTicket& ConnectRequest::_Internal::source_id(const ConnectRequest* msg) { - return *msg->_impl_.source_id_; -} void ConnectRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ConnectRequest::ConnectRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ConnectRequest) } inline PROTOBUF_NDEBUG_INLINE ConnectRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ConnectRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} ConnectRequest::ConnectRequest( ::google::protobuf::Arena* arena, const ConnectRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ConnectRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ConnectRequest) } @@ -912,29 +1021,34 @@ inline void ConnectRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ConnectRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConnectRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ConnectRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ConnectRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ConnectRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ConnectRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ConnectRequest::ByteSizeLong, + &ConnectRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_._cached_size_), + false, + }, + &ConnectRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ConnectRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ConnectRequest::_table_ = { { @@ -947,8 +1061,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ConnectRequest::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ConnectRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConnectRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; {::_pbi::TcParser::FastMtS1, @@ -965,68 +1083,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ConnectRequest::_table_ = { }}, }; -::uint8_t* ConnectRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConnectRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConnectRequest) - return target; -} - -::size_t ConnectRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConnectRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ConnectRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ConnectRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ConnectRequest::_class_data_ = { - ConnectRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ConnectRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ConnectRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ConnectRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ConnectRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ConnectRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ConnectRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ConnectRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ConnectRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ConnectRequest::ByteSizeLong(const MessageLite& base) { + const ConnectRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ConnectRequest::ByteSizeLong() const { + const ConnectRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ConnectRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ConnectRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ConnectRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TypedTicket::MergeFrom( - from._internal_source_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1037,13 +1188,7 @@ void ConnectRequest::CopyFrom(const ConnectRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ConnectRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ConnectRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ConnectRequest::InternalSwap(ConnectRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1052,9 +1197,7 @@ void ConnectRequest::InternalSwap(ConnectRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ConnectRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1063,17 +1206,21 @@ class ClientData::_Internal { }; void ClientData::clear_references() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.references_.Clear(); } ClientData::ClientData(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ClientData) } inline PROTOBUF_NDEBUG_INLINE ClientData::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ClientData& from_msg) : references_{visibility, arena, from.references_}, payload_(arena, from.payload_), _cached_size_{0} {} @@ -1081,12 +1228,16 @@ inline PROTOBUF_NDEBUG_INLINE ClientData::Impl_::Impl_( ClientData::ClientData( ::google::protobuf::Arena* arena, const ClientData& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ClientData* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ClientData) } @@ -1111,25 +1262,34 @@ inline void ClientData::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ClientData::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ClientData) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.references_.Clear(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ClientData::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ClientData::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ClientData_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ClientData::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ClientData::ByteSizeLong, + &ClientData::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ClientData, _impl_._cached_size_), + false, + }, + &ClientData::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ClientData::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ClientData::_table_ = { { @@ -1142,8 +1302,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ClientData::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ClientData_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ClientData>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; {::_pbi::TcParser::FastMtR1, @@ -1166,68 +1330,95 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ClientData::_table_ = { }}, }; -::uint8_t* ClientData::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ClientData) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes payload = 1; - if (!this->_internal_payload().empty()) { - const std::string& _s = this->_internal_payload(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_references_size()); i < n; i++) { - const auto& repfield = this->_internal_references().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ClientData) - return target; -} - -::size_t ClientData::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ClientData) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ClientData::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ClientData) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; - total_size += 1UL * this->_internal_references_size(); - for (const auto& msg : this->_internal_references()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // bytes payload = 1; - if (!this->_internal_payload().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_payload()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ClientData::_class_data_ = { - ClientData::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ClientData::GetClassData() const { - return &_class_data_; + _impl_.references_.Clear(); + _impl_.payload_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ClientData::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ClientData::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ClientData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ClientData::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ClientData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ClientData) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes payload = 1; + if (!this_._internal_payload().empty()) { + const std::string& _s = this_._internal_payload(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_references_size()); + i < n; i++) { + const auto& repfield = this_._internal_references().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ClientData) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ClientData::ByteSizeLong(const MessageLite& base) { + const ClientData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ClientData::ByteSizeLong() const { + const ClientData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ClientData) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; + { + total_size += 1UL * this_._internal_references_size(); + for (const auto& msg : this_._internal_references()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // bytes payload = 1; + if (!this_._internal_payload().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_payload()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ClientData::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ClientData) @@ -1250,13 +1441,7 @@ void ClientData::CopyFrom(const ClientData& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ClientData::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ClientData::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ClientData::InternalSwap(ClientData* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1267,9 +1452,7 @@ void ClientData::InternalSwap(ClientData* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ClientData::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1278,17 +1461,21 @@ class ServerData::_Internal { }; void ServerData::clear_exported_references() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.exported_references_.Clear(); } ServerData::ServerData(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ServerData) } inline PROTOBUF_NDEBUG_INLINE ServerData::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ServerData& from_msg) : exported_references_{visibility, arena, from.exported_references_}, payload_(arena, from.payload_), _cached_size_{0} {} @@ -1296,12 +1483,16 @@ inline PROTOBUF_NDEBUG_INLINE ServerData::Impl_::Impl_( ServerData::ServerData( ::google::protobuf::Arena* arena, const ServerData& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ServerData* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ServerData) } @@ -1326,25 +1517,34 @@ inline void ServerData::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ServerData::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ServerData) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.exported_references_.Clear(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ServerData::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ServerData::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ServerData_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ServerData::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ServerData::ByteSizeLong, + &ServerData::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ServerData, _impl_._cached_size_), + false, + }, + &ServerData::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ServerData::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ServerData::_table_ = { { @@ -1357,8 +1557,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ServerData::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ServerData_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ServerData>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; {::_pbi::TcParser::FastMtR1, @@ -1381,68 +1585,95 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> ServerData::_table_ = { }}, }; -::uint8_t* ServerData::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ServerData) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes payload = 1; - if (!this->_internal_payload().empty()) { - const std::string& _s = this->_internal_payload(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_exported_references_size()); i < n; i++) { - const auto& repfield = this->_internal_exported_references().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ServerData) - return target; -} - -::size_t ServerData::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ServerData) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ServerData::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ServerData) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; - total_size += 1UL * this->_internal_exported_references_size(); - for (const auto& msg : this->_internal_exported_references()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // bytes payload = 1; - if (!this->_internal_payload().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_payload()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ServerData::_class_data_ = { - ServerData::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ServerData::GetClassData() const { - return &_class_data_; + _impl_.exported_references_.Clear(); + _impl_.payload_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ServerData::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ServerData::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ServerData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ServerData::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ServerData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ServerData) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes payload = 1; + if (!this_._internal_payload().empty()) { + const std::string& _s = this_._internal_payload(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_exported_references_size()); + i < n; i++) { + const auto& repfield = this_._internal_exported_references().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ServerData) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ServerData::ByteSizeLong(const MessageLite& base) { + const ServerData& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ServerData::ByteSizeLong() const { + const ServerData& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ServerData) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; + { + total_size += 1UL * this_._internal_exported_references_size(); + for (const auto& msg : this_._internal_exported_references()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // bytes payload = 1; + if (!this_._internal_payload().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_payload()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ServerData::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ServerData) @@ -1465,13 +1696,7 @@ void ServerData::CopyFrom(const ServerData& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ServerData::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ServerData::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ServerData::InternalSwap(ServerData* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1482,26 +1707,16 @@ void ServerData::InternalSwap(ServerData* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ServerData::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[4]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class StreamRequest::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::ConnectRequest& connect(const StreamRequest* msg); - static const ::io::deephaven::proto::backplane::grpc::ClientData& data(const StreamRequest* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamRequest, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::ConnectRequest& StreamRequest::_Internal::connect(const StreamRequest* msg) { - return *msg->_impl_.message_.connect_; -} -const ::io::deephaven::proto::backplane::grpc::ClientData& StreamRequest::_Internal::data(const StreamRequest* msg) { - return *msg->_impl_.message_.data_; -} void StreamRequest::set_allocated_connect(::io::deephaven::proto::backplane::grpc::ConnectRequest* connect) { ::google::protobuf::Arena* message_arena = GetArena(); clear_message(); @@ -1529,13 +1744,17 @@ void StreamRequest::set_allocated_data(::io::deephaven::proto::backplane::grpc:: // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.StreamRequest.data) } StreamRequest::StreamRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.StreamRequest) } inline PROTOBUF_NDEBUG_INLINE StreamRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::StreamRequest& from_msg) : message_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -1543,20 +1762,24 @@ inline PROTOBUF_NDEBUG_INLINE StreamRequest::Impl_::Impl_( StreamRequest::StreamRequest( ::google::protobuf::Arena* arena, const StreamRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE StreamRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (message_case()) { case MESSAGE_NOT_SET: break; case kConnect: - _impl_.message_.connect_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ConnectRequest>(arena, *from._impl_.message_.connect_); + _impl_.message_.connect_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ConnectRequest>(arena, *from._impl_.message_.connect_); break; case kData: - _impl_.message_.data_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ClientData>(arena, *from._impl_.message_.data_); + _impl_.message_.data_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ClientData>(arena, *from._impl_.message_.data_); break; } @@ -1587,17 +1810,21 @@ inline void StreamRequest::SharedDtor() { void StreamRequest::clear_message() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.StreamRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (message_case()) { case kConnect: { if (GetArena() == nullptr) { delete _impl_.message_.connect_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.connect_); } break; } case kData: { if (GetArena() == nullptr) { delete _impl_.message_.data_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.data_); } break; } @@ -1609,24 +1836,34 @@ void StreamRequest::clear_message() { } -PROTOBUF_NOINLINE void StreamRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.StreamRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_message(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* StreamRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + StreamRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_StreamRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &StreamRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &StreamRequest::ByteSizeLong, + &StreamRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(StreamRequest, _impl_._cached_size_), + false, + }, + &StreamRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* StreamRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 2, 2, 0, 2> StreamRequest::_table_ = { { @@ -1639,8 +1876,12 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> StreamRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_StreamRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::StreamRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -1659,95 +1900,132 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> StreamRequest::_table_ = { }}, }; -::uint8_t* StreamRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.StreamRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (message_case()) { - case kConnect: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::connect(this), - _Internal::connect(this).GetCachedSize(), target, stream); - break; - } - case kData: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::data(this), - _Internal::data(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.StreamRequest) - return target; -} - -::size_t StreamRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.StreamRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void StreamRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.StreamRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (message_case()) { - // .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1; - case kConnect: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.message_.connect_); - break; - } - // .io.deephaven.proto.backplane.grpc.ClientData data = 2; - case kData: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.message_.data_); - break; - } - case MESSAGE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData StreamRequest::_class_data_ = { - StreamRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* StreamRequest::GetClassData() const { - return &_class_data_; + clear_message(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void StreamRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* StreamRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const StreamRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* StreamRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const StreamRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.StreamRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.message_case()) { + case kConnect: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.message_.connect_, this_._impl_.message_.connect_->GetCachedSize(), target, + stream); + break; + } + case kData: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.message_.data_, this_._impl_.message_.data_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.StreamRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t StreamRequest::ByteSizeLong(const MessageLite& base) { + const StreamRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t StreamRequest::ByteSizeLong() const { + const StreamRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.StreamRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.message_case()) { + // .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1; + case kConnect: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.message_.connect_); + break; + } + // .io.deephaven.proto.backplane.grpc.ClientData data = 2; + case kData: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.message_.data_); + break; + } + case MESSAGE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void StreamRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.StreamRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.message_case()) { - case kConnect: { - _this->_internal_mutable_connect()->::io::deephaven::proto::backplane::grpc::ConnectRequest::MergeFrom( - from._internal_connect()); - break; - } - case kData: { - _this->_internal_mutable_data()->::io::deephaven::proto::backplane::grpc::ClientData::MergeFrom( - from._internal_data()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_message(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case MESSAGE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kConnect: { + if (oneof_needs_init) { + _this->_impl_.message_.connect_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ConnectRequest>(arena, *from._impl_.message_.connect_); + } else { + _this->_impl_.message_.connect_->MergeFrom(from._internal_connect()); + } + break; + } + case kData: { + if (oneof_needs_init) { + _this->_impl_.message_.data_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ClientData>(arena, *from._impl_.message_.data_); + } else { + _this->_impl_.message_.data_->MergeFrom(from._internal_data()); + } + break; + } + case MESSAGE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -1760,13 +2038,7 @@ void StreamRequest::CopyFrom(const StreamRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool StreamRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* StreamRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void StreamRequest::InternalSwap(StreamRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1775,22 +2047,16 @@ void StreamRequest::InternalSwap(StreamRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata StreamRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[5]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class StreamResponse::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::ServerData& data(const StreamResponse* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::StreamResponse, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::ServerData& StreamResponse::_Internal::data(const StreamResponse* msg) { - return *msg->_impl_.message_.data_; -} void StreamResponse::set_allocated_data(::io::deephaven::proto::backplane::grpc::ServerData* data) { ::google::protobuf::Arena* message_arena = GetArena(); clear_message(); @@ -1805,13 +2071,17 @@ void StreamResponse::set_allocated_data(::io::deephaven::proto::backplane::grpc: // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.StreamResponse.data) } StreamResponse::StreamResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.StreamResponse) } inline PROTOBUF_NDEBUG_INLINE StreamResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::StreamResponse& from_msg) : message_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -1819,17 +2089,21 @@ inline PROTOBUF_NDEBUG_INLINE StreamResponse::Impl_::Impl_( StreamResponse::StreamResponse( ::google::protobuf::Arena* arena, const StreamResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE StreamResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (message_case()) { case MESSAGE_NOT_SET: break; case kData: - _impl_.message_.data_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ServerData>(arena, *from._impl_.message_.data_); + _impl_.message_.data_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ServerData>(arena, *from._impl_.message_.data_); break; } @@ -1860,11 +2134,13 @@ inline void StreamResponse::SharedDtor() { void StreamResponse::clear_message() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.StreamResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (message_case()) { case kData: { if (GetArena() == nullptr) { delete _impl_.message_.data_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.data_); } break; } @@ -1876,24 +2152,34 @@ void StreamResponse::clear_message() { } -PROTOBUF_NOINLINE void StreamResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.StreamResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_message(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* StreamResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + StreamResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_StreamResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &StreamResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &StreamResponse::ByteSizeLong, + &StreamResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(StreamResponse, _impl_._cached_size_), + false, + }, + &StreamResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* StreamResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StreamResponse::_table_ = { { @@ -1906,8 +2192,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StreamResponse::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_StreamResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::StreamResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -1922,75 +2212,108 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> StreamResponse::_table_ = { }}, }; -::uint8_t* StreamResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.StreamResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.ServerData data = 1; - if (message_case() == kData) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::data(this), - _Internal::data(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.StreamResponse) - return target; -} - -::size_t StreamResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.StreamResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void StreamResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.StreamResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (message_case()) { - // .io.deephaven.proto.backplane.grpc.ServerData data = 1; - case kData: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.message_.data_); - break; - } - case MESSAGE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData StreamResponse::_class_data_ = { - StreamResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* StreamResponse::GetClassData() const { - return &_class_data_; + clear_message(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void StreamResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* StreamResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const StreamResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* StreamResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const StreamResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.StreamResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.ServerData data = 1; + if (this_.message_case() == kData) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.message_.data_, this_._impl_.message_.data_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.StreamResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t StreamResponse::ByteSizeLong(const MessageLite& base) { + const StreamResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t StreamResponse::ByteSizeLong() const { + const StreamResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.StreamResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.message_case()) { + // .io.deephaven.proto.backplane.grpc.ServerData data = 1; + case kData: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.message_.data_); + break; + } + case MESSAGE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void StreamResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.StreamResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.message_case()) { - case kData: { - _this->_internal_mutable_data()->::io::deephaven::proto::backplane::grpc::ServerData::MergeFrom( - from._internal_data()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_message(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case MESSAGE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kData: { + if (oneof_needs_init) { + _this->_impl_.message_.data_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ServerData>(arena, *from._impl_.message_.data_); + } else { + _this->_impl_.message_.data_->MergeFrom(from._internal_data()); + } + break; + } + case MESSAGE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -2003,13 +2326,7 @@ void StreamResponse::CopyFrom(const StreamResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool StreamResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* StreamResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void StreamResponse::InternalSwap(StreamResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -2018,9 +2335,7 @@ void StreamResponse::InternalSwap(StreamResponse* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata StreamResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2029,13 +2344,21 @@ class BrowserNextResponse::_Internal { }; BrowserNextResponse::BrowserNextResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.BrowserNextResponse) } BrowserNextResponse::BrowserNextResponse( ::google::protobuf::Arena* arena, const BrowserNextResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BrowserNextResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2044,6 +2367,61 @@ BrowserNextResponse::BrowserNextResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.BrowserNextResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BrowserNextResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_BrowserNextResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BrowserNextResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &BrowserNextResponse::ByteSizeLong, + &BrowserNextResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BrowserNextResponse, _impl_._cached_size_), + false, + }, + &BrowserNextResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fobject_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BrowserNextResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> BrowserNextResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::BrowserNextResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2053,9 +2431,7 @@ BrowserNextResponse::BrowserNextResponse( ::google::protobuf::Metadata BrowserNextResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fobject_2eproto_getter, &descriptor_table_deephaven_2fproto_2fobject_2eproto_once, - file_level_metadata_deephaven_2fproto_2fobject_2eproto[7]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -2068,4 +2444,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fobject_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.h index 4dcc2ce24f5..8bd0766fac4 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/object.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fobject_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fobject_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -107,20 +101,17 @@ namespace grpc { // ------------------------------------------------------------------- -class BrowserNextResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BrowserNextResponse) */ { +class BrowserNextResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BrowserNextResponse) */ { public: inline BrowserNextResponse() : BrowserNextResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR BrowserNextResponse(::google::protobuf::internal::ConstantInitialized); - - inline BrowserNextResponse(const BrowserNextResponse& from) - : BrowserNextResponse(nullptr, from) {} - BrowserNextResponse(BrowserNextResponse&& from) noexcept - : BrowserNextResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR BrowserNextResponse( + ::google::protobuf::internal::ConstantInitialized); + inline BrowserNextResponse(const BrowserNextResponse& from) : BrowserNextResponse(nullptr, from) {} + inline BrowserNextResponse(BrowserNextResponse&& from) noexcept + : BrowserNextResponse(nullptr, std::move(from)) {} inline BrowserNextResponse& operator=(const BrowserNextResponse& from) { CopyFrom(from); return *this; @@ -128,9 +119,9 @@ class BrowserNextResponse final : inline BrowserNextResponse& operator=(BrowserNextResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -162,22 +153,17 @@ class BrowserNextResponse final : } static inline const BrowserNextResponse* internal_default_instance() { return reinterpret_cast( - &_BrowserNextResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(BrowserNextResponse& a, BrowserNextResponse& b) { - a.Swap(&b); + &_BrowserNextResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(BrowserNextResponse& a, BrowserNextResponse& b) { a.Swap(&b); } inline void Swap(BrowserNextResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -191,8 +177,8 @@ class BrowserNextResponse final : // implements Message ---------------------------------------------- - BrowserNextResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BrowserNextResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const BrowserNextResponse& from) { @@ -202,27 +188,41 @@ class BrowserNextResponse final : void MergeFrom(const BrowserNextResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.BrowserNextResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.BrowserNextResponse"; } + + protected: explicit BrowserNextResponse(::google::protobuf::Arena* arena); BrowserNextResponse(::google::protobuf::Arena* arena, const BrowserNextResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + BrowserNextResponse(::google::protobuf::Arena* arena, BrowserNextResponse&& from) noexcept + : BrowserNextResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.BrowserNextResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_BrowserNextResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -231,33 +231,31 @@ class BrowserNextResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BrowserNextResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ServerData final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ServerData) */ { +class ServerData final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ServerData) */ { public: inline ServerData() : ServerData(nullptr) {} - ~ServerData() override; - template - explicit PROTOBUF_CONSTEXPR ServerData(::google::protobuf::internal::ConstantInitialized); - - inline ServerData(const ServerData& from) - : ServerData(nullptr, from) {} - ServerData(ServerData&& from) noexcept - : ServerData() { - *this = ::std::move(from); - } - + ~ServerData() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ServerData( + ::google::protobuf::internal::ConstantInitialized); + + inline ServerData(const ServerData& from) : ServerData(nullptr, from) {} + inline ServerData(ServerData&& from) noexcept + : ServerData(nullptr, std::move(from)) {} inline ServerData& operator=(const ServerData& from) { CopyFrom(from); return *this; @@ -265,9 +263,9 @@ class ServerData final : inline ServerData& operator=(ServerData&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -299,22 +297,17 @@ class ServerData final : } static inline const ServerData* internal_default_instance() { return reinterpret_cast( - &_ServerData_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(ServerData& a, ServerData& b) { - a.Swap(&b); + &_ServerData_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(ServerData& a, ServerData& b) { a.Swap(&b); } inline void Swap(ServerData* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -328,52 +321,69 @@ class ServerData final : // implements Message ---------------------------------------------- - ServerData* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ServerData* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ServerData& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ServerData& from) { - ServerData::MergeImpl(*this, from); - } + void MergeFrom(const ServerData& from) { ServerData::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ServerData* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ServerData"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ServerData"; } + + protected: explicit ServerData(::google::protobuf::Arena* arena); ServerData(::google::protobuf::Arena* arena, const ServerData& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ServerData(::google::protobuf::Arena* arena, ServerData&& from) noexcept + : ServerData(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kExportedReferencesFieldNumber = 2, kPayloadFieldNumber = 1, @@ -386,16 +396,15 @@ class ServerData final : public: void clear_exported_references() ; ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_exported_references(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >* - mutable_exported_references(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* mutable_exported_references(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& _internal_exported_references() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* _internal_mutable_exported_references(); public: const ::io::deephaven::proto::backplane::grpc::TypedTicket& exported_references(int index) const; ::io::deephaven::proto::backplane::grpc::TypedTicket* add_exported_references(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >& - exported_references() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& exported_references() const; // bytes payload = 1; void clear_payload() ; const std::string& payload() const; @@ -415,12 +424,15 @@ class ServerData final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ServerData) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ServerData_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -428,13 +440,13 @@ class ServerData final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ServerData& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket > exported_references_; ::google::protobuf::internal::ArenaStringPtr payload_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -442,23 +454,21 @@ class ServerData final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FetchObjectResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchObjectResponse) */ { +class FetchObjectResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchObjectResponse) */ { public: inline FetchObjectResponse() : FetchObjectResponse(nullptr) {} - ~FetchObjectResponse() override; - template - explicit PROTOBUF_CONSTEXPR FetchObjectResponse(::google::protobuf::internal::ConstantInitialized); - - inline FetchObjectResponse(const FetchObjectResponse& from) - : FetchObjectResponse(nullptr, from) {} - FetchObjectResponse(FetchObjectResponse&& from) noexcept - : FetchObjectResponse() { - *this = ::std::move(from); - } - + ~FetchObjectResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FetchObjectResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline FetchObjectResponse(const FetchObjectResponse& from) : FetchObjectResponse(nullptr, from) {} + inline FetchObjectResponse(FetchObjectResponse&& from) noexcept + : FetchObjectResponse(nullptr, std::move(from)) {} inline FetchObjectResponse& operator=(const FetchObjectResponse& from) { CopyFrom(from); return *this; @@ -466,9 +476,9 @@ class FetchObjectResponse final : inline FetchObjectResponse& operator=(FetchObjectResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -500,22 +510,17 @@ class FetchObjectResponse final : } static inline const FetchObjectResponse* internal_default_instance() { return reinterpret_cast( - &_FetchObjectResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(FetchObjectResponse& a, FetchObjectResponse& b) { - a.Swap(&b); + &_FetchObjectResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(FetchObjectResponse& a, FetchObjectResponse& b) { a.Swap(&b); } inline void Swap(FetchObjectResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -529,52 +534,69 @@ class FetchObjectResponse final : // implements Message ---------------------------------------------- - FetchObjectResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FetchObjectResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FetchObjectResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FetchObjectResponse& from) { - FetchObjectResponse::MergeImpl(*this, from); - } + void MergeFrom(const FetchObjectResponse& from) { FetchObjectResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FetchObjectResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FetchObjectResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FetchObjectResponse"; } + + protected: explicit FetchObjectResponse(::google::protobuf::Arena* arena); FetchObjectResponse(::google::protobuf::Arena* arena, const FetchObjectResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FetchObjectResponse(::google::protobuf::Arena* arena, FetchObjectResponse&& from) noexcept + : FetchObjectResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTypedExportIdsFieldNumber = 3, kTypeFieldNumber = 1, @@ -588,16 +610,15 @@ class FetchObjectResponse final : public: void clear_typed_export_ids() ; ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_typed_export_ids(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >* - mutable_typed_export_ids(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* mutable_typed_export_ids(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& _internal_typed_export_ids() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* _internal_mutable_typed_export_ids(); public: const ::io::deephaven::proto::backplane::grpc::TypedTicket& typed_export_ids(int index) const; ::io::deephaven::proto::backplane::grpc::TypedTicket* add_typed_export_ids(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >& - typed_export_ids() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& typed_export_ids() const; // string type = 1; void clear_type() ; const std::string& type() const; @@ -633,12 +654,15 @@ class FetchObjectResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FetchObjectResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 66, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FetchObjectResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -646,13 +670,13 @@ class FetchObjectResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FetchObjectResponse& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket > typed_export_ids_; ::google::protobuf::internal::ArenaStringPtr type_; ::google::protobuf::internal::ArenaStringPtr data_; @@ -661,23 +685,21 @@ class FetchObjectResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FetchObjectRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchObjectRequest) */ { +class FetchObjectRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchObjectRequest) */ { public: inline FetchObjectRequest() : FetchObjectRequest(nullptr) {} - ~FetchObjectRequest() override; - template - explicit PROTOBUF_CONSTEXPR FetchObjectRequest(::google::protobuf::internal::ConstantInitialized); - - inline FetchObjectRequest(const FetchObjectRequest& from) - : FetchObjectRequest(nullptr, from) {} - FetchObjectRequest(FetchObjectRequest&& from) noexcept - : FetchObjectRequest() { - *this = ::std::move(from); - } - + ~FetchObjectRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FetchObjectRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline FetchObjectRequest(const FetchObjectRequest& from) : FetchObjectRequest(nullptr, from) {} + inline FetchObjectRequest(FetchObjectRequest&& from) noexcept + : FetchObjectRequest(nullptr, std::move(from)) {} inline FetchObjectRequest& operator=(const FetchObjectRequest& from) { CopyFrom(from); return *this; @@ -685,9 +707,9 @@ class FetchObjectRequest final : inline FetchObjectRequest& operator=(FetchObjectRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -719,22 +741,17 @@ class FetchObjectRequest final : } static inline const FetchObjectRequest* internal_default_instance() { return reinterpret_cast( - &_FetchObjectRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(FetchObjectRequest& a, FetchObjectRequest& b) { - a.Swap(&b); + &_FetchObjectRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(FetchObjectRequest& a, FetchObjectRequest& b) { a.Swap(&b); } inline void Swap(FetchObjectRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -748,52 +765,69 @@ class FetchObjectRequest final : // implements Message ---------------------------------------------- - FetchObjectRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FetchObjectRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FetchObjectRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FetchObjectRequest& from) { - FetchObjectRequest::MergeImpl(*this, from); - } + void MergeFrom(const FetchObjectRequest& from) { FetchObjectRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FetchObjectRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FetchObjectRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FetchObjectRequest"; } + + protected: explicit FetchObjectRequest(::google::protobuf::Arena* arena); FetchObjectRequest(::google::protobuf::Arena* arena, const FetchObjectRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FetchObjectRequest(::google::protobuf::Arena* arena, FetchObjectRequest&& from) noexcept + : FetchObjectRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, }; @@ -815,12 +849,15 @@ class FetchObjectRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FetchObjectRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FetchObjectRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -828,13 +865,13 @@ class FetchObjectRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FetchObjectRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::TypedTicket* source_id_; @@ -842,23 +879,21 @@ class FetchObjectRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ConnectRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConnectRequest) */ { +class ConnectRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ConnectRequest) */ { public: inline ConnectRequest() : ConnectRequest(nullptr) {} - ~ConnectRequest() override; - template - explicit PROTOBUF_CONSTEXPR ConnectRequest(::google::protobuf::internal::ConstantInitialized); - - inline ConnectRequest(const ConnectRequest& from) - : ConnectRequest(nullptr, from) {} - ConnectRequest(ConnectRequest&& from) noexcept - : ConnectRequest() { - *this = ::std::move(from); - } - + ~ConnectRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ConnectRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ConnectRequest(const ConnectRequest& from) : ConnectRequest(nullptr, from) {} + inline ConnectRequest(ConnectRequest&& from) noexcept + : ConnectRequest(nullptr, std::move(from)) {} inline ConnectRequest& operator=(const ConnectRequest& from) { CopyFrom(from); return *this; @@ -866,9 +901,9 @@ class ConnectRequest final : inline ConnectRequest& operator=(ConnectRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -900,22 +935,17 @@ class ConnectRequest final : } static inline const ConnectRequest* internal_default_instance() { return reinterpret_cast( - &_ConnectRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(ConnectRequest& a, ConnectRequest& b) { - a.Swap(&b); + &_ConnectRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(ConnectRequest& a, ConnectRequest& b) { a.Swap(&b); } inline void Swap(ConnectRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -929,52 +959,69 @@ class ConnectRequest final : // implements Message ---------------------------------------------- - ConnectRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ConnectRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ConnectRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ConnectRequest& from) { - ConnectRequest::MergeImpl(*this, from); - } + void MergeFrom(const ConnectRequest& from) { ConnectRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ConnectRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ConnectRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ConnectRequest"; } + + protected: explicit ConnectRequest(::google::protobuf::Arena* arena); ConnectRequest(::google::protobuf::Arena* arena, const ConnectRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ConnectRequest(::google::protobuf::Arena* arena, ConnectRequest&& from) noexcept + : ConnectRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, }; @@ -996,12 +1043,15 @@ class ConnectRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ConnectRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ConnectRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1009,13 +1059,13 @@ class ConnectRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ConnectRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::TypedTicket* source_id_; @@ -1023,23 +1073,21 @@ class ConnectRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ClientData final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ClientData) */ { +class ClientData final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ClientData) */ { public: inline ClientData() : ClientData(nullptr) {} - ~ClientData() override; - template - explicit PROTOBUF_CONSTEXPR ClientData(::google::protobuf::internal::ConstantInitialized); - - inline ClientData(const ClientData& from) - : ClientData(nullptr, from) {} - ClientData(ClientData&& from) noexcept - : ClientData() { - *this = ::std::move(from); - } - + ~ClientData() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ClientData( + ::google::protobuf::internal::ConstantInitialized); + + inline ClientData(const ClientData& from) : ClientData(nullptr, from) {} + inline ClientData(ClientData&& from) noexcept + : ClientData(nullptr, std::move(from)) {} inline ClientData& operator=(const ClientData& from) { CopyFrom(from); return *this; @@ -1047,9 +1095,9 @@ class ClientData final : inline ClientData& operator=(ClientData&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1081,22 +1129,17 @@ class ClientData final : } static inline const ClientData* internal_default_instance() { return reinterpret_cast( - &_ClientData_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(ClientData& a, ClientData& b) { - a.Swap(&b); + &_ClientData_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(ClientData& a, ClientData& b) { a.Swap(&b); } inline void Swap(ClientData* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1110,52 +1153,69 @@ class ClientData final : // implements Message ---------------------------------------------- - ClientData* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ClientData* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ClientData& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ClientData& from) { - ClientData::MergeImpl(*this, from); - } + void MergeFrom(const ClientData& from) { ClientData::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ClientData* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ClientData"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ClientData"; } + + protected: explicit ClientData(::google::protobuf::Arena* arena); ClientData(::google::protobuf::Arena* arena, const ClientData& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ClientData(::google::protobuf::Arena* arena, ClientData&& from) noexcept + : ClientData(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReferencesFieldNumber = 2, kPayloadFieldNumber = 1, @@ -1168,16 +1228,15 @@ class ClientData final : public: void clear_references() ; ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_references(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >* - mutable_references(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* mutable_references(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& _internal_references() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* _internal_mutable_references(); public: const ::io::deephaven::proto::backplane::grpc::TypedTicket& references(int index) const; ::io::deephaven::proto::backplane::grpc::TypedTicket* add_references(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket >& - references() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& references() const; // bytes payload = 1; void clear_payload() ; const std::string& payload() const; @@ -1197,12 +1256,15 @@ class ClientData final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ClientData) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ClientData_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1210,13 +1272,13 @@ class ClientData final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ClientData& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TypedTicket > references_; ::google::protobuf::internal::ArenaStringPtr payload_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1224,23 +1286,21 @@ class ClientData final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class StreamResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.StreamResponse) */ { +class StreamResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.StreamResponse) */ { public: inline StreamResponse() : StreamResponse(nullptr) {} - ~StreamResponse() override; - template - explicit PROTOBUF_CONSTEXPR StreamResponse(::google::protobuf::internal::ConstantInitialized); - - inline StreamResponse(const StreamResponse& from) - : StreamResponse(nullptr, from) {} - StreamResponse(StreamResponse&& from) noexcept - : StreamResponse() { - *this = ::std::move(from); - } - + ~StreamResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR StreamResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline StreamResponse(const StreamResponse& from) : StreamResponse(nullptr, from) {} + inline StreamResponse(StreamResponse&& from) noexcept + : StreamResponse(nullptr, std::move(from)) {} inline StreamResponse& operator=(const StreamResponse& from) { CopyFrom(from); return *this; @@ -1248,9 +1308,9 @@ class StreamResponse final : inline StreamResponse& operator=(StreamResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1284,25 +1344,19 @@ class StreamResponse final : kData = 1, MESSAGE_NOT_SET = 0, }; - static inline const StreamResponse* internal_default_instance() { return reinterpret_cast( - &_StreamResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(StreamResponse& a, StreamResponse& b) { - a.Swap(&b); + &_StreamResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(StreamResponse& a, StreamResponse& b) { a.Swap(&b); } inline void Swap(StreamResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1316,52 +1370,69 @@ class StreamResponse final : // implements Message ---------------------------------------------- - StreamResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + StreamResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const StreamResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const StreamResponse& from) { - StreamResponse::MergeImpl(*this, from); - } + void MergeFrom(const StreamResponse& from) { StreamResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(StreamResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.StreamResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.StreamResponse"; } + + protected: explicit StreamResponse(::google::protobuf::Arena* arena); StreamResponse(::google::protobuf::Arena* arena, const StreamResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + StreamResponse(::google::protobuf::Arena* arena, StreamResponse&& from) noexcept + : StreamResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kDataFieldNumber = 1, }; @@ -1390,15 +1461,17 @@ class StreamResponse final : private: class _Internal; void set_has_data(); - inline bool has_message() const; inline void clear_has_message(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_StreamResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1406,42 +1479,39 @@ class StreamResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const StreamResponse& from_msg); union MessageUnion { constexpr MessageUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::ServerData* data_; } message_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class StreamRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.StreamRequest) */ { +class StreamRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.StreamRequest) */ { public: inline StreamRequest() : StreamRequest(nullptr) {} - ~StreamRequest() override; - template - explicit PROTOBUF_CONSTEXPR StreamRequest(::google::protobuf::internal::ConstantInitialized); - - inline StreamRequest(const StreamRequest& from) - : StreamRequest(nullptr, from) {} - StreamRequest(StreamRequest&& from) noexcept - : StreamRequest() { - *this = ::std::move(from); - } - + ~StreamRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR StreamRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline StreamRequest(const StreamRequest& from) : StreamRequest(nullptr, from) {} + inline StreamRequest(StreamRequest&& from) noexcept + : StreamRequest(nullptr, std::move(from)) {} inline StreamRequest& operator=(const StreamRequest& from) { CopyFrom(from); return *this; @@ -1449,9 +1519,9 @@ class StreamRequest final : inline StreamRequest& operator=(StreamRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1486,25 +1556,19 @@ class StreamRequest final : kData = 2, MESSAGE_NOT_SET = 0, }; - static inline const StreamRequest* internal_default_instance() { return reinterpret_cast( - &_StreamRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(StreamRequest& a, StreamRequest& b) { - a.Swap(&b); + &_StreamRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(StreamRequest& a, StreamRequest& b) { a.Swap(&b); } inline void Swap(StreamRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1518,52 +1582,69 @@ class StreamRequest final : // implements Message ---------------------------------------------- - StreamRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + StreamRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const StreamRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const StreamRequest& from) { - StreamRequest::MergeImpl(*this, from); - } + void MergeFrom(const StreamRequest& from) { StreamRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(StreamRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.StreamRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.StreamRequest"; } + + protected: explicit StreamRequest(::google::protobuf::Arena* arena); StreamRequest(::google::protobuf::Arena* arena, const StreamRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + StreamRequest(::google::protobuf::Arena* arena, StreamRequest&& from) noexcept + : StreamRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kConnectFieldNumber = 1, kDataFieldNumber = 2, @@ -1613,15 +1694,17 @@ class StreamRequest final : class _Internal; void set_has_connect(); void set_has_data(); - inline bool has_message() const; inline void clear_has_message(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_StreamRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1629,22 +1712,21 @@ class StreamRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const StreamRequest& from_msg); union MessageUnion { constexpr MessageUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::ConnectRequest* connect_; ::io::deephaven::proto::backplane::grpc::ClientData* data_; } message_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; @@ -1674,7 +1756,7 @@ inline bool FetchObjectRequest::has_source_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TypedTicket* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TypedTicket_default_instance_); } @@ -1683,7 +1765,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRe return _internal_source_id(); } inline void FetchObjectRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -1696,7 +1778,7 @@ inline void FetchObjectRequest::unsafe_arena_set_allocated_source_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.source_id_; @@ -1715,7 +1797,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest: return released; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1724,22 +1806,22 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest: return temp; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) return _msg; } inline void FetchObjectRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -1764,7 +1846,7 @@ inline void FetchObjectRequest::set_allocated_source_id(::io::deephaven::proto:: // string type = 1; inline void FetchObjectResponse::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.ClearToEmpty(); } inline const std::string& FetchObjectResponse::type() const @@ -1775,8 +1857,7 @@ inline const std::string& FetchObjectResponse::type() const template inline PROTOBUF_ALWAYS_INLINE void FetchObjectResponse::set_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchObjectResponse.type) } @@ -1786,26 +1867,24 @@ inline std::string* FetchObjectResponse::mutable_type() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& FetchObjectResponse::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.type_.Get(); } inline void FetchObjectResponse::_internal_set_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(value, GetArena()); } inline std::string* FetchObjectResponse::_internal_mutable_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.type_.Mutable( GetArena()); } inline std::string* FetchObjectResponse::release_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchObjectResponse.type) return _impl_.type_.Release(); } inline void FetchObjectResponse::set_allocated_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.type_.IsDefault()) { @@ -1817,7 +1896,7 @@ inline void FetchObjectResponse::set_allocated_type(std::string* value) { // bytes data = 2; inline void FetchObjectResponse::clear_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_.ClearToEmpty(); } inline const std::string& FetchObjectResponse::data() const @@ -1828,8 +1907,7 @@ inline const std::string& FetchObjectResponse::data() const template inline PROTOBUF_ALWAYS_INLINE void FetchObjectResponse::set_data(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchObjectResponse.data) } @@ -1839,26 +1917,24 @@ inline std::string* FetchObjectResponse::mutable_data() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& FetchObjectResponse::_internal_data() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.data_.Get(); } inline void FetchObjectResponse::_internal_set_data(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_.Set(value, GetArena()); } inline std::string* FetchObjectResponse::_internal_mutable_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.data_.Mutable( GetArena()); } inline std::string* FetchObjectResponse::release_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchObjectResponse.data) return _impl_.data_.Release(); } inline void FetchObjectResponse::set_allocated_data(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.data_.IsDefault()) { @@ -1883,7 +1959,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectResponse inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* FetchObjectResponse::mutable_typed_export_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.FetchObjectResponse.typed_export_ids) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_typed_export_ids(); } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectResponse::typed_export_ids(int index) const @@ -1892,7 +1968,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRe return _internal_typed_export_ids().Get(index); } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectResponse::add_typed_export_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::TypedTicket* _add = _internal_mutable_typed_export_ids()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.FetchObjectResponse.typed_export_ids) return _add; @@ -1904,12 +1980,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& FetchObjectResponse::_internal_typed_export_ids() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.typed_export_ids_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* FetchObjectResponse::_internal_mutable_typed_export_ids() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.typed_export_ids_; } @@ -1924,7 +2000,7 @@ inline bool ConnectRequest::has_source_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ConnectRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TypedTicket* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TypedTicket_default_instance_); } @@ -1933,7 +2009,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ConnectReques return _internal_source_id(); } inline void ConnectRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -1946,7 +2022,7 @@ inline void ConnectRequest::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.source_id_; @@ -1965,7 +2041,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1974,22 +2050,22 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TypedTicket>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TypedTicket* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) return _msg; } inline void ConnectRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -2014,7 +2090,7 @@ inline void ConnectRequest::set_allocated_source_id(::io::deephaven::proto::back // bytes payload = 1; inline void ClientData::clear_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.ClearToEmpty(); } inline const std::string& ClientData::payload() const @@ -2025,8 +2101,7 @@ inline const std::string& ClientData::payload() const template inline PROTOBUF_ALWAYS_INLINE void ClientData::set_payload(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ClientData.payload) } @@ -2036,26 +2111,24 @@ inline std::string* ClientData::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND return _s; } inline const std::string& ClientData::_internal_payload() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.payload_.Get(); } inline void ClientData::_internal_set_payload(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.Set(value, GetArena()); } inline std::string* ClientData::_internal_mutable_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.payload_.Mutable( GetArena()); } inline std::string* ClientData::release_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ClientData.payload) return _impl_.payload_.Release(); } inline void ClientData::set_allocated_payload(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.payload_.IsDefault()) { @@ -2080,7 +2153,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ClientData::mutable inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* ClientData::mutable_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ClientData.references) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_references(); } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ClientData::references(int index) const @@ -2089,7 +2162,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ClientData::r return _internal_references().Get(index); } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ClientData::add_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::TypedTicket* _add = _internal_mutable_references()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ClientData.references) return _add; @@ -2101,12 +2174,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& ClientData::_internal_references() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.references_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* ClientData::_internal_mutable_references() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.references_; } @@ -2116,7 +2189,7 @@ ClientData::_internal_mutable_references() { // bytes payload = 1; inline void ServerData::clear_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.ClearToEmpty(); } inline const std::string& ServerData::payload() const @@ -2127,8 +2200,7 @@ inline const std::string& ServerData::payload() const template inline PROTOBUF_ALWAYS_INLINE void ServerData::set_payload(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ServerData.payload) } @@ -2138,26 +2210,24 @@ inline std::string* ServerData::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND return _s; } inline const std::string& ServerData::_internal_payload() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.payload_.Get(); } inline void ServerData::_internal_set_payload(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.Set(value, GetArena()); } inline std::string* ServerData::_internal_mutable_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.payload_.Mutable( GetArena()); } inline std::string* ServerData::release_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ServerData.payload) return _impl_.payload_.Release(); } inline void ServerData::set_allocated_payload(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.payload_.IsDefault()) { @@ -2182,7 +2252,7 @@ inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ServerData::mutable inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* ServerData::mutable_exported_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ServerData.exported_references) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_exported_references(); } inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ServerData::exported_references(int index) const @@ -2191,7 +2261,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ServerData::e return _internal_exported_references().Get(index); } inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ServerData::add_exported_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::TypedTicket* _add = _internal_mutable_exported_references()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ServerData.exported_references) return _add; @@ -2203,12 +2273,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& ServerData::_internal_exported_references() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.exported_references_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* ServerData::_internal_mutable_exported_references() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.exported_references_; } @@ -2227,10 +2297,12 @@ inline void StreamRequest::set_has_connect() { _impl_._oneof_case_[0] = kConnect; } inline void StreamRequest::clear_connect() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_case() == kConnect) { if (GetArena() == nullptr) { delete _impl_.message_.connect_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.connect_); } clear_has_message(); } @@ -2282,7 +2354,8 @@ inline ::io::deephaven::proto::backplane::grpc::ConnectRequest* StreamRequest::_ if (message_case() != kConnect) { clear_message(); set_has_connect(); - _impl_.message_.connect_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ConnectRequest>(GetArena()); + _impl_.message_.connect_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ConnectRequest>(GetArena()); } return _impl_.message_.connect_; } @@ -2303,10 +2376,12 @@ inline void StreamRequest::set_has_data() { _impl_._oneof_case_[0] = kData; } inline void StreamRequest::clear_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_case() == kData) { if (GetArena() == nullptr) { delete _impl_.message_.data_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.data_); } clear_has_message(); } @@ -2358,7 +2433,8 @@ inline ::io::deephaven::proto::backplane::grpc::ClientData* StreamRequest::_inte if (message_case() != kData) { clear_message(); set_has_data(); - _impl_.message_.data_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ClientData>(GetArena()); + _impl_.message_.data_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ClientData>(GetArena()); } return _impl_.message_.data_; } @@ -2392,10 +2468,12 @@ inline void StreamResponse::set_has_data() { _impl_._oneof_case_[0] = kData; } inline void StreamResponse::clear_data() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_case() == kData) { if (GetArena() == nullptr) { delete _impl_.message_.data_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.message_.data_); } clear_has_message(); } @@ -2447,7 +2525,8 @@ inline ::io::deephaven::proto::backplane::grpc::ServerData* StreamResponse::_int if (message_case() != kData) { clear_message(); set_has_data(); - _impl_.message_.data_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ServerData>(GetArena()); + _impl_.message_.data_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ServerData>(GetArena()); } return _impl_.message_.data_; } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc index b93c55ecd54..abe19081fba 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/partitionedtable.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/partitionedtable.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -41,7 +44,13 @@ inline constexpr PartitionedTableDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR PartitionedTableDescriptor::PartitionedTableDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct PartitionedTableDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR PartitionedTableDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PartitionedTableDescriptorDefaultTypeInternal() {} @@ -52,8 +61,14 @@ struct PartitionedTableDescriptorDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PartitionedTableDescriptorDefaultTypeInternal _PartitionedTableDescriptor_default_instance_; - template -PROTOBUF_CONSTEXPR PartitionByResponse::PartitionByResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR PartitionByResponse::PartitionByResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct PartitionByResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR PartitionByResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PartitionByResponseDefaultTypeInternal() {} @@ -75,7 +90,13 @@ inline constexpr PartitionByRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR PartitionByRequest::PartitionByRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct PartitionByRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR PartitionByRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PartitionByRequestDefaultTypeInternal() {} @@ -95,7 +116,13 @@ inline constexpr MergeRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR MergeRequest::MergeRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MergeRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR MergeRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MergeRequestDefaultTypeInternal() {} @@ -116,7 +143,13 @@ inline constexpr GetTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR GetTableRequest::GetTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct GetTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR GetTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~GetTableRequestDefaultTypeInternal() {} @@ -132,87 +165,86 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[5]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.table_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.key_column_names_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.drop_keys_), - 0, - 1, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_.partitioned_table_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_.result_id_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.partitioned_table_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.key_table_ticket_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.result_id_), - 0, - 1, - 2, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.key_column_names_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.unique_keys_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_definition_schema_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_changes_permitted_), +const ::uint32_t + TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.table_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.key_column_names_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByRequest, _impl_.drop_keys_), + 0, + 1, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionByResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_.partitioned_table_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeRequest, _impl_.result_id_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.partitioned_table_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.key_table_ticket_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::GetTableRequest, _impl_.result_id_), + 0, + 1, + 2, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.key_column_names_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.unique_keys_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_definition_schema_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor, _impl_.constituent_changes_permitted_), }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, 12, -1, sizeof(::io::deephaven::proto::backplane::grpc::PartitionByRequest)}, {16, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::PartitionByResponse)}, {24, 34, -1, sizeof(::io::deephaven::proto::backplane::grpc::MergeRequest)}, {36, 47, -1, sizeof(::io::deephaven::proto::backplane::grpc::GetTableRequest)}, {50, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_PartitionByRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_PartitionByResponse_default_instance_._instance, @@ -220,7 +252,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_GetTableRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_PartitionedTableDescriptor_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fpartitionedtable_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fpartitionedtable_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n&deephaven/proto/partitionedtable.proto" "\022!io.deephaven.proto.backplane.grpc\032\033dee" "phaven/proto/table.proto\032\034deephaven/prot" @@ -264,7 +297,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto = { false, false, 1402, @@ -277,28 +310,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fpartitionedta schemas, file_default_instances, TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto, file_level_service_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fpartitionedtable_2eproto(&descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto); namespace io { namespace deephaven { namespace proto { @@ -308,43 +322,34 @@ namespace grpc { class PartitionByRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& table_id(const PartitionByRequest* msg); - static void set_has_table_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const PartitionByRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_Internal::table_id(const PartitionByRequest* msg) { - return *msg->_impl_.table_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_Internal::result_id(const PartitionByRequest* msg) { - return *msg->_impl_.result_id_; -} void PartitionByRequest::clear_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_id_ != nullptr) _impl_.table_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void PartitionByRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } PartitionByRequest::PartitionByRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.PartitionByRequest) } inline PROTOBUF_NDEBUG_INLINE PartitionByRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, key_column_names_{visibility, arena, from.key_column_names_} {} @@ -352,19 +357,23 @@ inline PROTOBUF_NDEBUG_INLINE PartitionByRequest::Impl_::Impl_( PartitionByRequest::PartitionByRequest( ::google::protobuf::Arena* arena, const PartitionByRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE PartitionByRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.table_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_id_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.table_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.table_id_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; _impl_.drop_keys_ = from._impl_.drop_keys_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.PartitionByRequest) @@ -396,37 +405,34 @@ inline void PartitionByRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void PartitionByRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.key_column_names_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.table_id_ != nullptr); - _impl_.table_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_.drop_keys_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* PartitionByRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + PartitionByRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_PartitionByRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &PartitionByRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &PartitionByRequest::ByteSizeLong, + &PartitionByRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_._cached_size_), + false, + }, + &PartitionByRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* PartitionByRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 77, 2> PartitionByRequest::_table_ = { { @@ -439,8 +445,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 77, 2> PartitionByRequest::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_PartitionByRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::PartitionByRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool drop_keys = 4; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -479,100 +489,137 @@ const ::_pbi::TcParseTable<2, 4, 2, 77, 2> PartitionByRequest::_table_ = { }}, }; -::uint8_t* PartitionByRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::table_id(this), - _Internal::table_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // repeated string key_column_names = 3; - for (int i = 0, n = this->_internal_key_column_names_size(); i < n; ++i) { - const auto& s = this->_internal_key_column_names().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names"); - target = stream->WriteString(3, s, target); - } - - // bool drop_keys = 4; - if (this->_internal_drop_keys() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_drop_keys(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PartitionByRequest) - return target; -} - -::size_t PartitionByRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void PartitionByRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string key_column_names = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_key_column_names().size()); - for (int i = 0, n = _internal_key_column_names().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_key_column_names().Get(i)); - } + _impl_.key_column_names_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.table_id_); + ABSL_DCHECK(_impl_.table_id_ != nullptr); + _impl_.table_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - } - // bool drop_keys = 4; - if (this->_internal_drop_keys() != 0) { - total_size += 2; } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData PartitionByRequest::_class_data_ = { - PartitionByRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* PartitionByRequest::GetClassData() const { - return &_class_data_; + _impl_.drop_keys_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void PartitionByRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* PartitionByRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const PartitionByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* PartitionByRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const PartitionByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.table_id_, this_._impl_.table_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // repeated string key_column_names = 3; + for (int i = 0, n = this_._internal_key_column_names_size(); i < n; ++i) { + const auto& s = this_._internal_key_column_names().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names"); + target = stream->WriteString(3, s, target); + } + + // bool drop_keys = 4; + if (this_._internal_drop_keys() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_drop_keys(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PartitionByRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t PartitionByRequest::ByteSizeLong(const MessageLite& base) { + const PartitionByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t PartitionByRequest::ByteSizeLong() const { + const PartitionByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string key_column_names = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_key_column_names().size()); + for (int i = 0, n = this_._internal_key_column_names().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_key_column_names().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.table_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + { + // bool drop_keys = 4; + if (this_._internal_drop_keys() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void PartitionByRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -582,17 +629,28 @@ void PartitionByRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_table_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_table_id()); + ABSL_DCHECK(from._impl_.table_id_ != nullptr); + if (_this->_impl_.table_id_ == nullptr) { + _this->_impl_.table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.table_id_); + } else { + _this->_impl_.table_id_->MergeFrom(*from._impl_.table_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } if (from._internal_drop_keys() != 0) { - _this->_internal_set_drop_keys(from._internal_drop_keys()); + _this->_impl_.drop_keys_ = from._impl_.drop_keys_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -603,13 +661,7 @@ void PartitionByRequest::CopyFrom(const PartitionByRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool PartitionByRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* PartitionByRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void PartitionByRequest::InternalSwap(PartitionByRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -624,9 +676,7 @@ void PartitionByRequest::InternalSwap(PartitionByRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata PartitionByRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -635,13 +685,21 @@ class PartitionByResponse::_Internal { }; PartitionByResponse::PartitionByResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.PartitionByResponse) } PartitionByResponse::PartitionByResponse( ::google::protobuf::Arena* arena, const PartitionByResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE PartitionByResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -650,6 +708,61 @@ PartitionByResponse::PartitionByResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.PartitionByResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + PartitionByResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_PartitionByResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &PartitionByResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &PartitionByResponse::ByteSizeLong, + &PartitionByResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(PartitionByResponse, _impl_._cached_size_), + false, + }, + &PartitionByResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* PartitionByResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> PartitionByResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::PartitionByResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -659,70 +772,63 @@ PartitionByResponse::PartitionByResponse( ::google::protobuf::Metadata PartitionByResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[1]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MergeRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& partitioned_table(const MergeRequest* msg); - static void set_has_partitioned_table(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const MergeRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_Internal::partitioned_table(const MergeRequest* msg) { - return *msg->_impl_.partitioned_table_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_Internal::result_id(const MergeRequest* msg) { - return *msg->_impl_.result_id_; -} void MergeRequest::clear_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.partitioned_table_ != nullptr) _impl_.partitioned_table_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void MergeRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } MergeRequest::MergeRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MergeRequest) } inline PROTOBUF_NDEBUG_INLINE MergeRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MergeRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} MergeRequest::MergeRequest( ::google::protobuf::Arena* arena, const MergeRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MergeRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.partitioned_table_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.partitioned_table_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.partitioned_table_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.partitioned_table_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MergeRequest) } @@ -752,35 +858,34 @@ inline void MergeRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MergeRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MergeRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.partitioned_table_ != nullptr); - _impl_.partitioned_table_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MergeRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MergeRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MergeRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MergeRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MergeRequest::ByteSizeLong, + &MergeRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_._cached_size_), + false, + }, + &MergeRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MergeRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MergeRequest::_table_ = { { @@ -793,8 +898,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MergeRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MergeRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MergeRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; {::_pbi::TcParser::FastMtS1, @@ -818,74 +927,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MergeRequest::_table_ = { }}, }; -::uint8_t* MergeRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MergeRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::partitioned_table(this), - _Internal::partitioned_table(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MergeRequest) - return target; -} - -::size_t MergeRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MergeRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MergeRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MergeRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.partitioned_table_); + ABSL_DCHECK(_impl_.partitioned_table_ != nullptr); + _impl_.partitioned_table_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MergeRequest::_class_data_ = { - MergeRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MergeRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MergeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MergeRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MergeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MergeRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MergeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MergeRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.partitioned_table_, this_._impl_.partitioned_table_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MergeRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MergeRequest::ByteSizeLong(const MessageLite& base) { + const MergeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MergeRequest::ByteSizeLong() const { + const MergeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MergeRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.partitioned_table_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MergeRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MergeRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -894,14 +1032,25 @@ void MergeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_partitioned_table()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_partitioned_table()); + ABSL_DCHECK(from._impl_.partitioned_table_ != nullptr); + if (_this->_impl_.partitioned_table_ == nullptr) { + _this->_impl_.partitioned_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.partitioned_table_); + } else { + _this->_impl_.partitioned_table_->MergeFrom(*from._impl_.partitioned_table_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -912,13 +1061,7 @@ void MergeRequest::CopyFrom(const MergeRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MergeRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MergeRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MergeRequest::InternalSwap(MergeRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -932,85 +1075,71 @@ void MergeRequest::InternalSwap(MergeRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MergeRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class GetTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& partitioned_table(const GetTableRequest* msg); - static void set_has_partitioned_table(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& key_table_ticket(const GetTableRequest* msg); - static void set_has_key_table_ticket(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const GetTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_Internal::partitioned_table(const GetTableRequest* msg) { - return *msg->_impl_.partitioned_table_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_Internal::key_table_ticket(const GetTableRequest* msg) { - return *msg->_impl_.key_table_ticket_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_Internal::result_id(const GetTableRequest* msg) { - return *msg->_impl_.result_id_; -} void GetTableRequest::clear_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.partitioned_table_ != nullptr) _impl_.partitioned_table_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void GetTableRequest::clear_key_table_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.key_table_ticket_ != nullptr) _impl_.key_table_ticket_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } void GetTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } GetTableRequest::GetTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.GetTableRequest) } inline PROTOBUF_NDEBUG_INLINE GetTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} GetTableRequest::GetTableRequest( ::google::protobuf::Arena* arena, const GetTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE GetTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.partitioned_table_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.partitioned_table_) - : nullptr; - _impl_.key_table_ticket_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.key_table_ticket_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.partitioned_table_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.partitioned_table_) + : nullptr; + _impl_.key_table_ticket_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.key_table_ticket_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.GetTableRequest) } @@ -1041,39 +1170,34 @@ inline void GetTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void GetTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.GetTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.partitioned_table_ != nullptr); - _impl_.partitioned_table_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.key_table_ticket_ != nullptr); - _impl_.key_table_ticket_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* GetTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + GetTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_GetTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &GetTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &GetTableRequest::ByteSizeLong, + &GetTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_._cached_size_), + false, + }, + &GetTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* GetTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetTableRequest::_table_ = { { @@ -1086,8 +1210,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetTableRequest::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_GetTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::GetTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; {::_pbi::TcParser::FastMtS1, @@ -1119,87 +1247,119 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> GetTableRequest::_table_ = { }}, }; -::uint8_t* GetTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.GetTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::partitioned_table(this), - _Internal::partitioned_table(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::key_table_ticket(this), - _Internal::key_table_ticket(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.GetTableRequest) - return target; -} - -::size_t GetTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.GetTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void GetTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.GetTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.partitioned_table_); + ABSL_DCHECK(_impl_.partitioned_table_ != nullptr); + _impl_.partitioned_table_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.key_table_ticket_); + ABSL_DCHECK(_impl_.key_table_ticket_ != nullptr); + _impl_.key_table_ticket_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData GetTableRequest::_class_data_ = { - GetTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* GetTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void GetTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* GetTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const GetTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* GetTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const GetTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.GetTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.partitioned_table_, this_._impl_.partitioned_table_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.key_table_ticket_, this_._impl_.key_table_ticket_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.GetTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t GetTableRequest::ByteSizeLong(const MessageLite& base) { + const GetTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t GetTableRequest::ByteSizeLong() const { + const GetTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.GetTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.partitioned_table_); + } + // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.key_table_ticket_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void GetTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.GetTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -1208,18 +1368,34 @@ void GetTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_partitioned_table()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_partitioned_table()); + ABSL_DCHECK(from._impl_.partitioned_table_ != nullptr); + if (_this->_impl_.partitioned_table_ == nullptr) { + _this->_impl_.partitioned_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.partitioned_table_); + } else { + _this->_impl_.partitioned_table_->MergeFrom(*from._impl_.partitioned_table_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_key_table_ticket()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_key_table_ticket()); + ABSL_DCHECK(from._impl_.key_table_ticket_ != nullptr); + if (_this->_impl_.key_table_ticket_ == nullptr) { + _this->_impl_.key_table_ticket_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.key_table_ticket_); + } else { + _this->_impl_.key_table_ticket_->MergeFrom(*from._impl_.key_table_ticket_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1230,13 +1406,7 @@ void GetTableRequest::CopyFrom(const GetTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool GetTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* GetTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void GetTableRequest::InternalSwap(GetTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1250,9 +1420,7 @@ void GetTableRequest::InternalSwap(GetTableRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata GetTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1261,13 +1429,17 @@ class PartitionedTableDescriptor::_Internal { }; PartitionedTableDescriptor::PartitionedTableDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) } inline PROTOBUF_NDEBUG_INLINE PartitionedTableDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor& from_msg) : key_column_names_{visibility, arena, from.key_column_names_}, constituent_definition_schema_(arena, from.constituent_definition_schema_), constituent_column_name_(arena, from.constituent_column_name_), @@ -1276,12 +1448,16 @@ inline PROTOBUF_NDEBUG_INLINE PartitionedTableDescriptor::Impl_::Impl_( PartitionedTableDescriptor::PartitionedTableDescriptor( ::google::protobuf::Arena* arena, const PartitionedTableDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE PartitionedTableDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, unique_keys_), reinterpret_cast(&from._impl_) + @@ -1321,29 +1497,34 @@ inline void PartitionedTableDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void PartitionedTableDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.key_column_names_.Clear(); - _impl_.constituent_definition_schema_.ClearToEmpty(); - _impl_.constituent_column_name_.ClearToEmpty(); - ::memset(&_impl_.unique_keys_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.constituent_changes_permitted_) - - reinterpret_cast(&_impl_.unique_keys_)) + sizeof(_impl_.constituent_changes_permitted_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* PartitionedTableDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + PartitionedTableDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_PartitionedTableDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &PartitionedTableDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &PartitionedTableDescriptor::ByteSizeLong, + &PartitionedTableDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_._cached_size_), + false, + }, + &PartitionedTableDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* PartitionedTableDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 0, 108, 2> PartitionedTableDescriptor::_table_ = { { @@ -1356,8 +1537,12 @@ const ::_pbi::TcParseTable<3, 5, 0, 108, 2> PartitionedTableDescriptor::_table_ 5, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_PartitionedTableDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::PartitionedTableDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // repeated string key_column_names = 1; @@ -1405,106 +1590,133 @@ const ::_pbi::TcParseTable<3, 5, 0, 108, 2> PartitionedTableDescriptor::_table_ }}, }; -::uint8_t* PartitionedTableDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated string key_column_names = 1; - for (int i = 0, n = this->_internal_key_column_names_size(); i < n; ++i) { - const auto& s = this->_internal_key_column_names().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names"); - target = stream->WriteString(1, s, target); - } - - // bool unique_keys = 2; - if (this->_internal_unique_keys() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_unique_keys(), target); - } - - // bytes constituent_definition_schema = 3; - if (!this->_internal_constituent_definition_schema().empty()) { - const std::string& _s = this->_internal_constituent_definition_schema(); - target = stream->WriteBytesMaybeAliased(3, _s, target); - } - - // string constituent_column_name = 4; - if (!this->_internal_constituent_column_name().empty()) { - const std::string& _s = this->_internal_constituent_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - // bool constituent_changes_permitted = 5; - if (this->_internal_constituent_changes_permitted() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_constituent_changes_permitted(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - return target; -} - -::size_t PartitionedTableDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void PartitionedTableDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string key_column_names = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_key_column_names().size()); - for (int i = 0, n = _internal_key_column_names().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_key_column_names().Get(i)); - } - // bytes constituent_definition_schema = 3; - if (!this->_internal_constituent_definition_schema().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_constituent_definition_schema()); - } - - // string constituent_column_name = 4; - if (!this->_internal_constituent_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_constituent_column_name()); - } - - // bool unique_keys = 2; - if (this->_internal_unique_keys() != 0) { - total_size += 2; - } - - // bool constituent_changes_permitted = 5; - if (this->_internal_constituent_changes_permitted() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData PartitionedTableDescriptor::_class_data_ = { - PartitionedTableDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* PartitionedTableDescriptor::GetClassData() const { - return &_class_data_; + _impl_.key_column_names_.Clear(); + _impl_.constituent_definition_schema_.ClearToEmpty(); + _impl_.constituent_column_name_.ClearToEmpty(); + ::memset(&_impl_.unique_keys_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.constituent_changes_permitted_) - + reinterpret_cast(&_impl_.unique_keys_)) + sizeof(_impl_.constituent_changes_permitted_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void PartitionedTableDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* PartitionedTableDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const PartitionedTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* PartitionedTableDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const PartitionedTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated string key_column_names = 1; + for (int i = 0, n = this_._internal_key_column_names_size(); i < n; ++i) { + const auto& s = this_._internal_key_column_names().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names"); + target = stream->WriteString(1, s, target); + } + + // bool unique_keys = 2; + if (this_._internal_unique_keys() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_unique_keys(), target); + } + + // bytes constituent_definition_schema = 3; + if (!this_._internal_constituent_definition_schema().empty()) { + const std::string& _s = this_._internal_constituent_definition_schema(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + // string constituent_column_name = 4; + if (!this_._internal_constituent_column_name().empty()) { + const std::string& _s = this_._internal_constituent_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + // bool constituent_changes_permitted = 5; + if (this_._internal_constituent_changes_permitted() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_constituent_changes_permitted(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t PartitionedTableDescriptor::ByteSizeLong(const MessageLite& base) { + const PartitionedTableDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t PartitionedTableDescriptor::ByteSizeLong() const { + const PartitionedTableDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string key_column_names = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_key_column_names().size()); + for (int i = 0, n = this_._internal_key_column_names().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_key_column_names().Get(i)); + } + } + } + { + // bytes constituent_definition_schema = 3; + if (!this_._internal_constituent_definition_schema().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_constituent_definition_schema()); + } + // string constituent_column_name = 4; + if (!this_._internal_constituent_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_constituent_column_name()); + } + // bool unique_keys = 2; + if (this_._internal_unique_keys() != 0) { + total_size += 2; + } + // bool constituent_changes_permitted = 5; + if (this_._internal_constituent_changes_permitted() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void PartitionedTableDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) @@ -1520,10 +1732,10 @@ void PartitionedTableDescriptor::MergeImpl(::google::protobuf::Message& to_msg, _this->_internal_set_constituent_column_name(from._internal_constituent_column_name()); } if (from._internal_unique_keys() != 0) { - _this->_internal_set_unique_keys(from._internal_unique_keys()); + _this->_impl_.unique_keys_ = from._impl_.unique_keys_; } if (from._internal_constituent_changes_permitted() != 0) { - _this->_internal_set_constituent_changes_permitted(from._internal_constituent_changes_permitted()); + _this->_impl_.constituent_changes_permitted_ = from._impl_.constituent_changes_permitted_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1535,13 +1747,7 @@ void PartitionedTableDescriptor::CopyFrom(const PartitionedTableDescriptor& from MergeFrom(from); } -PROTOBUF_NOINLINE bool PartitionedTableDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* PartitionedTableDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void PartitionedTableDescriptor::InternalSwap(PartitionedTableDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1559,9 +1765,7 @@ void PartitionedTableDescriptor::InternalSwap(PartitionedTableDescriptor* PROTOB } ::google::protobuf::Metadata PartitionedTableDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_getter, &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - file_level_metadata_deephaven_2fproto_2fpartitionedtable_2eproto[4]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -1574,4 +1778,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.h index 0a3bdca482d..079668eaba1 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/partitionedtable.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fpartitionedtable_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fpartitionedtable_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -99,21 +93,18 @@ namespace grpc { // ------------------------------------------------------------------- -class PartitionedTableDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) */ { +class PartitionedTableDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) */ { public: inline PartitionedTableDescriptor() : PartitionedTableDescriptor(nullptr) {} - ~PartitionedTableDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR PartitionedTableDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline PartitionedTableDescriptor(const PartitionedTableDescriptor& from) - : PartitionedTableDescriptor(nullptr, from) {} - PartitionedTableDescriptor(PartitionedTableDescriptor&& from) noexcept - : PartitionedTableDescriptor() { - *this = ::std::move(from); - } - + ~PartitionedTableDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR PartitionedTableDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline PartitionedTableDescriptor(const PartitionedTableDescriptor& from) : PartitionedTableDescriptor(nullptr, from) {} + inline PartitionedTableDescriptor(PartitionedTableDescriptor&& from) noexcept + : PartitionedTableDescriptor(nullptr, std::move(from)) {} inline PartitionedTableDescriptor& operator=(const PartitionedTableDescriptor& from) { CopyFrom(from); return *this; @@ -121,9 +112,9 @@ class PartitionedTableDescriptor final : inline PartitionedTableDescriptor& operator=(PartitionedTableDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -155,22 +146,17 @@ class PartitionedTableDescriptor final : } static inline const PartitionedTableDescriptor* internal_default_instance() { return reinterpret_cast( - &_PartitionedTableDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(PartitionedTableDescriptor& a, PartitionedTableDescriptor& b) { - a.Swap(&b); + &_PartitionedTableDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(PartitionedTableDescriptor& a, PartitionedTableDescriptor& b) { a.Swap(&b); } inline void Swap(PartitionedTableDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -184,52 +170,69 @@ class PartitionedTableDescriptor final : // implements Message ---------------------------------------------- - PartitionedTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + PartitionedTableDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const PartitionedTableDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const PartitionedTableDescriptor& from) { - PartitionedTableDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const PartitionedTableDescriptor& from) { PartitionedTableDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(PartitionedTableDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor"; } + + protected: explicit PartitionedTableDescriptor(::google::protobuf::Arena* arena); PartitionedTableDescriptor(::google::protobuf::Arena* arena, const PartitionedTableDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + PartitionedTableDescriptor(::google::protobuf::Arena* arena, PartitionedTableDescriptor&& from) noexcept + : PartitionedTableDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeyColumnNamesFieldNumber = 1, kConstituentDefinitionSchemaFieldNumber = 3, @@ -246,17 +249,11 @@ class PartitionedTableDescriptor final : void clear_key_column_names() ; const std::string& key_column_names(int index) const; std::string* mutable_key_column_names(int index); - void set_key_column_names(int index, const std::string& value); - void set_key_column_names(int index, std::string&& value); - void set_key_column_names(int index, const char* value); - void set_key_column_names(int index, const char* value, std::size_t size); - void set_key_column_names(int index, absl::string_view value); + template + void set_key_column_names(int index, Arg_&& value, Args_... args); std::string* add_key_column_names(); - void add_key_column_names(const std::string& value); - void add_key_column_names(std::string&& value); - void add_key_column_names(const char* value); - void add_key_column_names(const char* value, std::size_t size); - void add_key_column_names(absl::string_view value); + template + void add_key_column_names(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& key_column_names() const; ::google::protobuf::RepeatedPtrField* mutable_key_column_names(); @@ -320,12 +317,15 @@ class PartitionedTableDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 0, 108, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_PartitionedTableDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -333,13 +333,13 @@ class PartitionedTableDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const PartitionedTableDescriptor& from_msg); ::google::protobuf::RepeatedPtrField key_column_names_; ::google::protobuf::internal::ArenaStringPtr constituent_definition_schema_; ::google::protobuf::internal::ArenaStringPtr constituent_column_name_; @@ -350,22 +350,20 @@ class PartitionedTableDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class PartitionByResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionByResponse) */ { +class PartitionByResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionByResponse) */ { public: inline PartitionByResponse() : PartitionByResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR PartitionByResponse(::google::protobuf::internal::ConstantInitialized); - - inline PartitionByResponse(const PartitionByResponse& from) - : PartitionByResponse(nullptr, from) {} - PartitionByResponse(PartitionByResponse&& from) noexcept - : PartitionByResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR PartitionByResponse( + ::google::protobuf::internal::ConstantInitialized); + inline PartitionByResponse(const PartitionByResponse& from) : PartitionByResponse(nullptr, from) {} + inline PartitionByResponse(PartitionByResponse&& from) noexcept + : PartitionByResponse(nullptr, std::move(from)) {} inline PartitionByResponse& operator=(const PartitionByResponse& from) { CopyFrom(from); return *this; @@ -373,9 +371,9 @@ class PartitionByResponse final : inline PartitionByResponse& operator=(PartitionByResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -407,22 +405,17 @@ class PartitionByResponse final : } static inline const PartitionByResponse* internal_default_instance() { return reinterpret_cast( - &_PartitionByResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(PartitionByResponse& a, PartitionByResponse& b) { - a.Swap(&b); + &_PartitionByResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(PartitionByResponse& a, PartitionByResponse& b) { a.Swap(&b); } inline void Swap(PartitionByResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -436,8 +429,8 @@ class PartitionByResponse final : // implements Message ---------------------------------------------- - PartitionByResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + PartitionByResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const PartitionByResponse& from) { @@ -447,27 +440,41 @@ class PartitionByResponse final : void MergeFrom(const PartitionByResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.PartitionByResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.PartitionByResponse"; } + + protected: explicit PartitionByResponse(::google::protobuf::Arena* arena); PartitionByResponse(::google::protobuf::Arena* arena, const PartitionByResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + PartitionByResponse(::google::protobuf::Arena* arena, PartitionByResponse&& from) noexcept + : PartitionByResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.PartitionByResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_PartitionByResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -476,33 +483,31 @@ class PartitionByResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const PartitionByResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class PartitionByRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionByRequest) */ { +class PartitionByRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionByRequest) */ { public: inline PartitionByRequest() : PartitionByRequest(nullptr) {} - ~PartitionByRequest() override; - template - explicit PROTOBUF_CONSTEXPR PartitionByRequest(::google::protobuf::internal::ConstantInitialized); - - inline PartitionByRequest(const PartitionByRequest& from) - : PartitionByRequest(nullptr, from) {} - PartitionByRequest(PartitionByRequest&& from) noexcept - : PartitionByRequest() { - *this = ::std::move(from); - } - + ~PartitionByRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR PartitionByRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline PartitionByRequest(const PartitionByRequest& from) : PartitionByRequest(nullptr, from) {} + inline PartitionByRequest(PartitionByRequest&& from) noexcept + : PartitionByRequest(nullptr, std::move(from)) {} inline PartitionByRequest& operator=(const PartitionByRequest& from) { CopyFrom(from); return *this; @@ -510,9 +515,9 @@ class PartitionByRequest final : inline PartitionByRequest& operator=(PartitionByRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -544,22 +549,17 @@ class PartitionByRequest final : } static inline const PartitionByRequest* internal_default_instance() { return reinterpret_cast( - &_PartitionByRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(PartitionByRequest& a, PartitionByRequest& b) { - a.Swap(&b); + &_PartitionByRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(PartitionByRequest& a, PartitionByRequest& b) { a.Swap(&b); } inline void Swap(PartitionByRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -573,52 +573,69 @@ class PartitionByRequest final : // implements Message ---------------------------------------------- - PartitionByRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + PartitionByRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const PartitionByRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const PartitionByRequest& from) { - PartitionByRequest::MergeImpl(*this, from); - } + void MergeFrom(const PartitionByRequest& from) { PartitionByRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(PartitionByRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.PartitionByRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.PartitionByRequest"; } + + protected: explicit PartitionByRequest(::google::protobuf::Arena* arena); PartitionByRequest(::google::protobuf::Arena* arena, const PartitionByRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + PartitionByRequest(::google::protobuf::Arena* arena, PartitionByRequest&& from) noexcept + : PartitionByRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeyColumnNamesFieldNumber = 3, kTableIdFieldNumber = 1, @@ -634,17 +651,11 @@ class PartitionByRequest final : void clear_key_column_names() ; const std::string& key_column_names(int index) const; std::string* mutable_key_column_names(int index); - void set_key_column_names(int index, const std::string& value); - void set_key_column_names(int index, std::string&& value); - void set_key_column_names(int index, const char* value); - void set_key_column_names(int index, const char* value, std::size_t size); - void set_key_column_names(int index, absl::string_view value); + template + void set_key_column_names(int index, Arg_&& value, Args_... args); std::string* add_key_column_names(); - void add_key_column_names(const std::string& value); - void add_key_column_names(std::string&& value); - void add_key_column_names(const char* value); - void add_key_column_names(const char* value, std::size_t size); - void add_key_column_names(absl::string_view value); + template + void add_key_column_names(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& key_column_names() const; ::google::protobuf::RepeatedPtrField* mutable_key_column_names(); @@ -696,12 +707,15 @@ class PartitionByRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.PartitionByRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 77, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_PartitionByRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -709,13 +723,13 @@ class PartitionByRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const PartitionByRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField key_column_names_; @@ -726,23 +740,21 @@ class PartitionByRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MergeRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MergeRequest) */ { +class MergeRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MergeRequest) */ { public: inline MergeRequest() : MergeRequest(nullptr) {} - ~MergeRequest() override; - template - explicit PROTOBUF_CONSTEXPR MergeRequest(::google::protobuf::internal::ConstantInitialized); - - inline MergeRequest(const MergeRequest& from) - : MergeRequest(nullptr, from) {} - MergeRequest(MergeRequest&& from) noexcept - : MergeRequest() { - *this = ::std::move(from); - } - + ~MergeRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MergeRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline MergeRequest(const MergeRequest& from) : MergeRequest(nullptr, from) {} + inline MergeRequest(MergeRequest&& from) noexcept + : MergeRequest(nullptr, std::move(from)) {} inline MergeRequest& operator=(const MergeRequest& from) { CopyFrom(from); return *this; @@ -750,9 +762,9 @@ class MergeRequest final : inline MergeRequest& operator=(MergeRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -784,22 +796,17 @@ class MergeRequest final : } static inline const MergeRequest* internal_default_instance() { return reinterpret_cast( - &_MergeRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(MergeRequest& a, MergeRequest& b) { - a.Swap(&b); + &_MergeRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(MergeRequest& a, MergeRequest& b) { a.Swap(&b); } inline void Swap(MergeRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -813,52 +820,69 @@ class MergeRequest final : // implements Message ---------------------------------------------- - MergeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MergeRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MergeRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MergeRequest& from) { - MergeRequest::MergeImpl(*this, from); - } + void MergeFrom(const MergeRequest& from) { MergeRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MergeRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MergeRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MergeRequest"; } + + protected: explicit MergeRequest(::google::protobuf::Arena* arena); MergeRequest(::google::protobuf::Arena* arena, const MergeRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MergeRequest(::google::protobuf::Arena* arena, MergeRequest&& from) noexcept + : MergeRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPartitionedTableFieldNumber = 1, kResultIdFieldNumber = 2, @@ -896,12 +920,15 @@ class MergeRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MergeRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MergeRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -909,13 +936,13 @@ class MergeRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MergeRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* partitioned_table_; @@ -924,23 +951,21 @@ class MergeRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class GetTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.GetTableRequest) */ { +class GetTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.GetTableRequest) */ { public: inline GetTableRequest() : GetTableRequest(nullptr) {} - ~GetTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR GetTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline GetTableRequest(const GetTableRequest& from) - : GetTableRequest(nullptr, from) {} - GetTableRequest(GetTableRequest&& from) noexcept - : GetTableRequest() { - *this = ::std::move(from); - } - + ~GetTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR GetTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline GetTableRequest(const GetTableRequest& from) : GetTableRequest(nullptr, from) {} + inline GetTableRequest(GetTableRequest&& from) noexcept + : GetTableRequest(nullptr, std::move(from)) {} inline GetTableRequest& operator=(const GetTableRequest& from) { CopyFrom(from); return *this; @@ -948,9 +973,9 @@ class GetTableRequest final : inline GetTableRequest& operator=(GetTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -982,22 +1007,17 @@ class GetTableRequest final : } static inline const GetTableRequest* internal_default_instance() { return reinterpret_cast( - &_GetTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(GetTableRequest& a, GetTableRequest& b) { - a.Swap(&b); + &_GetTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(GetTableRequest& a, GetTableRequest& b) { a.Swap(&b); } inline void Swap(GetTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1011,52 +1031,69 @@ class GetTableRequest final : // implements Message ---------------------------------------------- - GetTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + GetTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const GetTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const GetTableRequest& from) { - GetTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const GetTableRequest& from) { GetTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(GetTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.GetTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.GetTableRequest"; } + + protected: explicit GetTableRequest(::google::protobuf::Arena* arena); GetTableRequest(::google::protobuf::Arena* arena, const GetTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + GetTableRequest(::google::protobuf::Arena* arena, GetTableRequest&& from) noexcept + : GetTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPartitionedTableFieldNumber = 1, kKeyTableTicketFieldNumber = 2, @@ -1110,12 +1147,15 @@ class GetTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.GetTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_GetTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1123,13 +1163,13 @@ class GetTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const GetTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* partitioned_table_; @@ -1164,7 +1204,7 @@ inline bool PartitionByRequest::has_table_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_internal_table_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.table_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1173,7 +1213,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest return _internal_table_id(); } inline void PartitionByRequest::unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); } @@ -1186,7 +1226,7 @@ inline void PartitionByRequest::unsafe_arena_set_allocated_table_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::release_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_id_; @@ -1205,7 +1245,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsafe_arena_release_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1214,22 +1254,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::_internal_mutable_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.table_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.table_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::mutable_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_table_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) return _msg; } inline void PartitionByRequest::set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); } @@ -1255,7 +1295,7 @@ inline bool PartitionByRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1264,7 +1304,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest return _internal_result_id(); } inline void PartitionByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1277,7 +1317,7 @@ inline void PartitionByRequest::unsafe_arena_set_allocated_result_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -1296,7 +1336,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -1305,22 +1345,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) return _msg; } inline void PartitionByRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1347,12 +1387,11 @@ inline int PartitionByRequest::key_column_names_size() const { return _internal_key_column_names_size(); } inline void PartitionByRequest::clear_key_column_names() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_names_.Clear(); } -inline std::string* PartitionByRequest::add_key_column_names() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* PartitionByRequest::add_key_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_key_column_names()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) return _s; @@ -1367,57 +1406,21 @@ inline std::string* PartitionByRequest::mutable_key_column_names(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) return _internal_mutable_key_column_names()->Mutable(index); } -inline void PartitionByRequest::set_key_column_names(int index, const std::string& value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::set_key_column_names(int index, std::string&& value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(std::move(value)); +template +inline void PartitionByRequest::set_key_column_names(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_key_column_names()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) } -inline void PartitionByRequest::set_key_column_names(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_key_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::set_key_column_names(int index, const char* value, - std::size_t size) { - _internal_mutable_key_column_names()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::set_key_column_names(int index, absl::string_view value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::add_key_column_names(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::add_key_column_names(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add(std::move(value)); +template +inline void PartitionByRequest::add_key_column_names(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_key_column_names(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) } -inline void PartitionByRequest::add_key_column_names(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::add_key_column_names(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} -inline void PartitionByRequest::add_key_column_names(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) -} inline const ::google::protobuf::RepeatedPtrField& PartitionByRequest::key_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) @@ -1426,23 +1429,23 @@ PartitionByRequest::key_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* PartitionByRequest::mutable_key_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_key_column_names(); } inline const ::google::protobuf::RepeatedPtrField& PartitionByRequest::_internal_key_column_names() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.key_column_names_; } inline ::google::protobuf::RepeatedPtrField* PartitionByRequest::_internal_mutable_key_column_names() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.key_column_names_; } // bool drop_keys = 4; inline void PartitionByRequest::clear_drop_keys() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.drop_keys_ = false; } inline bool PartitionByRequest::drop_keys() const { @@ -1454,12 +1457,11 @@ inline void PartitionByRequest::set_drop_keys(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionByRequest.drop_keys) } inline bool PartitionByRequest::_internal_drop_keys() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.drop_keys_; } inline void PartitionByRequest::_internal_set_drop_keys(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.drop_keys_ = value; } @@ -1478,7 +1480,7 @@ inline bool MergeRequest::has_partitioned_table() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_internal_partitioned_table() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.partitioned_table_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1487,7 +1489,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::part return _internal_partitioned_table(); } inline void MergeRequest::unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); } @@ -1500,7 +1502,7 @@ inline void MergeRequest::unsafe_arena_set_allocated_partitioned_table(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::release_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.partitioned_table_; @@ -1519,7 +1521,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::release_pa return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_arena_release_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1528,22 +1530,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_are return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::_internal_mutable_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.partitioned_table_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.partitioned_table_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::mutable_partitioned_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_partitioned_table(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) return _msg; } inline void MergeRequest::set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); } @@ -1569,7 +1571,7 @@ inline bool MergeRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1578,7 +1580,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::resu return _internal_result_id(); } inline void MergeRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1591,7 +1593,7 @@ inline void MergeRequest::unsafe_arena_set_allocated_result_id(::io::deephaven:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -1610,7 +1612,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::release_re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -1619,22 +1621,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_are return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) return _msg; } inline void MergeRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1664,7 +1666,7 @@ inline bool GetTableRequest::has_partitioned_table() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_partitioned_table() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.partitioned_table_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1673,7 +1675,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::p return _internal_partitioned_table(); } inline void GetTableRequest::unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); } @@ -1686,7 +1688,7 @@ inline void GetTableRequest::unsafe_arena_set_allocated_partitioned_table(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.partitioned_table_; @@ -1705,7 +1707,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) _impl_._has_bits_[0] &= ~0x00000001u; @@ -1714,22 +1716,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_partitioned_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.partitioned_table_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.partitioned_table_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::mutable_partitioned_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_partitioned_table(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) return _msg; } inline void GetTableRequest::set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); } @@ -1755,7 +1757,7 @@ inline bool GetTableRequest::has_key_table_ticket() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_key_table_ticket() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.key_table_ticket_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1764,7 +1766,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::k return _internal_key_table_ticket(); } inline void GetTableRequest::unsafe_arena_set_allocated_key_table_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_ticket_); } @@ -1777,7 +1779,7 @@ inline void GetTableRequest::unsafe_arena_set_allocated_key_table_ticket(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release_key_table_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.key_table_ticket_; @@ -1796,7 +1798,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_key_table_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) _impl_._has_bits_[0] &= ~0x00000002u; @@ -1805,22 +1807,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_key_table_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.key_table_ticket_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.key_table_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.key_table_ticket_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::mutable_key_table_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_key_table_ticket(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) return _msg; } inline void GetTableRequest::set_allocated_key_table_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_ticket_); } @@ -1846,7 +1848,7 @@ inline bool GetTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -1855,7 +1857,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::r return _internal_result_id(); } inline void GetTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1868,7 +1870,7 @@ inline void GetTableRequest::unsafe_arena_set_allocated_result_id(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -1887,7 +1889,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -1896,22 +1898,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) return _msg; } inline void GetTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -1942,12 +1944,11 @@ inline int PartitionedTableDescriptor::key_column_names_size() const { return _internal_key_column_names_size(); } inline void PartitionedTableDescriptor::clear_key_column_names() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_names_.Clear(); } -inline std::string* PartitionedTableDescriptor::add_key_column_names() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* PartitionedTableDescriptor::add_key_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_key_column_names()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) return _s; @@ -1962,57 +1963,21 @@ inline std::string* PartitionedTableDescriptor::mutable_key_column_names(int ind // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) return _internal_mutable_key_column_names()->Mutable(index); } -inline void PartitionedTableDescriptor::set_key_column_names(int index, const std::string& value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::set_key_column_names(int index, std::string&& value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(std::move(value)); +template +inline void PartitionedTableDescriptor::set_key_column_names(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_key_column_names()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) } -inline void PartitionedTableDescriptor::set_key_column_names(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_key_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::set_key_column_names(int index, const char* value, - std::size_t size) { - _internal_mutable_key_column_names()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::set_key_column_names(int index, absl::string_view value) { - _internal_mutable_key_column_names()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::add_key_column_names(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::add_key_column_names(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add(std::move(value)); +template +inline void PartitionedTableDescriptor::add_key_column_names(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_key_column_names(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) } -inline void PartitionedTableDescriptor::add_key_column_names(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::add_key_column_names(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} -inline void PartitionedTableDescriptor::add_key_column_names(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_column_names()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) -} inline const ::google::protobuf::RepeatedPtrField& PartitionedTableDescriptor::key_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) @@ -2021,23 +1986,23 @@ PartitionedTableDescriptor::key_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOU inline ::google::protobuf::RepeatedPtrField* PartitionedTableDescriptor::mutable_key_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_key_column_names(); } inline const ::google::protobuf::RepeatedPtrField& PartitionedTableDescriptor::_internal_key_column_names() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.key_column_names_; } inline ::google::protobuf::RepeatedPtrField* PartitionedTableDescriptor::_internal_mutable_key_column_names() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.key_column_names_; } // string constituent_column_name = 4; inline void PartitionedTableDescriptor::clear_constituent_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_column_name_.ClearToEmpty(); } inline const std::string& PartitionedTableDescriptor::constituent_column_name() const @@ -2048,8 +2013,7 @@ inline const std::string& PartitionedTableDescriptor::constituent_column_name() template inline PROTOBUF_ALWAYS_INLINE void PartitionedTableDescriptor::set_constituent_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name) } @@ -2059,26 +2023,24 @@ inline std::string* PartitionedTableDescriptor::mutable_constituent_column_name( return _s; } inline const std::string& PartitionedTableDescriptor::_internal_constituent_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.constituent_column_name_.Get(); } inline void PartitionedTableDescriptor::_internal_set_constituent_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_column_name_.Set(value, GetArena()); } inline std::string* PartitionedTableDescriptor::_internal_mutable_constituent_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.constituent_column_name_.Mutable( GetArena()); } inline std::string* PartitionedTableDescriptor::release_constituent_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name) return _impl_.constituent_column_name_.Release(); } inline void PartitionedTableDescriptor::set_allocated_constituent_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.constituent_column_name_.IsDefault()) { @@ -2090,7 +2052,7 @@ inline void PartitionedTableDescriptor::set_allocated_constituent_column_name(st // bool unique_keys = 2; inline void PartitionedTableDescriptor::clear_unique_keys() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.unique_keys_ = false; } inline bool PartitionedTableDescriptor::unique_keys() const { @@ -2102,18 +2064,17 @@ inline void PartitionedTableDescriptor::set_unique_keys(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.unique_keys) } inline bool PartitionedTableDescriptor::_internal_unique_keys() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.unique_keys_; } inline void PartitionedTableDescriptor::_internal_set_unique_keys(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.unique_keys_ = value; } // bytes constituent_definition_schema = 3; inline void PartitionedTableDescriptor::clear_constituent_definition_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_definition_schema_.ClearToEmpty(); } inline const std::string& PartitionedTableDescriptor::constituent_definition_schema() const @@ -2124,8 +2085,7 @@ inline const std::string& PartitionedTableDescriptor::constituent_definition_sch template inline PROTOBUF_ALWAYS_INLINE void PartitionedTableDescriptor::set_constituent_definition_schema(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_definition_schema_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_definition_schema) } @@ -2135,26 +2095,24 @@ inline std::string* PartitionedTableDescriptor::mutable_constituent_definition_s return _s; } inline const std::string& PartitionedTableDescriptor::_internal_constituent_definition_schema() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.constituent_definition_schema_.Get(); } inline void PartitionedTableDescriptor::_internal_set_constituent_definition_schema(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_definition_schema_.Set(value, GetArena()); } inline std::string* PartitionedTableDescriptor::_internal_mutable_constituent_definition_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.constituent_definition_schema_.Mutable( GetArena()); } inline std::string* PartitionedTableDescriptor::release_constituent_definition_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_definition_schema) return _impl_.constituent_definition_schema_.Release(); } inline void PartitionedTableDescriptor::set_allocated_constituent_definition_schema(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_definition_schema_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.constituent_definition_schema_.IsDefault()) { @@ -2166,7 +2124,7 @@ inline void PartitionedTableDescriptor::set_allocated_constituent_definition_sch // bool constituent_changes_permitted = 5; inline void PartitionedTableDescriptor::clear_constituent_changes_permitted() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_changes_permitted_ = false; } inline bool PartitionedTableDescriptor::constituent_changes_permitted() const { @@ -2178,12 +2136,11 @@ inline void PartitionedTableDescriptor::set_constituent_changes_permitted(bool v // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_changes_permitted) } inline bool PartitionedTableDescriptor::_internal_constituent_changes_permitted() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.constituent_changes_permitted_; } inline void PartitionedTableDescriptor::_internal_set_constituent_changes_permitted(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.constituent_changes_permitted_ = value; } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc index 6088117987a..4396648a91c 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/session.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/session.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -38,7 +41,13 @@ inline constexpr WrappedAuthenticationRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR WrappedAuthenticationRequest::WrappedAuthenticationRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct WrappedAuthenticationRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR WrappedAuthenticationRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~WrappedAuthenticationRequestDefaultTypeInternal() {} @@ -63,7 +72,13 @@ inline constexpr TerminationNotificationResponse_StackTrace::Impl_::Impl_( template PROTOBUF_CONSTEXPR TerminationNotificationResponse_StackTrace::TerminationNotificationResponse_StackTrace(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TerminationNotificationResponse_StackTraceDefaultTypeInternal { PROTOBUF_CONSTEXPR TerminationNotificationResponse_StackTraceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TerminationNotificationResponse_StackTraceDefaultTypeInternal() {} @@ -74,8 +89,14 @@ struct TerminationNotificationResponse_StackTraceDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TerminationNotificationResponse_StackTraceDefaultTypeInternal _TerminationNotificationResponse_StackTrace_default_instance_; - template -PROTOBUF_CONSTEXPR TerminationNotificationRequest::TerminationNotificationRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR TerminationNotificationRequest::TerminationNotificationRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct TerminationNotificationRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR TerminationNotificationRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TerminationNotificationRequestDefaultTypeInternal() {} @@ -86,8 +107,14 @@ struct TerminationNotificationRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TerminationNotificationRequestDefaultTypeInternal _TerminationNotificationRequest_default_instance_; - template -PROTOBUF_CONSTEXPR ReleaseResponse::ReleaseResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ReleaseResponse::ReleaseResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ReleaseResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ReleaseResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ReleaseResponseDefaultTypeInternal() {} @@ -98,8 +125,14 @@ struct ReleaseResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ReleaseResponseDefaultTypeInternal _ReleaseResponse_default_instance_; - template -PROTOBUF_CONSTEXPR PublishResponse::PublishResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR PublishResponse::PublishResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct PublishResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR PublishResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PublishResponseDefaultTypeInternal() {} @@ -125,7 +158,13 @@ inline constexpr HandshakeResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR HandshakeResponse::HandshakeResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HandshakeResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR HandshakeResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HandshakeResponseDefaultTypeInternal() {} @@ -147,7 +186,13 @@ inline constexpr HandshakeRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HandshakeRequest::HandshakeRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HandshakeRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HandshakeRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HandshakeRequestDefaultTypeInternal() {} @@ -158,8 +203,14 @@ struct HandshakeRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HandshakeRequestDefaultTypeInternal _HandshakeRequest_default_instance_; - template -PROTOBUF_CONSTEXPR ExportResponse::ExportResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ExportResponse::ExportResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ExportResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportResponseDefaultTypeInternal() {} @@ -170,8 +221,14 @@ struct ExportResponseDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportResponseDefaultTypeInternal _ExportResponse_default_instance_; - template -PROTOBUF_CONSTEXPR ExportNotificationRequest::ExportNotificationRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ExportNotificationRequest::ExportNotificationRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ExportNotificationRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportNotificationRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportNotificationRequestDefaultTypeInternal() {} @@ -182,8 +239,14 @@ struct ExportNotificationRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportNotificationRequestDefaultTypeInternal _ExportNotificationRequest_default_instance_; - template -PROTOBUF_CONSTEXPR CloseSessionResponse::CloseSessionResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CloseSessionResponse::CloseSessionResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CloseSessionResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR CloseSessionResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CloseSessionResponseDefaultTypeInternal() {} @@ -207,7 +270,13 @@ inline constexpr TerminationNotificationResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR TerminationNotificationResponse::TerminationNotificationResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TerminationNotificationResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR TerminationNotificationResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TerminationNotificationResponseDefaultTypeInternal() {} @@ -226,7 +295,13 @@ inline constexpr ReleaseRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ReleaseRequest::ReleaseRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ReleaseRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ReleaseRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ReleaseRequestDefaultTypeInternal() {} @@ -246,7 +321,13 @@ inline constexpr PublishRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR PublishRequest::PublishRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct PublishRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR PublishRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~PublishRequestDefaultTypeInternal() {} @@ -266,7 +347,13 @@ inline constexpr ExportRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExportRequest::ExportRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExportRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportRequestDefaultTypeInternal() {} @@ -292,7 +379,13 @@ inline constexpr ExportNotification::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExportNotification::ExportNotification(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExportNotificationDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportNotificationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportNotificationDefaultTypeInternal() {} @@ -308,169 +401,169 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fsession_2eproto[15]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_deephaven_2fproto_2fsession_2eproto[1]; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fsession_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fsession_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _impl_.payload_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _impl_.auth_protocol_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _impl_.payload_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.metadata_header_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.session_token_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.token_deadline_time_millis_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.token_expiration_delay_millis_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CloseSessionResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _impl_.id_), - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_.result_id_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_.result_id_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.ticket_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.export_state_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.context_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.dependent_handle_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.message_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.elements_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.abnormal_termination_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.reason_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.is_from_uncaught_exception_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.stack_traces_), +const ::uint32_t + TableStruct_deephaven_2fproto_2fsession_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest, _impl_.payload_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _impl_.auth_protocol_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeRequest, _impl_.payload_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.metadata_header_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.session_token_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.token_deadline_time_millis_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HandshakeResponse, _impl_.token_expiration_delay_millis_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CloseSessionResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseRequest, _impl_.id_), + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ReleaseResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportRequest, _impl_.result_id_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishRequest, _impl_.result_id_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::PublishResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.ticket_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.export_state_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.context_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportNotification, _impl_.dependent_handle_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.message_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace, _impl_.elements_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.abnormal_termination_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.reason_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.is_from_uncaught_exception_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, _impl_.stack_traces_), }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest)}, {10, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::HandshakeRequest)}, {20, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::HandshakeResponse)}, @@ -487,7 +580,6 @@ static const ::_pbi::MigrationSchema {130, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace)}, {141, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_WrappedAuthenticationRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_HandshakeRequest_default_instance_._instance, @@ -505,7 +597,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_TerminationNotificationResponse_StackTrace_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_TerminationNotificationResponse_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fsession_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fsession_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\035deephaven/proto/session.proto\022!io.deep" "haven.proto.backplane.grpc\032\034deephaven/pr" "oto/ticket.proto\"I\n\034WrappedAuthenticatio" @@ -582,7 +675,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fsession_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fsession_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fsession_2eproto = { false, false, 2790, @@ -595,28 +688,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fsession_2epro schemas, file_default_instances, TableStruct_deephaven_2fproto_2fsession_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fsession_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fsession_2eproto, file_level_service_descriptors_deephaven_2fproto_2fsession_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fsession_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fsession_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fsession_2eproto(&descriptor_table_deephaven_2fproto_2fsession_2eproto); namespace io { namespace deephaven { namespace proto { @@ -660,13 +734,17 @@ class WrappedAuthenticationRequest::_Internal { }; WrappedAuthenticationRequest::WrappedAuthenticationRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) } inline PROTOBUF_NDEBUG_INLINE WrappedAuthenticationRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest& from_msg) : type_(arena, from.type_), payload_(arena, from.payload_), _cached_size_{0} {} @@ -674,12 +752,16 @@ inline PROTOBUF_NDEBUG_INLINE WrappedAuthenticationRequest::Impl_::Impl_( WrappedAuthenticationRequest::WrappedAuthenticationRequest( ::google::protobuf::Arena* arena, const WrappedAuthenticationRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE WrappedAuthenticationRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) } @@ -705,25 +787,34 @@ inline void WrappedAuthenticationRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void WrappedAuthenticationRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.type_.ClearToEmpty(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* WrappedAuthenticationRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + WrappedAuthenticationRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_WrappedAuthenticationRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &WrappedAuthenticationRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &WrappedAuthenticationRequest::ByteSizeLong, + &WrappedAuthenticationRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(WrappedAuthenticationRequest, _impl_._cached_size_), + false, + }, + &WrappedAuthenticationRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* WrappedAuthenticationRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 75, 2> WrappedAuthenticationRequest::_table_ = { { @@ -736,8 +827,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 75, 2> WrappedAuthenticationRequest::_table_ 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_WrappedAuthenticationRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string type = 4; {::_pbi::TcParser::FastUS1, @@ -763,68 +858,88 @@ const ::_pbi::TcParseTable<1, 2, 0, 75, 2> WrappedAuthenticationRequest::_table_ }}, }; -::uint8_t* WrappedAuthenticationRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string type = 4; - if (!this->_internal_type().empty()) { - const std::string& _s = this->_internal_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - // bytes payload = 5; - if (!this->_internal_payload().empty()) { - const std::string& _s = this->_internal_payload(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - return target; -} - -::size_t WrappedAuthenticationRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void WrappedAuthenticationRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string type = 4; - if (!this->_internal_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_type()); - } - - // bytes payload = 5; - if (!this->_internal_payload().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_payload()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData WrappedAuthenticationRequest::_class_data_ = { - WrappedAuthenticationRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* WrappedAuthenticationRequest::GetClassData() const { - return &_class_data_; + _impl_.type_.ClearToEmpty(); + _impl_.payload_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void WrappedAuthenticationRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* WrappedAuthenticationRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const WrappedAuthenticationRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* WrappedAuthenticationRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const WrappedAuthenticationRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string type = 4; + if (!this_._internal_type().empty()) { + const std::string& _s = this_._internal_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + // bytes payload = 5; + if (!this_._internal_payload().empty()) { + const std::string& _s = this_._internal_payload(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t WrappedAuthenticationRequest::ByteSizeLong(const MessageLite& base) { + const WrappedAuthenticationRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t WrappedAuthenticationRequest::ByteSizeLong() const { + const WrappedAuthenticationRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string type = 4; + if (!this_._internal_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_type()); + } + // bytes payload = 5; + if (!this_._internal_payload().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_payload()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void WrappedAuthenticationRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) @@ -848,13 +963,7 @@ void WrappedAuthenticationRequest::CopyFrom(const WrappedAuthenticationRequest& MergeFrom(from); } -PROTOBUF_NOINLINE bool WrappedAuthenticationRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* WrappedAuthenticationRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void WrappedAuthenticationRequest::InternalSwap(WrappedAuthenticationRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -865,9 +974,7 @@ void WrappedAuthenticationRequest::InternalSwap(WrappedAuthenticationRequest* PR } ::google::protobuf::Metadata WrappedAuthenticationRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -876,25 +983,33 @@ class HandshakeRequest::_Internal { }; HandshakeRequest::HandshakeRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HandshakeRequest) } inline PROTOBUF_NDEBUG_INLINE HandshakeRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& from_msg) : payload_(arena, from.payload_), _cached_size_{0} {} HandshakeRequest::HandshakeRequest( ::google::protobuf::Arena* arena, const HandshakeRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HandshakeRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.auth_protocol_ = from._impl_.auth_protocol_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HandshakeRequest) @@ -920,25 +1035,34 @@ inline void HandshakeRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HandshakeRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.payload_.ClearToEmpty(); - _impl_.auth_protocol_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HandshakeRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HandshakeRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HandshakeRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HandshakeRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HandshakeRequest::ByteSizeLong, + &HandshakeRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HandshakeRequest, _impl_._cached_size_), + false, + }, + &HandshakeRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HandshakeRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HandshakeRequest::_table_ = { { @@ -951,8 +1075,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HandshakeRequest::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_HandshakeRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HandshakeRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bytes payload = 2 [deprecated = true]; {::_pbi::TcParser::FastBS1, @@ -975,67 +1103,87 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> HandshakeRequest::_table_ = { }}, }; -::uint8_t* HandshakeRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // sint32 auth_protocol = 1 [deprecated = true]; - if (this->_internal_auth_protocol() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 1, this->_internal_auth_protocol(), target); - } - - // bytes payload = 2 [deprecated = true]; - if (!this->_internal_payload().empty()) { - const std::string& _s = this->_internal_payload(); - target = stream->WriteBytesMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HandshakeRequest) - return target; -} - -::size_t HandshakeRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HandshakeRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bytes payload = 2 [deprecated = true]; - if (!this->_internal_payload().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_payload()); - } - - // sint32 auth_protocol = 1 [deprecated = true]; - if (this->_internal_auth_protocol() != 0) { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_auth_protocol()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HandshakeRequest::_class_data_ = { - HandshakeRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HandshakeRequest::GetClassData() const { - return &_class_data_; + _impl_.payload_.ClearToEmpty(); + _impl_.auth_protocol_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HandshakeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HandshakeRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HandshakeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HandshakeRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HandshakeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // sint32 auth_protocol = 1 [deprecated = true]; + if (this_._internal_auth_protocol() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 1, this_._internal_auth_protocol(), target); + } + + // bytes payload = 2 [deprecated = true]; + if (!this_._internal_payload().empty()) { + const std::string& _s = this_._internal_payload(); + target = stream->WriteBytesMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HandshakeRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HandshakeRequest::ByteSizeLong(const MessageLite& base) { + const HandshakeRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HandshakeRequest::ByteSizeLong() const { + const HandshakeRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // bytes payload = 2 [deprecated = true]; + if (!this_._internal_payload().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_payload()); + } + // sint32 auth_protocol = 1 [deprecated = true]; + if (this_._internal_auth_protocol() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_auth_protocol()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HandshakeRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) @@ -1047,7 +1195,7 @@ void HandshakeRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go _this->_internal_set_payload(from._internal_payload()); } if (from._internal_auth_protocol() != 0) { - _this->_internal_set_auth_protocol(from._internal_auth_protocol()); + _this->_impl_.auth_protocol_ = from._impl_.auth_protocol_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1059,13 +1207,7 @@ void HandshakeRequest::CopyFrom(const HandshakeRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool HandshakeRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HandshakeRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HandshakeRequest::InternalSwap(HandshakeRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1076,9 +1218,7 @@ void HandshakeRequest::InternalSwap(HandshakeRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata HandshakeRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1087,13 +1227,17 @@ class HandshakeResponse::_Internal { }; HandshakeResponse::HandshakeResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HandshakeResponse) } inline PROTOBUF_NDEBUG_INLINE HandshakeResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HandshakeResponse& from_msg) : metadata_header_(arena, from.metadata_header_), session_token_(arena, from.session_token_), _cached_size_{0} {} @@ -1101,12 +1245,16 @@ inline PROTOBUF_NDEBUG_INLINE HandshakeResponse::Impl_::Impl_( HandshakeResponse::HandshakeResponse( ::google::protobuf::Arena* arena, const HandshakeResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HandshakeResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, token_deadline_time_millis_), reinterpret_cast(&from._impl_) + @@ -1145,28 +1293,34 @@ inline void HandshakeResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HandshakeResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.metadata_header_.ClearToEmpty(); - _impl_.session_token_.ClearToEmpty(); - ::memset(&_impl_.token_deadline_time_millis_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.token_expiration_delay_millis_) - - reinterpret_cast(&_impl_.token_deadline_time_millis_)) + sizeof(_impl_.token_expiration_delay_millis_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HandshakeResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HandshakeResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HandshakeResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HandshakeResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HandshakeResponse::ByteSizeLong, + &HandshakeResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_._cached_size_), + false, + }, + &HandshakeResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HandshakeResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 0, 0, 2> HandshakeResponse::_table_ = { { @@ -1179,8 +1333,12 @@ const ::_pbi::TcParseTable<2, 4, 0, 0, 2> HandshakeResponse::_table_ = { 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_HandshakeResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HandshakeResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; {::_pbi::TcParser::FastZ64S1, @@ -1215,92 +1373,113 @@ const ::_pbi::TcParseTable<2, 4, 0, 0, 2> HandshakeResponse::_table_ = { }}, }; -::uint8_t* HandshakeResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes metadata_header = 1 [deprecated = true]; - if (!this->_internal_metadata_header().empty()) { - const std::string& _s = this->_internal_metadata_header(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - // bytes session_token = 2 [deprecated = true]; - if (!this->_internal_session_token().empty()) { - const std::string& _s = this->_internal_session_token(); - target = stream->WriteBytesMaybeAliased(2, _s, target); - } - - // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; - if (this->_internal_token_deadline_time_millis() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 3, this->_internal_token_deadline_time_millis(), target); - } - - // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; - if (this->_internal_token_expiration_delay_millis() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 4, this->_internal_token_expiration_delay_millis(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HandshakeResponse) - return target; -} - -::size_t HandshakeResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HandshakeResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bytes metadata_header = 1 [deprecated = true]; - if (!this->_internal_metadata_header().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_metadata_header()); - } - - // bytes session_token = 2 [deprecated = true]; - if (!this->_internal_session_token().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_session_token()); - } - - // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; - if (this->_internal_token_deadline_time_millis() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_token_deadline_time_millis()); - } - - // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; - if (this->_internal_token_expiration_delay_millis() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_token_expiration_delay_millis()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HandshakeResponse::_class_data_ = { - HandshakeResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HandshakeResponse::GetClassData() const { - return &_class_data_; + _impl_.metadata_header_.ClearToEmpty(); + _impl_.session_token_.ClearToEmpty(); + ::memset(&_impl_.token_deadline_time_millis_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.token_expiration_delay_millis_) - + reinterpret_cast(&_impl_.token_deadline_time_millis_)) + sizeof(_impl_.token_expiration_delay_millis_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HandshakeResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HandshakeResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HandshakeResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HandshakeResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HandshakeResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes metadata_header = 1 [deprecated = true]; + if (!this_._internal_metadata_header().empty()) { + const std::string& _s = this_._internal_metadata_header(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // bytes session_token = 2 [deprecated = true]; + if (!this_._internal_session_token().empty()) { + const std::string& _s = this_._internal_session_token(); + target = stream->WriteBytesMaybeAliased(2, _s, target); + } + + // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; + if (this_._internal_token_deadline_time_millis() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 3, this_._internal_token_deadline_time_millis(), target); + } + + // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; + if (this_._internal_token_expiration_delay_millis() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 4, this_._internal_token_expiration_delay_millis(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HandshakeResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HandshakeResponse::ByteSizeLong(const MessageLite& base) { + const HandshakeResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HandshakeResponse::ByteSizeLong() const { + const HandshakeResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // bytes metadata_header = 1 [deprecated = true]; + if (!this_._internal_metadata_header().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_metadata_header()); + } + // bytes session_token = 2 [deprecated = true]; + if (!this_._internal_session_token().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_session_token()); + } + // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; + if (this_._internal_token_deadline_time_millis() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_token_deadline_time_millis()); + } + // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; + if (this_._internal_token_expiration_delay_millis() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_token_expiration_delay_millis()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HandshakeResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) @@ -1315,10 +1494,10 @@ void HandshakeResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::g _this->_internal_set_session_token(from._internal_session_token()); } if (from._internal_token_deadline_time_millis() != 0) { - _this->_internal_set_token_deadline_time_millis(from._internal_token_deadline_time_millis()); + _this->_impl_.token_deadline_time_millis_ = from._impl_.token_deadline_time_millis_; } if (from._internal_token_expiration_delay_millis() != 0) { - _this->_internal_set_token_expiration_delay_millis(from._internal_token_expiration_delay_millis()); + _this->_impl_.token_expiration_delay_millis_ = from._impl_.token_expiration_delay_millis_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1330,13 +1509,7 @@ void HandshakeResponse::CopyFrom(const HandshakeResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool HandshakeResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HandshakeResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HandshakeResponse::InternalSwap(HandshakeResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1353,9 +1526,7 @@ void HandshakeResponse::InternalSwap(HandshakeResponse* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata HandshakeResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1364,13 +1535,21 @@ class CloseSessionResponse::_Internal { }; CloseSessionResponse::CloseSessionResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CloseSessionResponse) } CloseSessionResponse::CloseSessionResponse( ::google::protobuf::Arena* arena, const CloseSessionResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CloseSessionResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -1379,6 +1558,61 @@ CloseSessionResponse::CloseSessionResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CloseSessionResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CloseSessionResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CloseSessionResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CloseSessionResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CloseSessionResponse::ByteSizeLong, + &CloseSessionResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CloseSessionResponse, _impl_._cached_size_), + false, + }, + &CloseSessionResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CloseSessionResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CloseSessionResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CloseSessionResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -1388,55 +1622,55 @@ CloseSessionResponse::CloseSessionResponse( ::google::protobuf::Metadata CloseSessionResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[3]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ReleaseRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& id(const ReleaseRequest* msg); - static void set_has_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ReleaseRequest::_Internal::id(const ReleaseRequest* msg) { - return *msg->_impl_.id_; -} void ReleaseRequest::clear_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.id_ != nullptr) _impl_.id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ReleaseRequest::ReleaseRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ReleaseRequest) } inline PROTOBUF_NDEBUG_INLINE ReleaseRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} ReleaseRequest::ReleaseRequest( ::google::protobuf::Arena* arena, const ReleaseRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ReleaseRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.id_) - : nullptr; + _impl_.id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ReleaseRequest) } @@ -1460,29 +1694,34 @@ inline void ReleaseRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ReleaseRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.id_ != nullptr); - _impl_.id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ReleaseRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ReleaseRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ReleaseRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ReleaseRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ReleaseRequest::ByteSizeLong, + &ReleaseRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_._cached_size_), + false, + }, + &ReleaseRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ReleaseRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ReleaseRequest::_table_ = { { @@ -1495,8 +1734,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ReleaseRequest::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ReleaseRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ReleaseRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket id = 1; {::_pbi::TcParser::FastMtS1, @@ -1513,68 +1756,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> ReleaseRequest::_table_ = { }}, }; -::uint8_t* ReleaseRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::id(this), - _Internal::id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ReleaseRequest) - return target; -} - -::size_t ReleaseRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ReleaseRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Ticket id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.id_); + ABSL_DCHECK(_impl_.id_ != nullptr); + _impl_.id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ReleaseRequest::_class_data_ = { - ReleaseRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ReleaseRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ReleaseRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ReleaseRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ReleaseRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ReleaseRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ReleaseRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.id_, this_._impl_.id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ReleaseRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ReleaseRequest::ByteSizeLong(const MessageLite& base) { + const ReleaseRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ReleaseRequest::ByteSizeLong() const { + const ReleaseRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.Ticket id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ReleaseRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.id_ != nullptr); + if (_this->_impl_.id_ == nullptr) { + _this->_impl_.id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.id_); + } else { + _this->_impl_.id_->MergeFrom(*from._impl_.id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1585,13 +1861,7 @@ void ReleaseRequest::CopyFrom(const ReleaseRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ReleaseRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ReleaseRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ReleaseRequest::InternalSwap(ReleaseRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1600,9 +1870,7 @@ void ReleaseRequest::InternalSwap(ReleaseRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ReleaseRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[4]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1611,13 +1879,21 @@ class ReleaseResponse::_Internal { }; ReleaseResponse::ReleaseResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ReleaseResponse) } ReleaseResponse::ReleaseResponse( ::google::protobuf::Arena* arena, const ReleaseResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ReleaseResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -1626,6 +1902,61 @@ ReleaseResponse::ReleaseResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ReleaseResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ReleaseResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ReleaseResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ReleaseResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ReleaseResponse::ByteSizeLong, + &ReleaseResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ReleaseResponse, _impl_._cached_size_), + false, + }, + &ReleaseResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ReleaseResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ReleaseResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ReleaseResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -1635,70 +1966,63 @@ ReleaseResponse::ReleaseResponse( ::google::protobuf::Metadata ReleaseResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[5]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExportRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& source_id(const ExportRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const ExportRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_Internal::source_id(const ExportRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_Internal::result_id(const ExportRequest* msg) { - return *msg->_impl_.result_id_; -} void ExportRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void ExportRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } ExportRequest::ExportRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportRequest) } inline PROTOBUF_NDEBUG_INLINE ExportRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ExportRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} ExportRequest::ExportRequest( ::google::protobuf::Arena* arena, const ExportRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportRequest) } @@ -1728,35 +2052,34 @@ inline void ExportRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExportRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExportRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExportRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExportRequest::ByteSizeLong, + &ExportRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_._cached_size_), + false, + }, + &ExportRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ExportRequest::_table_ = { { @@ -1769,8 +2092,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ExportRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExportRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; {::_pbi::TcParser::FastMtS1, @@ -1794,74 +2121,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ExportRequest::_table_ = { }}, }; -::uint8_t* ExportRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportRequest) - return target; -} - -::size_t ExportRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExportRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExportRequest::_class_data_ = { - ExportRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExportRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExportRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExportRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExportRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExportRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExportRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExportRequest::ByteSizeLong(const MessageLite& base) { + const ExportRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExportRequest::ByteSizeLong() const { + const ExportRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExportRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ExportRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -1870,14 +2226,25 @@ void ExportRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::googl cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1888,13 +2255,7 @@ void ExportRequest::CopyFrom(const ExportRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ExportRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExportRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExportRequest::InternalSwap(ExportRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -1908,9 +2269,7 @@ void ExportRequest::InternalSwap(ExportRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ExportRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1919,13 +2278,21 @@ class ExportResponse::_Internal { }; ExportResponse::ExportResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportResponse) } ExportResponse::ExportResponse( ::google::protobuf::Arena* arena, const ExportResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -1934,6 +2301,61 @@ ExportResponse::ExportResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ExportResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ExportResponse::ByteSizeLong, + &ExportResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportResponse, _impl_._cached_size_), + false, + }, + &ExportResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ExportResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -1943,70 +2365,63 @@ ExportResponse::ExportResponse( ::google::protobuf::Metadata ExportResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[7]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class PublishRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& source_id(const PublishRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const PublishRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_Internal::source_id(const PublishRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_Internal::result_id(const PublishRequest* msg) { - return *msg->_impl_.result_id_; -} void PublishRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } void PublishRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } PublishRequest::PublishRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.PublishRequest) } inline PROTOBUF_NDEBUG_INLINE PublishRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::PublishRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} PublishRequest::PublishRequest( ::google::protobuf::Arena* arena, const PublishRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE PublishRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.PublishRequest) } @@ -2036,35 +2451,34 @@ inline void PublishRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void PublishRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PublishRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* PublishRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + PublishRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_PublishRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &PublishRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &PublishRequest::ByteSizeLong, + &PublishRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_._cached_size_), + false, + }, + &PublishRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* PublishRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> PublishRequest::_table_ = { { @@ -2077,8 +2491,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> PublishRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_PublishRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::PublishRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; {::_pbi::TcParser::FastMtS1, @@ -2102,74 +2520,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> PublishRequest::_table_ = { }}, }; -::uint8_t* PublishRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PublishRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PublishRequest) - return target; -} - -::size_t PublishRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PublishRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void PublishRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.PublishRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData PublishRequest::_class_data_ = { - PublishRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* PublishRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void PublishRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* PublishRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const PublishRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* PublishRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const PublishRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.PublishRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.PublishRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t PublishRequest::ByteSizeLong(const MessageLite& base) { + const PublishRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t PublishRequest::ByteSizeLong() const { + const PublishRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.PublishRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void PublishRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.PublishRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -2178,14 +2625,25 @@ void PublishRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2196,13 +2654,7 @@ void PublishRequest::CopyFrom(const PublishRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool PublishRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* PublishRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void PublishRequest::InternalSwap(PublishRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -2216,9 +2668,7 @@ void PublishRequest::InternalSwap(PublishRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata PublishRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[8]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2227,13 +2677,21 @@ class PublishResponse::_Internal { }; PublishResponse::PublishResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.PublishResponse) } PublishResponse::PublishResponse( ::google::protobuf::Arena* arena, const PublishResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE PublishResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2242,6 +2700,61 @@ PublishResponse::PublishResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.PublishResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + PublishResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_PublishResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &PublishResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &PublishResponse::ByteSizeLong, + &PublishResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(PublishResponse, _impl_._cached_size_), + false, + }, + &PublishResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* PublishResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> PublishResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::PublishResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2251,9 +2764,7 @@ PublishResponse::PublishResponse( ::google::protobuf::Metadata PublishResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[9]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2262,13 +2773,21 @@ class ExportNotificationRequest::_Internal { }; ExportNotificationRequest::ExportNotificationRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportNotificationRequest) } ExportNotificationRequest::ExportNotificationRequest( ::google::protobuf::Arena* arena, const ExportNotificationRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportNotificationRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2277,6 +2796,61 @@ ExportNotificationRequest::ExportNotificationRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportNotificationRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportNotificationRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ExportNotificationRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportNotificationRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ExportNotificationRequest::ByteSizeLong, + &ExportNotificationRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportNotificationRequest, _impl_._cached_size_), + false, + }, + &ExportNotificationRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportNotificationRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ExportNotificationRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportNotificationRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2286,39 +2860,35 @@ ExportNotificationRequest::ExportNotificationRequest( ::google::protobuf::Metadata ExportNotificationRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[10]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExportNotification::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& ticket(const ExportNotification* msg); - static void set_has_ticket(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ExportNotification::_Internal::ticket(const ExportNotification* msg) { - return *msg->_impl_.ticket_; -} void ExportNotification::clear_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.ticket_ != nullptr) _impl_.ticket_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ExportNotification::ExportNotification(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportNotification) } inline PROTOBUF_NDEBUG_INLINE ExportNotification::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ExportNotification& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, context_(arena, from.context_), @@ -2327,16 +2897,20 @@ inline PROTOBUF_NDEBUG_INLINE ExportNotification::Impl_::Impl_( ExportNotification::ExportNotification( ::google::protobuf::Arena* arena, const ExportNotification& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportNotification* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.ticket_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ticket_) - : nullptr; + _impl_.ticket_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.ticket_) + : nullptr; _impl_.export_state_ = from._impl_.export_state_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportNotification) @@ -2370,32 +2944,34 @@ inline void ExportNotification::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExportNotification::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportNotification) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.context_.ClearToEmpty(); - _impl_.dependent_handle_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.ticket_ != nullptr); - _impl_.ticket_->Clear(); - } - _impl_.export_state_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExportNotification::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportNotification::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExportNotification_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportNotification::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExportNotification::ByteSizeLong, + &ExportNotification::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_._cached_size_), + false, + }, + &ExportNotification::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportNotification::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 1, 84, 2> ExportNotification::_table_ = { { @@ -2408,8 +2984,12 @@ const ::_pbi::TcParseTable<2, 4, 1, 84, 2> ExportNotification::_table_ = { 4, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExportNotification_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportNotification>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string dependent_handle = 4; {::_pbi::TcParser::FastUS1, @@ -2448,100 +3028,131 @@ const ::_pbi::TcParseTable<2, 4, 1, 84, 2> ExportNotification::_table_ = { }}, }; -::uint8_t* ExportNotification::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportNotification) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::ticket(this), - _Internal::ticket(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; - if (this->_internal_export_state() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_export_state(), target); - } - - // string context = 3; - if (!this->_internal_context().empty()) { - const std::string& _s = this->_internal_context(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportNotification.context"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // string dependent_handle = 4; - if (!this->_internal_dependent_handle().empty()) { - const std::string& _s = this->_internal_dependent_handle(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportNotification) - return target; -} - -::size_t ExportNotification::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportNotification) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExportNotification::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportNotification) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string context = 3; - if (!this->_internal_context().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_context()); - } - - // string dependent_handle = 4; - if (!this->_internal_dependent_handle().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_dependent_handle()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + _impl_.context_.ClearToEmpty(); + _impl_.dependent_handle_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.ticket_); - } - - // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; - if (this->_internal_export_state() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_export_state()); + ABSL_DCHECK(_impl_.ticket_ != nullptr); + _impl_.ticket_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExportNotification::_class_data_ = { - ExportNotification::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExportNotification::GetClassData() const { - return &_class_data_; + _impl_.export_state_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExportNotification::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExportNotification::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExportNotification& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExportNotification::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExportNotification& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportNotification) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.ticket_, this_._impl_.ticket_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; + if (this_._internal_export_state() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_export_state(), target); + } + + // string context = 3; + if (!this_._internal_context().empty()) { + const std::string& _s = this_._internal_context(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportNotification.context"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // string dependent_handle = 4; + if (!this_._internal_dependent_handle().empty()) { + const std::string& _s = this_._internal_dependent_handle(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportNotification) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExportNotification::ByteSizeLong(const MessageLite& base) { + const ExportNotification& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExportNotification::ByteSizeLong() const { + const ExportNotification& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportNotification) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string context = 3; + if (!this_._internal_context().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_context()); + } + // string dependent_handle = 4; + if (!this_._internal_dependent_handle().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_dependent_handle()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.ticket_); + } + } + { + // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; + if (this_._internal_export_state() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_export_state()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExportNotification::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ExportNotification) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -2553,13 +3164,20 @@ void ExportNotification::MergeImpl(::google::protobuf::Message& to_msg, const :: if (!from._internal_dependent_handle().empty()) { _this->_internal_set_dependent_handle(from._internal_dependent_handle()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_ticket()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_ticket()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.ticket_ != nullptr); + if (_this->_impl_.ticket_ == nullptr) { + _this->_impl_.ticket_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ticket_); + } else { + _this->_impl_.ticket_->MergeFrom(*from._impl_.ticket_); + } } if (from._internal_export_state() != 0) { - _this->_internal_set_export_state(from._internal_export_state()); + _this->_impl_.export_state_ = from._impl_.export_state_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2570,13 +3188,7 @@ void ExportNotification::CopyFrom(const ExportNotification& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ExportNotification::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExportNotification::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExportNotification::InternalSwap(ExportNotification* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2594,9 +3206,7 @@ void ExportNotification::InternalSwap(ExportNotification* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata ExportNotification::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[11]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2605,13 +3215,21 @@ class TerminationNotificationRequest::_Internal { }; TerminationNotificationRequest::TerminationNotificationRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationRequest) } TerminationNotificationRequest::TerminationNotificationRequest( ::google::protobuf::Arena* arena, const TerminationNotificationRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TerminationNotificationRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2620,6 +3238,61 @@ TerminationNotificationRequest::TerminationNotificationRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TerminationNotificationRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_TerminationNotificationRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TerminationNotificationRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &TerminationNotificationRequest::ByteSizeLong, + &TerminationNotificationRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TerminationNotificationRequest, _impl_._cached_size_), + false, + }, + &TerminationNotificationRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TerminationNotificationRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> TerminationNotificationRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2629,9 +3302,7 @@ TerminationNotificationRequest::TerminationNotificationRequest( ::google::protobuf::Metadata TerminationNotificationRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[12]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2640,13 +3311,17 @@ class TerminationNotificationResponse_StackTrace::_Internal { }; TerminationNotificationResponse_StackTrace::TerminationNotificationResponse_StackTrace(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) } inline PROTOBUF_NDEBUG_INLINE TerminationNotificationResponse_StackTrace::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace& from_msg) : elements_{visibility, arena, from.elements_}, type_(arena, from.type_), message_(arena, from.message_), @@ -2655,12 +3330,16 @@ inline PROTOBUF_NDEBUG_INLINE TerminationNotificationResponse_StackTrace::Impl_: TerminationNotificationResponse_StackTrace::TerminationNotificationResponse_StackTrace( ::google::protobuf::Arena* arena, const TerminationNotificationResponse_StackTrace& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TerminationNotificationResponse_StackTrace* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) } @@ -2687,26 +3366,34 @@ inline void TerminationNotificationResponse_StackTrace::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TerminationNotificationResponse_StackTrace::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.elements_.Clear(); - _impl_.type_.ClearToEmpty(); - _impl_.message_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TerminationNotificationResponse_StackTrace::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TerminationNotificationResponse_StackTrace::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TerminationNotificationResponse_StackTrace_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TerminationNotificationResponse_StackTrace::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TerminationNotificationResponse_StackTrace::ByteSizeLong, + &TerminationNotificationResponse_StackTrace::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_._cached_size_), + false, + }, + &TerminationNotificationResponse_StackTrace::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TerminationNotificationResponse_StackTrace::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 104, 2> TerminationNotificationResponse_StackTrace::_table_ = { { @@ -2719,8 +3406,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 104, 2> TerminationNotificationResponse_Stac 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_TerminationNotificationResponse_StackTrace_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string type = 1; @@ -2755,84 +3446,110 @@ const ::_pbi::TcParseTable<2, 3, 0, 104, 2> TerminationNotificationResponse_Stac }}, }; -::uint8_t* TerminationNotificationResponse_StackTrace::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string type = 1; - if (!this->_internal_type().empty()) { - const std::string& _s = this->_internal_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string message = 2; - if (!this->_internal_message().empty()) { - const std::string& _s = this->_internal_message(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // repeated string elements = 3; - for (int i = 0, n = this->_internal_elements_size(); i < n; ++i) { - const auto& s = this->_internal_elements().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - return target; -} - -::size_t TerminationNotificationResponse_StackTrace::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TerminationNotificationResponse_StackTrace::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string elements = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_elements().size()); - for (int i = 0, n = _internal_elements().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_elements().Get(i)); - } - // string type = 1; - if (!this->_internal_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_type()); - } - - // string message = 2; - if (!this->_internal_message().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_message()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TerminationNotificationResponse_StackTrace::_class_data_ = { - TerminationNotificationResponse_StackTrace::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TerminationNotificationResponse_StackTrace::GetClassData() const { - return &_class_data_; + _impl_.elements_.Clear(); + _impl_.type_.ClearToEmpty(); + _impl_.message_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TerminationNotificationResponse_StackTrace::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TerminationNotificationResponse_StackTrace::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TerminationNotificationResponse_StackTrace& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TerminationNotificationResponse_StackTrace::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TerminationNotificationResponse_StackTrace& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string type = 1; + if (!this_._internal_type().empty()) { + const std::string& _s = this_._internal_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string message = 2; + if (!this_._internal_message().empty()) { + const std::string& _s = this_._internal_message(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // repeated string elements = 3; + for (int i = 0, n = this_._internal_elements_size(); i < n; ++i) { + const auto& s = this_._internal_elements().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TerminationNotificationResponse_StackTrace::ByteSizeLong(const MessageLite& base) { + const TerminationNotificationResponse_StackTrace& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TerminationNotificationResponse_StackTrace::ByteSizeLong() const { + const TerminationNotificationResponse_StackTrace& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string elements = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_elements().size()); + for (int i = 0, n = this_._internal_elements().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_elements().Get(i)); + } + } + } + { + // string type = 1; + if (!this_._internal_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_type()); + } + // string message = 2; + if (!this_._internal_message().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_message()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TerminationNotificationResponse_StackTrace::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) @@ -2857,13 +3574,7 @@ void TerminationNotificationResponse_StackTrace::CopyFrom(const TerminationNotif MergeFrom(from); } -PROTOBUF_NOINLINE bool TerminationNotificationResponse_StackTrace::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TerminationNotificationResponse_StackTrace::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TerminationNotificationResponse_StackTrace::InternalSwap(TerminationNotificationResponse_StackTrace* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2875,9 +3586,7 @@ void TerminationNotificationResponse_StackTrace::InternalSwap(TerminationNotific } ::google::protobuf::Metadata TerminationNotificationResponse_StackTrace::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[13]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2886,13 +3595,17 @@ class TerminationNotificationResponse::_Internal { }; TerminationNotificationResponse::TerminationNotificationResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) } inline PROTOBUF_NDEBUG_INLINE TerminationNotificationResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse& from_msg) : stack_traces_{visibility, arena, from.stack_traces_}, reason_(arena, from.reason_), _cached_size_{0} {} @@ -2900,12 +3613,16 @@ inline PROTOBUF_NDEBUG_INLINE TerminationNotificationResponse::Impl_::Impl_( TerminationNotificationResponse::TerminationNotificationResponse( ::google::protobuf::Arena* arena, const TerminationNotificationResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TerminationNotificationResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, abnormal_termination_), reinterpret_cast(&from._impl_) + @@ -2943,28 +3660,34 @@ inline void TerminationNotificationResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TerminationNotificationResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.stack_traces_.Clear(); - _impl_.reason_.ClearToEmpty(); - ::memset(&_impl_.abnormal_termination_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.is_from_uncaught_exception_) - - reinterpret_cast(&_impl_.abnormal_termination_)) + sizeof(_impl_.is_from_uncaught_exception_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TerminationNotificationResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TerminationNotificationResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TerminationNotificationResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TerminationNotificationResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TerminationNotificationResponse::ByteSizeLong, + &TerminationNotificationResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_._cached_size_), + false, + }, + &TerminationNotificationResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fsession_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TerminationNotificationResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 1, 80, 2> TerminationNotificationResponse::_table_ = { { @@ -2977,8 +3700,12 @@ const ::_pbi::TcParseTable<2, 4, 1, 80, 2> TerminationNotificationResponse::_tab 4, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TerminationNotificationResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; {::_pbi::TcParser::FastMtR1, @@ -3016,94 +3743,122 @@ const ::_pbi::TcParseTable<2, 4, 1, 80, 2> TerminationNotificationResponse::_tab }}, }; -::uint8_t* TerminationNotificationResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool abnormal_termination = 1; - if (this->_internal_abnormal_termination() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_abnormal_termination(), target); - } - - // string reason = 2; - if (!this->_internal_reason().empty()) { - const std::string& _s = this->_internal_reason(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // bool is_from_uncaught_exception = 3; - if (this->_internal_is_from_uncaught_exception() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_is_from_uncaught_exception(), target); - } - - // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; - for (unsigned i = 0, - n = static_cast(this->_internal_stack_traces_size()); i < n; i++) { - const auto& repfield = this->_internal_stack_traces().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(4, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - return target; -} - -::size_t TerminationNotificationResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TerminationNotificationResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; - total_size += 1UL * this->_internal_stack_traces_size(); - for (const auto& msg : this->_internal_stack_traces()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string reason = 2; - if (!this->_internal_reason().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_reason()); - } - - // bool abnormal_termination = 1; - if (this->_internal_abnormal_termination() != 0) { - total_size += 2; - } - - // bool is_from_uncaught_exception = 3; - if (this->_internal_is_from_uncaught_exception() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TerminationNotificationResponse::_class_data_ = { - TerminationNotificationResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TerminationNotificationResponse::GetClassData() const { - return &_class_data_; + _impl_.stack_traces_.Clear(); + _impl_.reason_.ClearToEmpty(); + ::memset(&_impl_.abnormal_termination_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.is_from_uncaught_exception_) - + reinterpret_cast(&_impl_.abnormal_termination_)) + sizeof(_impl_.is_from_uncaught_exception_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TerminationNotificationResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TerminationNotificationResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TerminationNotificationResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TerminationNotificationResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TerminationNotificationResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool abnormal_termination = 1; + if (this_._internal_abnormal_termination() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_abnormal_termination(), target); + } + + // string reason = 2; + if (!this_._internal_reason().empty()) { + const std::string& _s = this_._internal_reason(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bool is_from_uncaught_exception = 3; + if (this_._internal_is_from_uncaught_exception() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_is_from_uncaught_exception(), target); + } + + // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; + for (unsigned i = 0, n = static_cast( + this_._internal_stack_traces_size()); + i < n; i++) { + const auto& repfield = this_._internal_stack_traces().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TerminationNotificationResponse::ByteSizeLong(const MessageLite& base) { + const TerminationNotificationResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TerminationNotificationResponse::ByteSizeLong() const { + const TerminationNotificationResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; + { + total_size += 1UL * this_._internal_stack_traces_size(); + for (const auto& msg : this_._internal_stack_traces()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string reason = 2; + if (!this_._internal_reason().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_reason()); + } + // bool abnormal_termination = 1; + if (this_._internal_abnormal_termination() != 0) { + total_size += 2; + } + // bool is_from_uncaught_exception = 3; + if (this_._internal_is_from_uncaught_exception() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TerminationNotificationResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) @@ -3117,10 +3872,10 @@ void TerminationNotificationResponse::MergeImpl(::google::protobuf::Message& to_ _this->_internal_set_reason(from._internal_reason()); } if (from._internal_abnormal_termination() != 0) { - _this->_internal_set_abnormal_termination(from._internal_abnormal_termination()); + _this->_impl_.abnormal_termination_ = from._impl_.abnormal_termination_; } if (from._internal_is_from_uncaught_exception() != 0) { - _this->_internal_set_is_from_uncaught_exception(from._internal_is_from_uncaught_exception()); + _this->_impl_.is_from_uncaught_exception_ = from._impl_.is_from_uncaught_exception_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -3132,13 +3887,7 @@ void TerminationNotificationResponse::CopyFrom(const TerminationNotificationResp MergeFrom(from); } -PROTOBUF_NOINLINE bool TerminationNotificationResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TerminationNotificationResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TerminationNotificationResponse::InternalSwap(TerminationNotificationResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -3155,9 +3904,7 @@ void TerminationNotificationResponse::InternalSwap(TerminationNotificationRespon } ::google::protobuf::Metadata TerminationNotificationResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fsession_2eproto_getter, &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - file_level_metadata_deephaven_2fproto_2fsession_2eproto[14]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -3170,4 +3917,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fsession_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.h index 9db26ca460d..65a3db17f3f 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/session.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fsession_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fsession_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -173,21 +167,18 @@ inline bool ExportNotification_State_Parse(absl::string_view name, ExportNotific // ------------------------------------------------------------------- -class WrappedAuthenticationRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) */ { +class WrappedAuthenticationRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) */ { public: inline WrappedAuthenticationRequest() : WrappedAuthenticationRequest(nullptr) {} - ~WrappedAuthenticationRequest() override; - template - explicit PROTOBUF_CONSTEXPR WrappedAuthenticationRequest(::google::protobuf::internal::ConstantInitialized); - - inline WrappedAuthenticationRequest(const WrappedAuthenticationRequest& from) - : WrappedAuthenticationRequest(nullptr, from) {} - WrappedAuthenticationRequest(WrappedAuthenticationRequest&& from) noexcept - : WrappedAuthenticationRequest() { - *this = ::std::move(from); - } - + ~WrappedAuthenticationRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR WrappedAuthenticationRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline WrappedAuthenticationRequest(const WrappedAuthenticationRequest& from) : WrappedAuthenticationRequest(nullptr, from) {} + inline WrappedAuthenticationRequest(WrappedAuthenticationRequest&& from) noexcept + : WrappedAuthenticationRequest(nullptr, std::move(from)) {} inline WrappedAuthenticationRequest& operator=(const WrappedAuthenticationRequest& from) { CopyFrom(from); return *this; @@ -195,9 +186,9 @@ class WrappedAuthenticationRequest final : inline WrappedAuthenticationRequest& operator=(WrappedAuthenticationRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -229,22 +220,17 @@ class WrappedAuthenticationRequest final : } static inline const WrappedAuthenticationRequest* internal_default_instance() { return reinterpret_cast( - &_WrappedAuthenticationRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(WrappedAuthenticationRequest& a, WrappedAuthenticationRequest& b) { - a.Swap(&b); + &_WrappedAuthenticationRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(WrappedAuthenticationRequest& a, WrappedAuthenticationRequest& b) { a.Swap(&b); } inline void Swap(WrappedAuthenticationRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -258,52 +244,69 @@ class WrappedAuthenticationRequest final : // implements Message ---------------------------------------------- - WrappedAuthenticationRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + WrappedAuthenticationRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const WrappedAuthenticationRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const WrappedAuthenticationRequest& from) { - WrappedAuthenticationRequest::MergeImpl(*this, from); - } + void MergeFrom(const WrappedAuthenticationRequest& from) { WrappedAuthenticationRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(WrappedAuthenticationRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest"; } + + protected: explicit WrappedAuthenticationRequest(::google::protobuf::Arena* arena); WrappedAuthenticationRequest(::google::protobuf::Arena* arena, const WrappedAuthenticationRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + WrappedAuthenticationRequest(::google::protobuf::Arena* arena, WrappedAuthenticationRequest&& from) noexcept + : WrappedAuthenticationRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTypeFieldNumber = 4, kPayloadFieldNumber = 5, @@ -343,12 +346,15 @@ class WrappedAuthenticationRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_WrappedAuthenticationRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -356,13 +362,13 @@ class WrappedAuthenticationRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const WrappedAuthenticationRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr type_; ::google::protobuf::internal::ArenaStringPtr payload_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -370,23 +376,21 @@ class WrappedAuthenticationRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TerminationNotificationResponse_StackTrace final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) */ { +class TerminationNotificationResponse_StackTrace final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) */ { public: inline TerminationNotificationResponse_StackTrace() : TerminationNotificationResponse_StackTrace(nullptr) {} - ~TerminationNotificationResponse_StackTrace() override; - template - explicit PROTOBUF_CONSTEXPR TerminationNotificationResponse_StackTrace(::google::protobuf::internal::ConstantInitialized); - - inline TerminationNotificationResponse_StackTrace(const TerminationNotificationResponse_StackTrace& from) - : TerminationNotificationResponse_StackTrace(nullptr, from) {} - TerminationNotificationResponse_StackTrace(TerminationNotificationResponse_StackTrace&& from) noexcept - : TerminationNotificationResponse_StackTrace() { - *this = ::std::move(from); - } - + ~TerminationNotificationResponse_StackTrace() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TerminationNotificationResponse_StackTrace( + ::google::protobuf::internal::ConstantInitialized); + + inline TerminationNotificationResponse_StackTrace(const TerminationNotificationResponse_StackTrace& from) : TerminationNotificationResponse_StackTrace(nullptr, from) {} + inline TerminationNotificationResponse_StackTrace(TerminationNotificationResponse_StackTrace&& from) noexcept + : TerminationNotificationResponse_StackTrace(nullptr, std::move(from)) {} inline TerminationNotificationResponse_StackTrace& operator=(const TerminationNotificationResponse_StackTrace& from) { CopyFrom(from); return *this; @@ -394,9 +398,9 @@ class TerminationNotificationResponse_StackTrace final : inline TerminationNotificationResponse_StackTrace& operator=(TerminationNotificationResponse_StackTrace&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -428,22 +432,17 @@ class TerminationNotificationResponse_StackTrace final : } static inline const TerminationNotificationResponse_StackTrace* internal_default_instance() { return reinterpret_cast( - &_TerminationNotificationResponse_StackTrace_default_instance_); - } - static constexpr int kIndexInFileMessages = - 13; - - friend void swap(TerminationNotificationResponse_StackTrace& a, TerminationNotificationResponse_StackTrace& b) { - a.Swap(&b); + &_TerminationNotificationResponse_StackTrace_default_instance_); } + static constexpr int kIndexInFileMessages = 13; + friend void swap(TerminationNotificationResponse_StackTrace& a, TerminationNotificationResponse_StackTrace& b) { a.Swap(&b); } inline void Swap(TerminationNotificationResponse_StackTrace* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -457,52 +456,69 @@ class TerminationNotificationResponse_StackTrace final : // implements Message ---------------------------------------------- - TerminationNotificationResponse_StackTrace* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TerminationNotificationResponse_StackTrace* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TerminationNotificationResponse_StackTrace& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TerminationNotificationResponse_StackTrace& from) { - TerminationNotificationResponse_StackTrace::MergeImpl(*this, from); - } + void MergeFrom(const TerminationNotificationResponse_StackTrace& from) { TerminationNotificationResponse_StackTrace::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TerminationNotificationResponse_StackTrace* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace"; } + + protected: explicit TerminationNotificationResponse_StackTrace(::google::protobuf::Arena* arena); TerminationNotificationResponse_StackTrace(::google::protobuf::Arena* arena, const TerminationNotificationResponse_StackTrace& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TerminationNotificationResponse_StackTrace(::google::protobuf::Arena* arena, TerminationNotificationResponse_StackTrace&& from) noexcept + : TerminationNotificationResponse_StackTrace(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kElementsFieldNumber = 3, kTypeFieldNumber = 1, @@ -517,17 +533,11 @@ class TerminationNotificationResponse_StackTrace final : void clear_elements() ; const std::string& elements(int index) const; std::string* mutable_elements(int index); - void set_elements(int index, const std::string& value); - void set_elements(int index, std::string&& value); - void set_elements(int index, const char* value); - void set_elements(int index, const char* value, std::size_t size); - void set_elements(int index, absl::string_view value); + template + void set_elements(int index, Arg_&& value, Args_... args); std::string* add_elements(); - void add_elements(const std::string& value); - void add_elements(std::string&& value); - void add_elements(const char* value); - void add_elements(const char* value, std::size_t size); - void add_elements(absl::string_view value); + template + void add_elements(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& elements() const; ::google::protobuf::RepeatedPtrField* mutable_elements(); @@ -571,12 +581,15 @@ class TerminationNotificationResponse_StackTrace final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 104, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TerminationNotificationResponse_StackTrace_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -584,13 +597,13 @@ class TerminationNotificationResponse_StackTrace final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TerminationNotificationResponse_StackTrace& from_msg); ::google::protobuf::RepeatedPtrField elements_; ::google::protobuf::internal::ArenaStringPtr type_; ::google::protobuf::internal::ArenaStringPtr message_; @@ -599,22 +612,20 @@ class TerminationNotificationResponse_StackTrace final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TerminationNotificationRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationRequest) */ { +class TerminationNotificationRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationRequest) */ { public: inline TerminationNotificationRequest() : TerminationNotificationRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR TerminationNotificationRequest(::google::protobuf::internal::ConstantInitialized); - - inline TerminationNotificationRequest(const TerminationNotificationRequest& from) - : TerminationNotificationRequest(nullptr, from) {} - TerminationNotificationRequest(TerminationNotificationRequest&& from) noexcept - : TerminationNotificationRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR TerminationNotificationRequest( + ::google::protobuf::internal::ConstantInitialized); + inline TerminationNotificationRequest(const TerminationNotificationRequest& from) : TerminationNotificationRequest(nullptr, from) {} + inline TerminationNotificationRequest(TerminationNotificationRequest&& from) noexcept + : TerminationNotificationRequest(nullptr, std::move(from)) {} inline TerminationNotificationRequest& operator=(const TerminationNotificationRequest& from) { CopyFrom(from); return *this; @@ -622,9 +633,9 @@ class TerminationNotificationRequest final : inline TerminationNotificationRequest& operator=(TerminationNotificationRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -656,22 +667,17 @@ class TerminationNotificationRequest final : } static inline const TerminationNotificationRequest* internal_default_instance() { return reinterpret_cast( - &_TerminationNotificationRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 12; - - friend void swap(TerminationNotificationRequest& a, TerminationNotificationRequest& b) { - a.Swap(&b); + &_TerminationNotificationRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 12; + friend void swap(TerminationNotificationRequest& a, TerminationNotificationRequest& b) { a.Swap(&b); } inline void Swap(TerminationNotificationRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -685,8 +691,8 @@ class TerminationNotificationRequest final : // implements Message ---------------------------------------------- - TerminationNotificationRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TerminationNotificationRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const TerminationNotificationRequest& from) { @@ -696,27 +702,41 @@ class TerminationNotificationRequest final : void MergeFrom(const TerminationNotificationRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TerminationNotificationRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TerminationNotificationRequest"; } + + protected: explicit TerminationNotificationRequest(::google::protobuf::Arena* arena); TerminationNotificationRequest(::google::protobuf::Arena* arena, const TerminationNotificationRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + TerminationNotificationRequest(::google::protobuf::Arena* arena, TerminationNotificationRequest&& from) noexcept + : TerminationNotificationRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TerminationNotificationRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_TerminationNotificationRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -725,32 +745,30 @@ class TerminationNotificationRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TerminationNotificationRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ReleaseResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ReleaseResponse) */ { +class ReleaseResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ReleaseResponse) */ { public: inline ReleaseResponse() : ReleaseResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ReleaseResponse(::google::protobuf::internal::ConstantInitialized); - - inline ReleaseResponse(const ReleaseResponse& from) - : ReleaseResponse(nullptr, from) {} - ReleaseResponse(ReleaseResponse&& from) noexcept - : ReleaseResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR ReleaseResponse( + ::google::protobuf::internal::ConstantInitialized); + inline ReleaseResponse(const ReleaseResponse& from) : ReleaseResponse(nullptr, from) {} + inline ReleaseResponse(ReleaseResponse&& from) noexcept + : ReleaseResponse(nullptr, std::move(from)) {} inline ReleaseResponse& operator=(const ReleaseResponse& from) { CopyFrom(from); return *this; @@ -758,9 +776,9 @@ class ReleaseResponse final : inline ReleaseResponse& operator=(ReleaseResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -792,22 +810,17 @@ class ReleaseResponse final : } static inline const ReleaseResponse* internal_default_instance() { return reinterpret_cast( - &_ReleaseResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(ReleaseResponse& a, ReleaseResponse& b) { - a.Swap(&b); + &_ReleaseResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(ReleaseResponse& a, ReleaseResponse& b) { a.Swap(&b); } inline void Swap(ReleaseResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -821,8 +834,8 @@ class ReleaseResponse final : // implements Message ---------------------------------------------- - ReleaseResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ReleaseResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const ReleaseResponse& from) { @@ -832,27 +845,41 @@ class ReleaseResponse final : void MergeFrom(const ReleaseResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ReleaseResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ReleaseResponse"; } + + protected: explicit ReleaseResponse(::google::protobuf::Arena* arena); ReleaseResponse(::google::protobuf::Arena* arena, const ReleaseResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + ReleaseResponse(::google::protobuf::Arena* arena, ReleaseResponse&& from) noexcept + : ReleaseResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ReleaseResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ReleaseResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -861,32 +888,30 @@ class ReleaseResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ReleaseResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class PublishResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PublishResponse) */ { +class PublishResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PublishResponse) */ { public: inline PublishResponse() : PublishResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR PublishResponse(::google::protobuf::internal::ConstantInitialized); - - inline PublishResponse(const PublishResponse& from) - : PublishResponse(nullptr, from) {} - PublishResponse(PublishResponse&& from) noexcept - : PublishResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR PublishResponse( + ::google::protobuf::internal::ConstantInitialized); + inline PublishResponse(const PublishResponse& from) : PublishResponse(nullptr, from) {} + inline PublishResponse(PublishResponse&& from) noexcept + : PublishResponse(nullptr, std::move(from)) {} inline PublishResponse& operator=(const PublishResponse& from) { CopyFrom(from); return *this; @@ -894,9 +919,9 @@ class PublishResponse final : inline PublishResponse& operator=(PublishResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -928,22 +953,17 @@ class PublishResponse final : } static inline const PublishResponse* internal_default_instance() { return reinterpret_cast( - &_PublishResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 9; - - friend void swap(PublishResponse& a, PublishResponse& b) { - a.Swap(&b); + &_PublishResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 9; + friend void swap(PublishResponse& a, PublishResponse& b) { a.Swap(&b); } inline void Swap(PublishResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -957,8 +977,8 @@ class PublishResponse final : // implements Message ---------------------------------------------- - PublishResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + PublishResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const PublishResponse& from) { @@ -968,27 +988,41 @@ class PublishResponse final : void MergeFrom(const PublishResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.PublishResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.PublishResponse"; } + + protected: explicit PublishResponse(::google::protobuf::Arena* arena); PublishResponse(::google::protobuf::Arena* arena, const PublishResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + PublishResponse(::google::protobuf::Arena* arena, PublishResponse&& from) noexcept + : PublishResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.PublishResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_PublishResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -997,33 +1031,31 @@ class PublishResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const PublishResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HandshakeResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HandshakeResponse) */ { +class HandshakeResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HandshakeResponse) */ { public: inline HandshakeResponse() : HandshakeResponse(nullptr) {} - ~HandshakeResponse() override; - template - explicit PROTOBUF_CONSTEXPR HandshakeResponse(::google::protobuf::internal::ConstantInitialized); - - inline HandshakeResponse(const HandshakeResponse& from) - : HandshakeResponse(nullptr, from) {} - HandshakeResponse(HandshakeResponse&& from) noexcept - : HandshakeResponse() { - *this = ::std::move(from); - } - + ~HandshakeResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HandshakeResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline HandshakeResponse(const HandshakeResponse& from) : HandshakeResponse(nullptr, from) {} + inline HandshakeResponse(HandshakeResponse&& from) noexcept + : HandshakeResponse(nullptr, std::move(from)) {} inline HandshakeResponse& operator=(const HandshakeResponse& from) { CopyFrom(from); return *this; @@ -1031,9 +1063,9 @@ class HandshakeResponse final : inline HandshakeResponse& operator=(HandshakeResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1065,22 +1097,17 @@ class HandshakeResponse final : } static inline const HandshakeResponse* internal_default_instance() { return reinterpret_cast( - &_HandshakeResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(HandshakeResponse& a, HandshakeResponse& b) { - a.Swap(&b); + &_HandshakeResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(HandshakeResponse& a, HandshakeResponse& b) { a.Swap(&b); } inline void Swap(HandshakeResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1094,52 +1121,69 @@ class HandshakeResponse final : // implements Message ---------------------------------------------- - HandshakeResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HandshakeResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HandshakeResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HandshakeResponse& from) { - HandshakeResponse::MergeImpl(*this, from); - } + void MergeFrom(const HandshakeResponse& from) { HandshakeResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HandshakeResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HandshakeResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HandshakeResponse"; } + + protected: explicit HandshakeResponse(::google::protobuf::Arena* arena); HandshakeResponse(::google::protobuf::Arena* arena, const HandshakeResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HandshakeResponse(::google::protobuf::Arena* arena, HandshakeResponse&& from) noexcept + : HandshakeResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMetadataHeaderFieldNumber = 1, kSessionTokenFieldNumber = 2, @@ -1201,12 +1245,15 @@ class HandshakeResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HandshakeResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HandshakeResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1214,13 +1261,13 @@ class HandshakeResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HandshakeResponse& from_msg); ::google::protobuf::internal::ArenaStringPtr metadata_header_; ::google::protobuf::internal::ArenaStringPtr session_token_; ::int64_t token_deadline_time_millis_; @@ -1230,23 +1277,21 @@ class HandshakeResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HandshakeRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HandshakeRequest) */ { +class HandshakeRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HandshakeRequest) */ { public: inline HandshakeRequest() : HandshakeRequest(nullptr) {} - ~HandshakeRequest() override; - template - explicit PROTOBUF_CONSTEXPR HandshakeRequest(::google::protobuf::internal::ConstantInitialized); - - inline HandshakeRequest(const HandshakeRequest& from) - : HandshakeRequest(nullptr, from) {} - HandshakeRequest(HandshakeRequest&& from) noexcept - : HandshakeRequest() { - *this = ::std::move(from); - } - + ~HandshakeRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HandshakeRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HandshakeRequest(const HandshakeRequest& from) : HandshakeRequest(nullptr, from) {} + inline HandshakeRequest(HandshakeRequest&& from) noexcept + : HandshakeRequest(nullptr, std::move(from)) {} inline HandshakeRequest& operator=(const HandshakeRequest& from) { CopyFrom(from); return *this; @@ -1254,9 +1299,9 @@ class HandshakeRequest final : inline HandshakeRequest& operator=(HandshakeRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1288,22 +1333,17 @@ class HandshakeRequest final : } static inline const HandshakeRequest* internal_default_instance() { return reinterpret_cast( - &_HandshakeRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(HandshakeRequest& a, HandshakeRequest& b) { - a.Swap(&b); + &_HandshakeRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(HandshakeRequest& a, HandshakeRequest& b) { a.Swap(&b); } inline void Swap(HandshakeRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1317,52 +1357,69 @@ class HandshakeRequest final : // implements Message ---------------------------------------------- - HandshakeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HandshakeRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HandshakeRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HandshakeRequest& from) { - HandshakeRequest::MergeImpl(*this, from); - } + void MergeFrom(const HandshakeRequest& from) { HandshakeRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HandshakeRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HandshakeRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HandshakeRequest"; } + + protected: explicit HandshakeRequest(::google::protobuf::Arena* arena); HandshakeRequest(::google::protobuf::Arena* arena, const HandshakeRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HandshakeRequest(::google::protobuf::Arena* arena, HandshakeRequest&& from) noexcept + : HandshakeRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPayloadFieldNumber = 2, kAuthProtocolFieldNumber = 1, @@ -1396,12 +1453,15 @@ class HandshakeRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HandshakeRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HandshakeRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1409,13 +1469,13 @@ class HandshakeRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HandshakeRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr payload_; ::int32_t auth_protocol_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1423,22 +1483,20 @@ class HandshakeRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportResponse) */ { +class ExportResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportResponse) */ { public: inline ExportResponse() : ExportResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ExportResponse(::google::protobuf::internal::ConstantInitialized); - - inline ExportResponse(const ExportResponse& from) - : ExportResponse(nullptr, from) {} - ExportResponse(ExportResponse&& from) noexcept - : ExportResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR ExportResponse( + ::google::protobuf::internal::ConstantInitialized); + inline ExportResponse(const ExportResponse& from) : ExportResponse(nullptr, from) {} + inline ExportResponse(ExportResponse&& from) noexcept + : ExportResponse(nullptr, std::move(from)) {} inline ExportResponse& operator=(const ExportResponse& from) { CopyFrom(from); return *this; @@ -1446,9 +1504,9 @@ class ExportResponse final : inline ExportResponse& operator=(ExportResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1480,22 +1538,17 @@ class ExportResponse final : } static inline const ExportResponse* internal_default_instance() { return reinterpret_cast( - &_ExportResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(ExportResponse& a, ExportResponse& b) { - a.Swap(&b); + &_ExportResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(ExportResponse& a, ExportResponse& b) { a.Swap(&b); } inline void Swap(ExportResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1509,8 +1562,8 @@ class ExportResponse final : // implements Message ---------------------------------------------- - ExportResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const ExportResponse& from) { @@ -1520,27 +1573,41 @@ class ExportResponse final : void MergeFrom(const ExportResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportResponse"; } + + protected: explicit ExportResponse(::google::protobuf::Arena* arena); ExportResponse(::google::protobuf::Arena* arena, const ExportResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + ExportResponse(::google::protobuf::Arena* arena, ExportResponse&& from) noexcept + : ExportResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1549,32 +1616,30 @@ class ExportResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportNotificationRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportNotificationRequest) */ { +class ExportNotificationRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportNotificationRequest) */ { public: inline ExportNotificationRequest() : ExportNotificationRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ExportNotificationRequest(::google::protobuf::internal::ConstantInitialized); - - inline ExportNotificationRequest(const ExportNotificationRequest& from) - : ExportNotificationRequest(nullptr, from) {} - ExportNotificationRequest(ExportNotificationRequest&& from) noexcept - : ExportNotificationRequest() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR ExportNotificationRequest( + ::google::protobuf::internal::ConstantInitialized); + inline ExportNotificationRequest(const ExportNotificationRequest& from) : ExportNotificationRequest(nullptr, from) {} + inline ExportNotificationRequest(ExportNotificationRequest&& from) noexcept + : ExportNotificationRequest(nullptr, std::move(from)) {} inline ExportNotificationRequest& operator=(const ExportNotificationRequest& from) { CopyFrom(from); return *this; @@ -1582,9 +1647,9 @@ class ExportNotificationRequest final : inline ExportNotificationRequest& operator=(ExportNotificationRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1616,22 +1681,17 @@ class ExportNotificationRequest final : } static inline const ExportNotificationRequest* internal_default_instance() { return reinterpret_cast( - &_ExportNotificationRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 10; - - friend void swap(ExportNotificationRequest& a, ExportNotificationRequest& b) { - a.Swap(&b); + &_ExportNotificationRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 10; + friend void swap(ExportNotificationRequest& a, ExportNotificationRequest& b) { a.Swap(&b); } inline void Swap(ExportNotificationRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1645,8 +1705,8 @@ class ExportNotificationRequest final : // implements Message ---------------------------------------------- - ExportNotificationRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportNotificationRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const ExportNotificationRequest& from) { @@ -1656,27 +1716,41 @@ class ExportNotificationRequest final : void MergeFrom(const ExportNotificationRequest& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportNotificationRequest"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportNotificationRequest"; } + + protected: explicit ExportNotificationRequest(::google::protobuf::Arena* arena); ExportNotificationRequest(::google::protobuf::Arena* arena, const ExportNotificationRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + ExportNotificationRequest(::google::protobuf::Arena* arena, ExportNotificationRequest&& from) noexcept + : ExportNotificationRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportNotificationRequest) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportNotificationRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1685,32 +1759,30 @@ class ExportNotificationRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportNotificationRequest& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CloseSessionResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CloseSessionResponse) */ { +class CloseSessionResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CloseSessionResponse) */ { public: inline CloseSessionResponse() : CloseSessionResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CloseSessionResponse(::google::protobuf::internal::ConstantInitialized); - - inline CloseSessionResponse(const CloseSessionResponse& from) - : CloseSessionResponse(nullptr, from) {} - CloseSessionResponse(CloseSessionResponse&& from) noexcept - : CloseSessionResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CloseSessionResponse( + ::google::protobuf::internal::ConstantInitialized); + inline CloseSessionResponse(const CloseSessionResponse& from) : CloseSessionResponse(nullptr, from) {} + inline CloseSessionResponse(CloseSessionResponse&& from) noexcept + : CloseSessionResponse(nullptr, std::move(from)) {} inline CloseSessionResponse& operator=(const CloseSessionResponse& from) { CopyFrom(from); return *this; @@ -1718,9 +1790,9 @@ class CloseSessionResponse final : inline CloseSessionResponse& operator=(CloseSessionResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1752,22 +1824,17 @@ class CloseSessionResponse final : } static inline const CloseSessionResponse* internal_default_instance() { return reinterpret_cast( - &_CloseSessionResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(CloseSessionResponse& a, CloseSessionResponse& b) { - a.Swap(&b); + &_CloseSessionResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(CloseSessionResponse& a, CloseSessionResponse& b) { a.Swap(&b); } inline void Swap(CloseSessionResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1781,8 +1848,8 @@ class CloseSessionResponse final : // implements Message ---------------------------------------------- - CloseSessionResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CloseSessionResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CloseSessionResponse& from) { @@ -1792,27 +1859,41 @@ class CloseSessionResponse final : void MergeFrom(const CloseSessionResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CloseSessionResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CloseSessionResponse"; } + + protected: explicit CloseSessionResponse(::google::protobuf::Arena* arena); CloseSessionResponse(::google::protobuf::Arena* arena, const CloseSessionResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CloseSessionResponse(::google::protobuf::Arena* arena, CloseSessionResponse&& from) noexcept + : CloseSessionResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CloseSessionResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CloseSessionResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1821,33 +1902,31 @@ class CloseSessionResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CloseSessionResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TerminationNotificationResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) */ { +class TerminationNotificationResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) */ { public: inline TerminationNotificationResponse() : TerminationNotificationResponse(nullptr) {} - ~TerminationNotificationResponse() override; - template - explicit PROTOBUF_CONSTEXPR TerminationNotificationResponse(::google::protobuf::internal::ConstantInitialized); - - inline TerminationNotificationResponse(const TerminationNotificationResponse& from) - : TerminationNotificationResponse(nullptr, from) {} - TerminationNotificationResponse(TerminationNotificationResponse&& from) noexcept - : TerminationNotificationResponse() { - *this = ::std::move(from); - } - + ~TerminationNotificationResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TerminationNotificationResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline TerminationNotificationResponse(const TerminationNotificationResponse& from) : TerminationNotificationResponse(nullptr, from) {} + inline TerminationNotificationResponse(TerminationNotificationResponse&& from) noexcept + : TerminationNotificationResponse(nullptr, std::move(from)) {} inline TerminationNotificationResponse& operator=(const TerminationNotificationResponse& from) { CopyFrom(from); return *this; @@ -1855,9 +1934,9 @@ class TerminationNotificationResponse final : inline TerminationNotificationResponse& operator=(TerminationNotificationResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1889,22 +1968,17 @@ class TerminationNotificationResponse final : } static inline const TerminationNotificationResponse* internal_default_instance() { return reinterpret_cast( - &_TerminationNotificationResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 14; - - friend void swap(TerminationNotificationResponse& a, TerminationNotificationResponse& b) { - a.Swap(&b); + &_TerminationNotificationResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 14; + friend void swap(TerminationNotificationResponse& a, TerminationNotificationResponse& b) { a.Swap(&b); } inline void Swap(TerminationNotificationResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1918,54 +1992,70 @@ class TerminationNotificationResponse final : // implements Message ---------------------------------------------- - TerminationNotificationResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TerminationNotificationResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TerminationNotificationResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TerminationNotificationResponse& from) { - TerminationNotificationResponse::MergeImpl(*this, from); - } + void MergeFrom(const TerminationNotificationResponse& from) { TerminationNotificationResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TerminationNotificationResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse"; } + + protected: explicit TerminationNotificationResponse(::google::protobuf::Arena* arena); TerminationNotificationResponse(::google::protobuf::Arena* arena, const TerminationNotificationResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TerminationNotificationResponse(::google::protobuf::Arena* arena, TerminationNotificationResponse&& from) noexcept + : TerminationNotificationResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using StackTrace = TerminationNotificationResponse_StackTrace; // accessors ------------------------------------------------------- - enum : int { kStackTracesFieldNumber = 4, kReasonFieldNumber = 2, @@ -1980,16 +2070,15 @@ class TerminationNotificationResponse final : public: void clear_stack_traces() ; ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* mutable_stack_traces(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace >* - mutable_stack_traces(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>* mutable_stack_traces(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>& _internal_stack_traces() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>* _internal_mutable_stack_traces(); public: const ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace& stack_traces(int index) const; ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* add_stack_traces(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace >& - stack_traces() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>& stack_traces() const; // string reason = 2; void clear_reason() ; const std::string& reason() const; @@ -2029,12 +2118,15 @@ class TerminationNotificationResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 1, 80, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TerminationNotificationResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2042,13 +2134,13 @@ class TerminationNotificationResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TerminationNotificationResponse& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace > stack_traces_; ::google::protobuf::internal::ArenaStringPtr reason_; bool abnormal_termination_; @@ -2058,23 +2150,21 @@ class TerminationNotificationResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ReleaseRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ReleaseRequest) */ { +class ReleaseRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ReleaseRequest) */ { public: inline ReleaseRequest() : ReleaseRequest(nullptr) {} - ~ReleaseRequest() override; - template - explicit PROTOBUF_CONSTEXPR ReleaseRequest(::google::protobuf::internal::ConstantInitialized); - - inline ReleaseRequest(const ReleaseRequest& from) - : ReleaseRequest(nullptr, from) {} - ReleaseRequest(ReleaseRequest&& from) noexcept - : ReleaseRequest() { - *this = ::std::move(from); - } - + ~ReleaseRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ReleaseRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ReleaseRequest(const ReleaseRequest& from) : ReleaseRequest(nullptr, from) {} + inline ReleaseRequest(ReleaseRequest&& from) noexcept + : ReleaseRequest(nullptr, std::move(from)) {} inline ReleaseRequest& operator=(const ReleaseRequest& from) { CopyFrom(from); return *this; @@ -2082,9 +2172,9 @@ class ReleaseRequest final : inline ReleaseRequest& operator=(ReleaseRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2116,22 +2206,17 @@ class ReleaseRequest final : } static inline const ReleaseRequest* internal_default_instance() { return reinterpret_cast( - &_ReleaseRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(ReleaseRequest& a, ReleaseRequest& b) { - a.Swap(&b); + &_ReleaseRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(ReleaseRequest& a, ReleaseRequest& b) { a.Swap(&b); } inline void Swap(ReleaseRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2145,52 +2230,69 @@ class ReleaseRequest final : // implements Message ---------------------------------------------- - ReleaseRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ReleaseRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ReleaseRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ReleaseRequest& from) { - ReleaseRequest::MergeImpl(*this, from); - } + void MergeFrom(const ReleaseRequest& from) { ReleaseRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ReleaseRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ReleaseRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ReleaseRequest"; } + + protected: explicit ReleaseRequest(::google::protobuf::Arena* arena); ReleaseRequest(::google::protobuf::Arena* arena, const ReleaseRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ReleaseRequest(::google::protobuf::Arena* arena, ReleaseRequest&& from) noexcept + : ReleaseRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kIdFieldNumber = 1, }; @@ -2212,12 +2314,15 @@ class ReleaseRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ReleaseRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ReleaseRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2225,13 +2330,13 @@ class ReleaseRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ReleaseRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* id_; @@ -2239,23 +2344,21 @@ class ReleaseRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class PublishRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PublishRequest) */ { +class PublishRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PublishRequest) */ { public: inline PublishRequest() : PublishRequest(nullptr) {} - ~PublishRequest() override; - template - explicit PROTOBUF_CONSTEXPR PublishRequest(::google::protobuf::internal::ConstantInitialized); - - inline PublishRequest(const PublishRequest& from) - : PublishRequest(nullptr, from) {} - PublishRequest(PublishRequest&& from) noexcept - : PublishRequest() { - *this = ::std::move(from); - } - + ~PublishRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR PublishRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline PublishRequest(const PublishRequest& from) : PublishRequest(nullptr, from) {} + inline PublishRequest(PublishRequest&& from) noexcept + : PublishRequest(nullptr, std::move(from)) {} inline PublishRequest& operator=(const PublishRequest& from) { CopyFrom(from); return *this; @@ -2263,9 +2366,9 @@ class PublishRequest final : inline PublishRequest& operator=(PublishRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2297,22 +2400,17 @@ class PublishRequest final : } static inline const PublishRequest* internal_default_instance() { return reinterpret_cast( - &_PublishRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 8; - - friend void swap(PublishRequest& a, PublishRequest& b) { - a.Swap(&b); + &_PublishRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 8; + friend void swap(PublishRequest& a, PublishRequest& b) { a.Swap(&b); } inline void Swap(PublishRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2326,52 +2424,69 @@ class PublishRequest final : // implements Message ---------------------------------------------- - PublishRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + PublishRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const PublishRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const PublishRequest& from) { - PublishRequest::MergeImpl(*this, from); - } + void MergeFrom(const PublishRequest& from) { PublishRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(PublishRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.PublishRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.PublishRequest"; } + + protected: explicit PublishRequest(::google::protobuf::Arena* arena); PublishRequest(::google::protobuf::Arena* arena, const PublishRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + PublishRequest(::google::protobuf::Arena* arena, PublishRequest&& from) noexcept + : PublishRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, kResultIdFieldNumber = 2, @@ -2409,12 +2524,15 @@ class PublishRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.PublishRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_PublishRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2422,13 +2540,13 @@ class PublishRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const PublishRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* source_id_; @@ -2437,23 +2555,21 @@ class PublishRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportRequest) */ { +class ExportRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportRequest) */ { public: inline ExportRequest() : ExportRequest(nullptr) {} - ~ExportRequest() override; - template - explicit PROTOBUF_CONSTEXPR ExportRequest(::google::protobuf::internal::ConstantInitialized); - - inline ExportRequest(const ExportRequest& from) - : ExportRequest(nullptr, from) {} - ExportRequest(ExportRequest&& from) noexcept - : ExportRequest() { - *this = ::std::move(from); - } - + ~ExportRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExportRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ExportRequest(const ExportRequest& from) : ExportRequest(nullptr, from) {} + inline ExportRequest(ExportRequest&& from) noexcept + : ExportRequest(nullptr, std::move(from)) {} inline ExportRequest& operator=(const ExportRequest& from) { CopyFrom(from); return *this; @@ -2461,9 +2577,9 @@ class ExportRequest final : inline ExportRequest& operator=(ExportRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2495,22 +2611,17 @@ class ExportRequest final : } static inline const ExportRequest* internal_default_instance() { return reinterpret_cast( - &_ExportRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(ExportRequest& a, ExportRequest& b) { - a.Swap(&b); + &_ExportRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(ExportRequest& a, ExportRequest& b) { a.Swap(&b); } inline void Swap(ExportRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2524,52 +2635,69 @@ class ExportRequest final : // implements Message ---------------------------------------------- - ExportRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExportRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExportRequest& from) { - ExportRequest::MergeImpl(*this, from); - } + void MergeFrom(const ExportRequest& from) { ExportRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExportRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportRequest"; } + + protected: explicit ExportRequest(::google::protobuf::Arena* arena); ExportRequest(::google::protobuf::Arena* arena, const ExportRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExportRequest(::google::protobuf::Arena* arena, ExportRequest&& from) noexcept + : ExportRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, kResultIdFieldNumber = 2, @@ -2607,12 +2735,15 @@ class ExportRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2620,13 +2751,13 @@ class ExportRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* source_id_; @@ -2635,23 +2766,21 @@ class ExportRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportNotification final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportNotification) */ { +class ExportNotification final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportNotification) */ { public: inline ExportNotification() : ExportNotification(nullptr) {} - ~ExportNotification() override; - template - explicit PROTOBUF_CONSTEXPR ExportNotification(::google::protobuf::internal::ConstantInitialized); - - inline ExportNotification(const ExportNotification& from) - : ExportNotification(nullptr, from) {} - ExportNotification(ExportNotification&& from) noexcept - : ExportNotification() { - *this = ::std::move(from); - } - + ~ExportNotification() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExportNotification( + ::google::protobuf::internal::ConstantInitialized); + + inline ExportNotification(const ExportNotification& from) : ExportNotification(nullptr, from) {} + inline ExportNotification(ExportNotification&& from) noexcept + : ExportNotification(nullptr, std::move(from)) {} inline ExportNotification& operator=(const ExportNotification& from) { CopyFrom(from); return *this; @@ -2659,9 +2788,9 @@ class ExportNotification final : inline ExportNotification& operator=(ExportNotification&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2693,22 +2822,17 @@ class ExportNotification final : } static inline const ExportNotification* internal_default_instance() { return reinterpret_cast( - &_ExportNotification_default_instance_); - } - static constexpr int kIndexInFileMessages = - 11; - - friend void swap(ExportNotification& a, ExportNotification& b) { - a.Swap(&b); + &_ExportNotification_default_instance_); } + static constexpr int kIndexInFileMessages = 11; + friend void swap(ExportNotification& a, ExportNotification& b) { a.Swap(&b); } inline void Swap(ExportNotification* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2722,50 +2846,67 @@ class ExportNotification final : // implements Message ---------------------------------------------- - ExportNotification* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportNotification* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExportNotification& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExportNotification& from) { - ExportNotification::MergeImpl(*this, from); - } + void MergeFrom(const ExportNotification& from) { ExportNotification::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExportNotification* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportNotification"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportNotification"; } + + protected: explicit ExportNotification(::google::protobuf::Arena* arena); ExportNotification(::google::protobuf::Arena* arena, const ExportNotification& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExportNotification(::google::protobuf::Arena* arena, ExportNotification&& from) noexcept + : ExportNotification(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using State = ExportNotification_State; static constexpr State UNKNOWN = ExportNotification_State_UNKNOWN; static constexpr State PENDING = ExportNotification_State_PENDING; @@ -2798,7 +2939,6 @@ class ExportNotification final : } // accessors ------------------------------------------------------- - enum : int { kContextFieldNumber = 3, kDependentHandleFieldNumber = 4, @@ -2865,12 +3005,15 @@ class ExportNotification final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportNotification) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 1, 84, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportNotification_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2878,13 +3021,13 @@ class ExportNotification final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportNotification& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr context_; @@ -2915,7 +3058,7 @@ class ExportNotification final : // string type = 4; inline void WrappedAuthenticationRequest::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.ClearToEmpty(); } inline const std::string& WrappedAuthenticationRequest::type() const @@ -2926,8 +3069,7 @@ inline const std::string& WrappedAuthenticationRequest::type() const template inline PROTOBUF_ALWAYS_INLINE void WrappedAuthenticationRequest::set_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type) } @@ -2937,26 +3079,24 @@ inline std::string* WrappedAuthenticationRequest::mutable_type() ABSL_ATTRIBUTE_ return _s; } inline const std::string& WrappedAuthenticationRequest::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.type_.Get(); } inline void WrappedAuthenticationRequest::_internal_set_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(value, GetArena()); } inline std::string* WrappedAuthenticationRequest::_internal_mutable_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.type_.Mutable( GetArena()); } inline std::string* WrappedAuthenticationRequest::release_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type) return _impl_.type_.Release(); } inline void WrappedAuthenticationRequest::set_allocated_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.type_.IsDefault()) { @@ -2968,7 +3108,7 @@ inline void WrappedAuthenticationRequest::set_allocated_type(std::string* value) // bytes payload = 5; inline void WrappedAuthenticationRequest::clear_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.ClearToEmpty(); } inline const std::string& WrappedAuthenticationRequest::payload() const @@ -2979,8 +3119,7 @@ inline const std::string& WrappedAuthenticationRequest::payload() const template inline PROTOBUF_ALWAYS_INLINE void WrappedAuthenticationRequest::set_payload(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.payload) } @@ -2990,26 +3129,24 @@ inline std::string* WrappedAuthenticationRequest::mutable_payload() ABSL_ATTRIBU return _s; } inline const std::string& WrappedAuthenticationRequest::_internal_payload() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.payload_.Get(); } inline void WrappedAuthenticationRequest::_internal_set_payload(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.Set(value, GetArena()); } inline std::string* WrappedAuthenticationRequest::_internal_mutable_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.payload_.Mutable( GetArena()); } inline std::string* WrappedAuthenticationRequest::release_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.payload) return _impl_.payload_.Release(); } inline void WrappedAuthenticationRequest::set_allocated_payload(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.payload_.IsDefault()) { @@ -3025,7 +3162,7 @@ inline void WrappedAuthenticationRequest::set_allocated_payload(std::string* val // sint32 auth_protocol = 1 [deprecated = true]; inline void HandshakeRequest::clear_auth_protocol() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.auth_protocol_ = 0; } inline ::int32_t HandshakeRequest::auth_protocol() const { @@ -3037,18 +3174,17 @@ inline void HandshakeRequest::set_auth_protocol(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeRequest.auth_protocol) } inline ::int32_t HandshakeRequest::_internal_auth_protocol() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.auth_protocol_; } inline void HandshakeRequest::_internal_set_auth_protocol(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.auth_protocol_ = value; } // bytes payload = 2 [deprecated = true]; inline void HandshakeRequest::clear_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.ClearToEmpty(); } inline const std::string& HandshakeRequest::payload() const @@ -3059,8 +3195,7 @@ inline const std::string& HandshakeRequest::payload() const template inline PROTOBUF_ALWAYS_INLINE void HandshakeRequest::set_payload(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeRequest.payload) } @@ -3070,26 +3205,24 @@ inline std::string* HandshakeRequest::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& HandshakeRequest::_internal_payload() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.payload_.Get(); } inline void HandshakeRequest::_internal_set_payload(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.Set(value, GetArena()); } inline std::string* HandshakeRequest::_internal_mutable_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.payload_.Mutable( GetArena()); } inline std::string* HandshakeRequest::release_payload() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HandshakeRequest.payload) return _impl_.payload_.Release(); } inline void HandshakeRequest::set_allocated_payload(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.payload_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.payload_.IsDefault()) { @@ -3105,7 +3238,7 @@ inline void HandshakeRequest::set_allocated_payload(std::string* value) { // bytes metadata_header = 1 [deprecated = true]; inline void HandshakeResponse::clear_metadata_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.metadata_header_.ClearToEmpty(); } inline const std::string& HandshakeResponse::metadata_header() const @@ -3116,8 +3249,7 @@ inline const std::string& HandshakeResponse::metadata_header() const template inline PROTOBUF_ALWAYS_INLINE void HandshakeResponse::set_metadata_header(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.metadata_header_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeResponse.metadata_header) } @@ -3127,26 +3259,24 @@ inline std::string* HandshakeResponse::mutable_metadata_header() ABSL_ATTRIBUTE_ return _s; } inline const std::string& HandshakeResponse::_internal_metadata_header() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.metadata_header_.Get(); } inline void HandshakeResponse::_internal_set_metadata_header(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.metadata_header_.Set(value, GetArena()); } inline std::string* HandshakeResponse::_internal_mutable_metadata_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.metadata_header_.Mutable( GetArena()); } inline std::string* HandshakeResponse::release_metadata_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HandshakeResponse.metadata_header) return _impl_.metadata_header_.Release(); } inline void HandshakeResponse::set_allocated_metadata_header(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.metadata_header_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.metadata_header_.IsDefault()) { @@ -3158,7 +3288,7 @@ inline void HandshakeResponse::set_allocated_metadata_header(std::string* value) // bytes session_token = 2 [deprecated = true]; inline void HandshakeResponse::clear_session_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_token_.ClearToEmpty(); } inline const std::string& HandshakeResponse::session_token() const @@ -3169,8 +3299,7 @@ inline const std::string& HandshakeResponse::session_token() const template inline PROTOBUF_ALWAYS_INLINE void HandshakeResponse::set_session_token(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_token_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeResponse.session_token) } @@ -3180,26 +3309,24 @@ inline std::string* HandshakeResponse::mutable_session_token() ABSL_ATTRIBUTE_LI return _s; } inline const std::string& HandshakeResponse::_internal_session_token() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.session_token_.Get(); } inline void HandshakeResponse::_internal_set_session_token(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_token_.Set(value, GetArena()); } inline std::string* HandshakeResponse::_internal_mutable_session_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.session_token_.Mutable( GetArena()); } inline std::string* HandshakeResponse::release_session_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HandshakeResponse.session_token) return _impl_.session_token_.Release(); } inline void HandshakeResponse::set_allocated_session_token(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.session_token_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.session_token_.IsDefault()) { @@ -3211,7 +3338,7 @@ inline void HandshakeResponse::set_allocated_session_token(std::string* value) { // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; inline void HandshakeResponse::clear_token_deadline_time_millis() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.token_deadline_time_millis_ = ::int64_t{0}; } inline ::int64_t HandshakeResponse::token_deadline_time_millis() const { @@ -3223,18 +3350,17 @@ inline void HandshakeResponse::set_token_deadline_time_millis(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeResponse.token_deadline_time_millis) } inline ::int64_t HandshakeResponse::_internal_token_deadline_time_millis() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.token_deadline_time_millis_; } inline void HandshakeResponse::_internal_set_token_deadline_time_millis(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.token_deadline_time_millis_ = value; } // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; inline void HandshakeResponse::clear_token_expiration_delay_millis() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.token_expiration_delay_millis_ = ::int64_t{0}; } inline ::int64_t HandshakeResponse::token_expiration_delay_millis() const { @@ -3246,12 +3372,11 @@ inline void HandshakeResponse::set_token_expiration_delay_millis(::int64_t value // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeResponse.token_expiration_delay_millis) } inline ::int64_t HandshakeResponse::_internal_token_expiration_delay_millis() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.token_expiration_delay_millis_; } inline void HandshakeResponse::_internal_set_token_expiration_delay_millis(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.token_expiration_delay_millis_ = value; } @@ -3270,7 +3395,7 @@ inline bool ReleaseRequest::has_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ReleaseRequest::_internal_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3279,7 +3404,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ReleaseRequest::id return _internal_id(); } inline void ReleaseRequest::unsafe_arena_set_allocated_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.id_); } @@ -3292,7 +3417,7 @@ inline void ReleaseRequest::unsafe_arena_set_allocated_id(::io::deephaven::proto // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::release_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.id_; @@ -3311,7 +3436,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::unsafe_arena_release_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3320,22 +3445,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::_internal_mutable_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::mutable_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) return _msg; } inline void ReleaseRequest::set_allocated_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.id_); } @@ -3369,7 +3494,7 @@ inline bool ExportRequest::has_source_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3378,7 +3503,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::sou return _internal_source_id(); } inline void ExportRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -3391,7 +3516,7 @@ inline void ExportRequest::unsafe_arena_set_allocated_source_id(::io::deephaven: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; @@ -3410,7 +3535,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::release_s return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3419,22 +3544,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_ar return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) return _msg; } inline void ExportRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -3460,7 +3585,7 @@ inline bool ExportRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3469,7 +3594,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::res return _internal_result_id(); } inline void ExportRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -3482,7 +3607,7 @@ inline void ExportRequest::unsafe_arena_set_allocated_result_id(::io::deephaven: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -3501,7 +3626,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::release_r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3510,22 +3635,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_ar return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) return _msg; } inline void ExportRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -3559,7 +3684,7 @@ inline bool PublishRequest::has_source_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3568,7 +3693,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::so return _internal_source_id(); } inline void PublishRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -3581,7 +3706,7 @@ inline void PublishRequest::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; @@ -3600,7 +3725,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3609,22 +3734,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) return _msg; } inline void PublishRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -3650,7 +3775,7 @@ inline bool PublishRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3659,7 +3784,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::re return _internal_result_id(); } inline void PublishRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -3672,7 +3797,7 @@ inline void PublishRequest::unsafe_arena_set_allocated_result_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -3691,7 +3816,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -3700,22 +3825,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) return _msg; } inline void PublishRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -3753,7 +3878,7 @@ inline bool ExportNotification::has_ticket() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportNotification::_internal_ticket() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.ticket_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -3762,7 +3887,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportNotification return _internal_ticket(); } inline void ExportNotification::unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); } @@ -3775,7 +3900,7 @@ inline void ExportNotification::unsafe_arena_set_allocated_ticket(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::release_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.ticket_; @@ -3794,7 +3919,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::unsafe_arena_release_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) _impl_._has_bits_[0] &= ~0x00000001u; @@ -3803,22 +3928,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::_internal_mutable_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.ticket_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.ticket_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::mutable_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_ticket(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) return _msg; } inline void ExportNotification::set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); } @@ -3839,7 +3964,7 @@ inline void ExportNotification::set_allocated_ticket(::io::deephaven::proto::bac // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; inline void ExportNotification::clear_export_state() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.export_state_ = 0; } inline ::io::deephaven::proto::backplane::grpc::ExportNotification_State ExportNotification::export_state() const { @@ -3851,18 +3976,17 @@ inline void ExportNotification::set_export_state(::io::deephaven::proto::backpla // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportNotification.export_state) } inline ::io::deephaven::proto::backplane::grpc::ExportNotification_State ExportNotification::_internal_export_state() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::ExportNotification_State>(_impl_.export_state_); } inline void ExportNotification::_internal_set_export_state(::io::deephaven::proto::backplane::grpc::ExportNotification_State value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.export_state_ = value; } // string context = 3; inline void ExportNotification::clear_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.context_.ClearToEmpty(); } inline const std::string& ExportNotification::context() const @@ -3873,8 +3997,7 @@ inline const std::string& ExportNotification::context() const template inline PROTOBUF_ALWAYS_INLINE void ExportNotification::set_context(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.context_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportNotification.context) } @@ -3884,26 +4007,24 @@ inline std::string* ExportNotification::mutable_context() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& ExportNotification::_internal_context() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.context_.Get(); } inline void ExportNotification::_internal_set_context(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.context_.Set(value, GetArena()); } inline std::string* ExportNotification::_internal_mutable_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.context_.Mutable( GetArena()); } inline std::string* ExportNotification::release_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportNotification.context) return _impl_.context_.Release(); } inline void ExportNotification::set_allocated_context(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.context_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.context_.IsDefault()) { @@ -3915,7 +4036,7 @@ inline void ExportNotification::set_allocated_context(std::string* value) { // string dependent_handle = 4; inline void ExportNotification::clear_dependent_handle() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.dependent_handle_.ClearToEmpty(); } inline const std::string& ExportNotification::dependent_handle() const @@ -3926,8 +4047,7 @@ inline const std::string& ExportNotification::dependent_handle() const template inline PROTOBUF_ALWAYS_INLINE void ExportNotification::set_dependent_handle(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.dependent_handle_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle) } @@ -3937,26 +4057,24 @@ inline std::string* ExportNotification::mutable_dependent_handle() ABSL_ATTRIBUT return _s; } inline const std::string& ExportNotification::_internal_dependent_handle() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.dependent_handle_.Get(); } inline void ExportNotification::_internal_set_dependent_handle(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.dependent_handle_.Set(value, GetArena()); } inline std::string* ExportNotification::_internal_mutable_dependent_handle() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.dependent_handle_.Mutable( GetArena()); } inline std::string* ExportNotification::release_dependent_handle() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle) return _impl_.dependent_handle_.Release(); } inline void ExportNotification::set_allocated_dependent_handle(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.dependent_handle_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.dependent_handle_.IsDefault()) { @@ -3976,7 +4094,7 @@ inline void ExportNotification::set_allocated_dependent_handle(std::string* valu // string type = 1; inline void TerminationNotificationResponse_StackTrace::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.ClearToEmpty(); } inline const std::string& TerminationNotificationResponse_StackTrace::type() const @@ -3987,8 +4105,7 @@ inline const std::string& TerminationNotificationResponse_StackTrace::type() con template inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse_StackTrace::set_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type) } @@ -3998,26 +4115,24 @@ inline std::string* TerminationNotificationResponse_StackTrace::mutable_type() A return _s; } inline const std::string& TerminationNotificationResponse_StackTrace::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.type_.Get(); } inline void TerminationNotificationResponse_StackTrace::_internal_set_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(value, GetArena()); } inline std::string* TerminationNotificationResponse_StackTrace::_internal_mutable_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.type_.Mutable( GetArena()); } inline std::string* TerminationNotificationResponse_StackTrace::release_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type) return _impl_.type_.Release(); } inline void TerminationNotificationResponse_StackTrace::set_allocated_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.type_.IsDefault()) { @@ -4029,7 +4144,7 @@ inline void TerminationNotificationResponse_StackTrace::set_allocated_type(std:: // string message = 2; inline void TerminationNotificationResponse_StackTrace::clear_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.ClearToEmpty(); } inline const std::string& TerminationNotificationResponse_StackTrace::message() const @@ -4040,8 +4155,7 @@ inline const std::string& TerminationNotificationResponse_StackTrace::message() template inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse_StackTrace::set_message(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message) } @@ -4051,26 +4165,24 @@ inline std::string* TerminationNotificationResponse_StackTrace::mutable_message( return _s; } inline const std::string& TerminationNotificationResponse_StackTrace::_internal_message() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.message_.Get(); } inline void TerminationNotificationResponse_StackTrace::_internal_set_message(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.Set(value, GetArena()); } inline std::string* TerminationNotificationResponse_StackTrace::_internal_mutable_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.message_.Mutable( GetArena()); } inline std::string* TerminationNotificationResponse_StackTrace::release_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message) return _impl_.message_.Release(); } inline void TerminationNotificationResponse_StackTrace::set_allocated_message(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.message_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.message_.IsDefault()) { @@ -4088,12 +4200,11 @@ inline int TerminationNotificationResponse_StackTrace::elements_size() const { return _internal_elements_size(); } inline void TerminationNotificationResponse_StackTrace::clear_elements() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.elements_.Clear(); } -inline std::string* TerminationNotificationResponse_StackTrace::add_elements() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* TerminationNotificationResponse_StackTrace::add_elements() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_elements()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) return _s; @@ -4108,57 +4219,21 @@ inline std::string* TerminationNotificationResponse_StackTrace::mutable_elements // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) return _internal_mutable_elements()->Mutable(index); } -inline void TerminationNotificationResponse_StackTrace::set_elements(int index, const std::string& value) { - _internal_mutable_elements()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::set_elements(int index, std::string&& value) { - _internal_mutable_elements()->Mutable(index)->assign(std::move(value)); +template +inline void TerminationNotificationResponse_StackTrace::set_elements(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_elements()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) } -inline void TerminationNotificationResponse_StackTrace::set_elements(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_elements()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::set_elements(int index, const char* value, - std::size_t size) { - _internal_mutable_elements()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::set_elements(int index, absl::string_view value) { - _internal_mutable_elements()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::add_elements(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_elements()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::add_elements(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_elements()->Add(std::move(value)); +template +inline void TerminationNotificationResponse_StackTrace::add_elements(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_elements(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) } -inline void TerminationNotificationResponse_StackTrace::add_elements(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_elements()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::add_elements(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_elements()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} -inline void TerminationNotificationResponse_StackTrace::add_elements(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_elements()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) -} inline const ::google::protobuf::RepeatedPtrField& TerminationNotificationResponse_StackTrace::elements() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) @@ -4167,17 +4242,17 @@ TerminationNotificationResponse_StackTrace::elements() const ABSL_ATTRIBUTE_LIFE inline ::google::protobuf::RepeatedPtrField* TerminationNotificationResponse_StackTrace::mutable_elements() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_elements(); } inline const ::google::protobuf::RepeatedPtrField& TerminationNotificationResponse_StackTrace::_internal_elements() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.elements_; } inline ::google::protobuf::RepeatedPtrField* TerminationNotificationResponse_StackTrace::_internal_mutable_elements() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.elements_; } @@ -4187,7 +4262,7 @@ TerminationNotificationResponse_StackTrace::_internal_mutable_elements() { // bool abnormal_termination = 1; inline void TerminationNotificationResponse::clear_abnormal_termination() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.abnormal_termination_ = false; } inline bool TerminationNotificationResponse::abnormal_termination() const { @@ -4199,18 +4274,17 @@ inline void TerminationNotificationResponse::set_abnormal_termination(bool value // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.abnormal_termination) } inline bool TerminationNotificationResponse::_internal_abnormal_termination() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.abnormal_termination_; } inline void TerminationNotificationResponse::_internal_set_abnormal_termination(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.abnormal_termination_ = value; } // string reason = 2; inline void TerminationNotificationResponse::clear_reason() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reason_.ClearToEmpty(); } inline const std::string& TerminationNotificationResponse::reason() const @@ -4221,8 +4295,7 @@ inline const std::string& TerminationNotificationResponse::reason() const template inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse::set_reason(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reason_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason) } @@ -4232,26 +4305,24 @@ inline std::string* TerminationNotificationResponse::mutable_reason() ABSL_ATTRI return _s; } inline const std::string& TerminationNotificationResponse::_internal_reason() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.reason_.Get(); } inline void TerminationNotificationResponse::_internal_set_reason(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reason_.Set(value, GetArena()); } inline std::string* TerminationNotificationResponse::_internal_mutable_reason() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.reason_.Mutable( GetArena()); } inline std::string* TerminationNotificationResponse::release_reason() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason) return _impl_.reason_.Release(); } inline void TerminationNotificationResponse::set_allocated_reason(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reason_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.reason_.IsDefault()) { @@ -4263,7 +4334,7 @@ inline void TerminationNotificationResponse::set_allocated_reason(std::string* v // bool is_from_uncaught_exception = 3; inline void TerminationNotificationResponse::clear_is_from_uncaught_exception() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_from_uncaught_exception_ = false; } inline bool TerminationNotificationResponse::is_from_uncaught_exception() const { @@ -4275,12 +4346,11 @@ inline void TerminationNotificationResponse::set_is_from_uncaught_exception(bool // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.is_from_uncaught_exception) } inline bool TerminationNotificationResponse::_internal_is_from_uncaught_exception() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_from_uncaught_exception_; } inline void TerminationNotificationResponse::_internal_set_is_from_uncaught_exception(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_from_uncaught_exception_ = value; } @@ -4292,7 +4362,7 @@ inline int TerminationNotificationResponse::stack_traces_size() const { return _internal_stack_traces_size(); } inline void TerminationNotificationResponse::clear_stack_traces() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.stack_traces_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* TerminationNotificationResponse::mutable_stack_traces(int index) @@ -4303,7 +4373,7 @@ inline ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_ inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>* TerminationNotificationResponse::mutable_stack_traces() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.stack_traces) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_stack_traces(); } inline const ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace& TerminationNotificationResponse::stack_traces(int index) const @@ -4312,7 +4382,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRes return _internal_stack_traces().Get(index); } inline ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* TerminationNotificationResponse::add_stack_traces() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* _add = _internal_mutable_stack_traces()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.stack_traces) return _add; @@ -4324,12 +4394,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>& TerminationNotificationResponse::_internal_stack_traces() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.stack_traces_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>* TerminationNotificationResponse::_internal_mutable_stack_traces() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.stack_traces_; } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc index 331da2f4a33..58664830815 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/storage.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/storage.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -35,7 +38,13 @@ inline constexpr SaveFileResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR SaveFileResponse::SaveFileResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SaveFileResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR SaveFileResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SaveFileResponseDefaultTypeInternal() {} @@ -60,7 +69,13 @@ inline constexpr SaveFileRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SaveFileRequest::SaveFileRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SaveFileRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SaveFileRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SaveFileRequestDefaultTypeInternal() {} @@ -71,8 +86,14 @@ struct SaveFileRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SaveFileRequestDefaultTypeInternal _SaveFileRequest_default_instance_; - template -PROTOBUF_CONSTEXPR MoveItemResponse::MoveItemResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR MoveItemResponse::MoveItemResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct MoveItemResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR MoveItemResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MoveItemResponseDefaultTypeInternal() {} @@ -97,7 +118,13 @@ inline constexpr MoveItemRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR MoveItemRequest::MoveItemRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MoveItemRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR MoveItemRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MoveItemRequestDefaultTypeInternal() {} @@ -121,7 +148,13 @@ inline constexpr ListItemsRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ListItemsRequest::ListItemsRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ListItemsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ListItemsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ListItemsRequestDefaultTypeInternal() {} @@ -147,7 +180,13 @@ inline constexpr ItemInfo::Impl_::Impl_( template PROTOBUF_CONSTEXPR ItemInfo::ItemInfo(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ItemInfoDefaultTypeInternal { PROTOBUF_CONSTEXPR ItemInfoDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ItemInfoDefaultTypeInternal() {} @@ -171,7 +210,13 @@ inline constexpr FetchFileResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR FetchFileResponse::FetchFileResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FetchFileResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR FetchFileResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FetchFileResponseDefaultTypeInternal() {} @@ -195,7 +240,13 @@ inline constexpr FetchFileRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR FetchFileRequest::FetchFileRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FetchFileRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR FetchFileRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FetchFileRequestDefaultTypeInternal() {} @@ -206,8 +257,14 @@ struct FetchFileRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchFileRequestDefaultTypeInternal _FetchFileRequest_default_instance_; - template -PROTOBUF_CONSTEXPR DeleteItemResponse::DeleteItemResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR DeleteItemResponse::DeleteItemResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct DeleteItemResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR DeleteItemResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DeleteItemResponseDefaultTypeInternal() {} @@ -228,7 +285,13 @@ inline constexpr DeleteItemRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR DeleteItemRequest::DeleteItemRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct DeleteItemRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR DeleteItemRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DeleteItemRequestDefaultTypeInternal() {} @@ -239,8 +302,14 @@ struct DeleteItemRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteItemRequestDefaultTypeInternal _DeleteItemRequest_default_instance_; - template -PROTOBUF_CONSTEXPR CreateDirectoryResponse::CreateDirectoryResponse(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CreateDirectoryResponse::CreateDirectoryResponse(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CreateDirectoryResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateDirectoryResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateDirectoryResponseDefaultTypeInternal() {} @@ -261,7 +330,13 @@ inline constexpr CreateDirectoryRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CreateDirectoryRequest::CreateDirectoryRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CreateDirectoryRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateDirectoryRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateDirectoryRequestDefaultTypeInternal() {} @@ -283,7 +358,13 @@ inline constexpr ListItemsResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR ListItemsResponse::ListItemsResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ListItemsResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ListItemsResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ListItemsResponseDefaultTypeInternal() {} @@ -299,152 +380,152 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fstorage_2eproto[13]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_deephaven_2fproto_2fstorage_2eproto[1]; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fstorage_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fstorage_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_.path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_.filter_glob_), - ~0u, - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.size_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.etag_), - ~0u, - ~0u, - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _impl_.items_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _impl_.canonical_path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_.path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_.etag_), - ~0u, - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_.contents_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_.etag_), - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.allow_overwrite_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.contents_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _impl_.etag_), - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.old_path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.new_path_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.allow_overwrite_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, _impl_.path_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemRequest, _impl_.path_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) +const ::uint32_t + TableStruct_deephaven_2fproto_2fstorage_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_.path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsRequest, _impl_.filter_glob_), + ~0u, + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.size_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ItemInfo, _impl_.etag_), + ~0u, + ~0u, + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _impl_.items_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ListItemsResponse, _impl_.canonical_path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_.path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileRequest, _impl_.etag_), + ~0u, + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_.contents_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchFileResponse, _impl_.etag_), + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.allow_overwrite_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileRequest, _impl_.contents_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SaveFileResponse, _impl_.etag_), + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.old_path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.new_path_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemRequest, _impl_.allow_overwrite_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MoveItemResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, _impl_.path_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemRequest, _impl_.path_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DeleteItemResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, 10, -1, sizeof(::io::deephaven::proto::backplane::grpc::ListItemsRequest)}, {12, 24, -1, sizeof(::io::deephaven::proto::backplane::grpc::ItemInfo)}, {28, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ListItemsResponse)}, @@ -459,7 +540,6 @@ static const ::_pbi::MigrationSchema {119, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::DeleteItemRequest)}, {128, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::DeleteItemResponse)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_ListItemsRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_ItemInfo_default_instance_._instance, @@ -475,7 +555,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_DeleteItemRequest_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_DeleteItemResponse_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fstorage_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fstorage_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\035deephaven/proto/storage.proto\022!io.deep" "haven.proto.backplane.grpc\"J\n\020ListItemsR" "equest\022\014\n\004path\030\001 \001(\t\022\030\n\013filter_glob\030\004 \001(" @@ -522,7 +603,7 @@ const char descriptor_table_protodef_deephaven_2fproto_2fstorage_2eproto[] PROTO "internal/proto/storageb\006proto3" }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fstorage_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fstorage_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fstorage_2eproto = { false, false, 1750, @@ -535,28 +616,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fstorage_2epro schemas, file_default_instances, TableStruct_deephaven_2fproto_2fstorage_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fstorage_2eproto, file_level_service_descriptors_deephaven_2fproto_2fstorage_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fstorage_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fstorage_2eproto(&descriptor_table_deephaven_2fproto_2fstorage_2eproto); namespace io { namespace deephaven { namespace proto { @@ -575,22 +637,24 @@ bool ItemType_IsValid(int value) { class ListItemsRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_._has_bits_); - static void set_has_filter_glob(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_._has_bits_); }; ListItemsRequest::ListItemsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ListItemsRequest) } inline PROTOBUF_NDEBUG_INLINE ListItemsRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, path_(arena, from.path_), @@ -599,12 +663,16 @@ inline PROTOBUF_NDEBUG_INLINE ListItemsRequest::Impl_::Impl_( ListItemsRequest::ListItemsRequest( ::google::protobuf::Arena* arena, const ListItemsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ListItemsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ListItemsRequest) } @@ -630,29 +698,34 @@ inline void ListItemsRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ListItemsRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.filter_glob_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ListItemsRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ListItemsRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ListItemsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ListItemsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ListItemsRequest::ByteSizeLong, + &ListItemsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_._cached_size_), + false, + }, + &ListItemsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ListItemsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 74, 2> ListItemsRequest::_table_ = { { @@ -665,8 +738,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 74, 2> ListItemsRequest::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_ListItemsRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ListItemsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string filter_glob = 4; {::_pbi::TcParser::FastUS1, @@ -693,72 +770,99 @@ const ::_pbi::TcParseTable<1, 2, 0, 74, 2> ListItemsRequest::_table_ = { }}, }; -::uint8_t* ListItemsRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string path = 1; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsRequest.path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string filter_glob = 4; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_filter_glob(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ListItemsRequest) - return target; -} - -::size_t ListItemsRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ListItemsRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 1; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - // optional string filter_glob = 4; + _impl_.path_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_filter_glob()); + _impl_.filter_glob_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ListItemsRequest::_class_data_ = { - ListItemsRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ListItemsRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ListItemsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ListItemsRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ListItemsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ListItemsRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ListItemsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string path = 1; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsRequest.path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string filter_glob = 4; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_filter_glob(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ListItemsRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ListItemsRequest::ByteSizeLong(const MessageLite& base) { + const ListItemsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ListItemsRequest::ByteSizeLong() const { + const ListItemsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string path = 1; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + } + { + // optional string filter_glob = 4; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_filter_glob()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ListItemsRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) @@ -769,9 +873,11 @@ void ListItemsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go if (!from._internal_path().empty()) { _this->_internal_set_path(from._internal_path()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_filter_glob(from._internal_filter_glob()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -782,13 +888,7 @@ void ListItemsRequest::CopyFrom(const ListItemsRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ListItemsRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ListItemsRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ListItemsRequest::InternalSwap(ListItemsRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -800,30 +900,30 @@ void ListItemsRequest::InternalSwap(ListItemsRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ListItemsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ItemInfo::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_._has_bits_); - static void set_has_etag(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_._has_bits_); }; ItemInfo::ItemInfo(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ItemInfo) } inline PROTOBUF_NDEBUG_INLINE ItemInfo::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ItemInfo& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, path_(arena, from.path_), @@ -832,12 +932,16 @@ inline PROTOBUF_NDEBUG_INLINE ItemInfo::Impl_::Impl_( ItemInfo::ItemInfo( ::google::protobuf::Arena* arena, const ItemInfo& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ItemInfo* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, size_), reinterpret_cast(&from._impl_) + @@ -876,32 +980,34 @@ inline void ItemInfo::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ItemInfo::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ItemInfo) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.etag_.ClearNonDefaultToEmpty(); - } - ::memset(&_impl_.size_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.type_) - - reinterpret_cast(&_impl_.size_)) + sizeof(_impl_.type_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ItemInfo::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ItemInfo::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ItemInfo_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ItemInfo::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ItemInfo::ByteSizeLong, + &ItemInfo::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_._cached_size_), + false, + }, + &ItemInfo::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ItemInfo::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 0, 59, 2> ItemInfo::_table_ = { { @@ -914,8 +1020,12 @@ const ::_pbi::TcParseTable<2, 4, 0, 59, 2> ItemInfo::_table_ = { 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_ItemInfo_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ItemInfo>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string etag = 4; {::_pbi::TcParser::FastUS1, @@ -954,98 +1064,128 @@ const ::_pbi::TcParseTable<2, 4, 0, 59, 2> ItemInfo::_table_ = { }}, }; -::uint8_t* ItemInfo::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ItemInfo) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string path = 1; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ItemInfo.path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.ItemType type = 2; - if (this->_internal_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_type(), target); - } - - // sint64 size = 3 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 3, this->_internal_size(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string etag = 4; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_etag(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ItemInfo.etag"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ItemInfo) - return target; -} - -::size_t ItemInfo::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ItemInfo) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ItemInfo::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ItemInfo) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 1; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - // optional string etag = 4; + _impl_.path_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_etag()); - } - - // sint64 size = 3 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_size()); - } - - // .io.deephaven.proto.backplane.grpc.ItemType type = 2; - if (this->_internal_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); + _impl_.etag_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ItemInfo::_class_data_ = { - ItemInfo::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ItemInfo::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.size_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.type_) - + reinterpret_cast(&_impl_.size_)) + sizeof(_impl_.type_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ItemInfo::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ItemInfo::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ItemInfo& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ItemInfo::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ItemInfo& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ItemInfo) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string path = 1; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ItemInfo.path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.ItemType type = 2; + if (this_._internal_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_type(), target); + } + + // sint64 size = 3 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 3, this_._internal_size(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string etag = 4; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_etag(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ItemInfo.etag"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ItemInfo) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ItemInfo::ByteSizeLong(const MessageLite& base) { + const ItemInfo& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ItemInfo::ByteSizeLong() const { + const ItemInfo& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ItemInfo) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string path = 1; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + } + { + // optional string etag = 4; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_etag()); + } + } + { + // sint64 size = 3 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_size()); + } + // .io.deephaven.proto.backplane.grpc.ItemType type = 2; + if (this_._internal_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_type()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ItemInfo::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ItemInfo) @@ -1056,15 +1196,17 @@ void ItemInfo::MergeImpl(::google::protobuf::Message& to_msg, const ::google::pr if (!from._internal_path().empty()) { _this->_internal_set_path(from._internal_path()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_etag(from._internal_etag()); } if (from._internal_size() != 0) { - _this->_internal_set_size(from._internal_size()); + _this->_impl_.size_ = from._impl_.size_; } if (from._internal_type() != 0) { - _this->_internal_set_type(from._internal_type()); + _this->_impl_.type_ = from._impl_.type_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1075,13 +1217,7 @@ void ItemInfo::CopyFrom(const ItemInfo& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ItemInfo::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ItemInfo::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ItemInfo::InternalSwap(ItemInfo* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1099,9 +1235,7 @@ void ItemInfo::InternalSwap(ItemInfo* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata ItemInfo::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1110,13 +1244,17 @@ class ListItemsResponse::_Internal { }; ListItemsResponse::ListItemsResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ListItemsResponse) } inline PROTOBUF_NDEBUG_INLINE ListItemsResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ListItemsResponse& from_msg) : items_{visibility, arena, from.items_}, canonical_path_(arena, from.canonical_path_), _cached_size_{0} {} @@ -1124,12 +1262,16 @@ inline PROTOBUF_NDEBUG_INLINE ListItemsResponse::Impl_::Impl_( ListItemsResponse::ListItemsResponse( ::google::protobuf::Arena* arena, const ListItemsResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ListItemsResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ListItemsResponse) } @@ -1154,25 +1296,34 @@ inline void ListItemsResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ListItemsResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.items_.Clear(); - _impl_.canonical_path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ListItemsResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ListItemsResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ListItemsResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ListItemsResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ListItemsResponse::ByteSizeLong, + &ListItemsResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ListItemsResponse, _impl_._cached_size_), + false, + }, + &ListItemsResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ListItemsResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 74, 2> ListItemsResponse::_table_ = { { @@ -1185,8 +1336,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 74, 2> ListItemsResponse::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ListItemsResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ListItemsResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string canonical_path = 2; {::_pbi::TcParser::FastUS1, @@ -1212,70 +1367,97 @@ const ::_pbi::TcParseTable<1, 2, 1, 74, 2> ListItemsResponse::_table_ = { }}, }; -::uint8_t* ListItemsResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_items_size()); i < n; i++) { - const auto& repfield = this->_internal_items().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - // string canonical_path = 2; - if (!this->_internal_canonical_path().empty()) { - const std::string& _s = this->_internal_canonical_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ListItemsResponse) - return target; -} - -::size_t ListItemsResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ListItemsResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; - total_size += 1UL * this->_internal_items_size(); - for (const auto& msg : this->_internal_items()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string canonical_path = 2; - if (!this->_internal_canonical_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_canonical_path()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ListItemsResponse::_class_data_ = { - ListItemsResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ListItemsResponse::GetClassData() const { - return &_class_data_; + _impl_.items_.Clear(); + _impl_.canonical_path_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ListItemsResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ListItemsResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ListItemsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ListItemsResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ListItemsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_items_size()); + i < n; i++) { + const auto& repfield = this_._internal_items().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + // string canonical_path = 2; + if (!this_._internal_canonical_path().empty()) { + const std::string& _s = this_._internal_canonical_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ListItemsResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ListItemsResponse::ByteSizeLong(const MessageLite& base) { + const ListItemsResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ListItemsResponse::ByteSizeLong() const { + const ListItemsResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; + { + total_size += 1UL * this_._internal_items_size(); + for (const auto& msg : this_._internal_items()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string canonical_path = 2; + if (!this_._internal_canonical_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_canonical_path()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ListItemsResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) @@ -1298,13 +1480,7 @@ void ListItemsResponse::CopyFrom(const ListItemsResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ListItemsResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ListItemsResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ListItemsResponse::InternalSwap(ListItemsResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1315,30 +1491,30 @@ void ListItemsResponse::InternalSwap(ListItemsResponse* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata ListItemsResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FetchFileRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_._has_bits_); - static void set_has_etag(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_._has_bits_); }; FetchFileRequest::FetchFileRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FetchFileRequest) } inline PROTOBUF_NDEBUG_INLINE FetchFileRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, path_(arena, from.path_), @@ -1347,12 +1523,16 @@ inline PROTOBUF_NDEBUG_INLINE FetchFileRequest::Impl_::Impl_( FetchFileRequest::FetchFileRequest( ::google::protobuf::Arena* arena, const FetchFileRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FetchFileRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchFileRequest) } @@ -1378,29 +1558,34 @@ inline void FetchFileRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FetchFileRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.etag_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FetchFileRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FetchFileRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FetchFileRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FetchFileRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FetchFileRequest::ByteSizeLong, + &FetchFileRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_._cached_size_), + false, + }, + &FetchFileRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FetchFileRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 67, 2> FetchFileRequest::_table_ = { { @@ -1413,8 +1598,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 67, 2> FetchFileRequest::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FetchFileRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchFileRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string etag = 2; {::_pbi::TcParser::FastUS1, @@ -1441,72 +1630,99 @@ const ::_pbi::TcParseTable<1, 2, 0, 67, 2> FetchFileRequest::_table_ = { }}, }; -::uint8_t* FetchFileRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string path = 1; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileRequest.path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string etag = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_etag(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileRequest.etag"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchFileRequest) - return target; -} - -::size_t FetchFileRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FetchFileRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 1; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - // optional string etag = 2; + _impl_.path_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_etag()); + _impl_.etag_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FetchFileRequest::_class_data_ = { - FetchFileRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FetchFileRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FetchFileRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FetchFileRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FetchFileRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FetchFileRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FetchFileRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string path = 1; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileRequest.path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string etag = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_etag(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileRequest.etag"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchFileRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FetchFileRequest::ByteSizeLong(const MessageLite& base) { + const FetchFileRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FetchFileRequest::ByteSizeLong() const { + const FetchFileRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string path = 1; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + } + { + // optional string etag = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_etag()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FetchFileRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) @@ -1517,9 +1733,11 @@ void FetchFileRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go if (!from._internal_path().empty()) { _this->_internal_set_path(from._internal_path()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_etag(from._internal_etag()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1530,13 +1748,7 @@ void FetchFileRequest::CopyFrom(const FetchFileRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FetchFileRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FetchFileRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FetchFileRequest::InternalSwap(FetchFileRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1548,30 +1760,30 @@ void FetchFileRequest::InternalSwap(FetchFileRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata FetchFileRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FetchFileResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_._has_bits_); - static void set_has_etag(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_._has_bits_); }; FetchFileResponse::FetchFileResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FetchFileResponse) } inline PROTOBUF_NDEBUG_INLINE FetchFileResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FetchFileResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, contents_(arena, from.contents_), @@ -1580,12 +1792,16 @@ inline PROTOBUF_NDEBUG_INLINE FetchFileResponse::Impl_::Impl_( FetchFileResponse::FetchFileResponse( ::google::protobuf::Arena* arena, const FetchFileResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FetchFileResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchFileResponse) } @@ -1611,29 +1827,34 @@ inline void FetchFileResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FetchFileResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.contents_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.etag_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FetchFileResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FetchFileResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FetchFileResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FetchFileResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FetchFileResponse::ByteSizeLong, + &FetchFileResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_._cached_size_), + false, + }, + &FetchFileResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FetchFileResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 64, 2> FetchFileResponse::_table_ = { { @@ -1646,8 +1867,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 64, 2> FetchFileResponse::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_FetchFileResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchFileResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string etag = 2; {::_pbi::TcParser::FastUS1, @@ -1673,70 +1898,97 @@ const ::_pbi::TcParseTable<1, 2, 0, 64, 2> FetchFileResponse::_table_ = { }}, }; -::uint8_t* FetchFileResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes contents = 1; - if (!this->_internal_contents().empty()) { - const std::string& _s = this->_internal_contents(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional string etag = 2; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_etag(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileResponse.etag"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchFileResponse) - return target; -} - -::size_t FetchFileResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FetchFileResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bytes contents = 1; - if (!this->_internal_contents().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_contents()); - } - - // optional string etag = 2; + _impl_.contents_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_etag()); + _impl_.etag_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FetchFileResponse::_class_data_ = { - FetchFileResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FetchFileResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FetchFileResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FetchFileResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FetchFileResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FetchFileResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FetchFileResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes contents = 1; + if (!this_._internal_contents().empty()) { + const std::string& _s = this_._internal_contents(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string etag = 2; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_etag(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.FetchFileResponse.etag"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchFileResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FetchFileResponse::ByteSizeLong(const MessageLite& base) { + const FetchFileResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FetchFileResponse::ByteSizeLong() const { + const FetchFileResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // bytes contents = 1; + if (!this_._internal_contents().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_contents()); + } + } + { + // optional string etag = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_etag()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FetchFileResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) @@ -1747,9 +1999,11 @@ void FetchFileResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::g if (!from._internal_contents().empty()) { _this->_internal_set_contents(from._internal_contents()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_etag(from._internal_etag()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -1760,13 +2014,7 @@ void FetchFileResponse::CopyFrom(const FetchFileResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FetchFileResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FetchFileResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FetchFileResponse::InternalSwap(FetchFileResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -1778,9 +2026,7 @@ void FetchFileResponse::InternalSwap(FetchFileResponse* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata FetchFileResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[4]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -1789,13 +2035,17 @@ class SaveFileRequest::_Internal { }; SaveFileRequest::SaveFileRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SaveFileRequest) } inline PROTOBUF_NDEBUG_INLINE SaveFileRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& from_msg) : path_(arena, from.path_), contents_(arena, from.contents_), _cached_size_{0} {} @@ -1803,12 +2053,16 @@ inline PROTOBUF_NDEBUG_INLINE SaveFileRequest::Impl_::Impl_( SaveFileRequest::SaveFileRequest( ::google::protobuf::Arena* arena, const SaveFileRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SaveFileRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.allow_overwrite_ = from._impl_.allow_overwrite_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SaveFileRequest) @@ -1836,26 +2090,34 @@ inline void SaveFileRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SaveFileRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - _impl_.contents_.ClearToEmpty(); - _impl_.allow_overwrite_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SaveFileRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SaveFileRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SaveFileRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SaveFileRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SaveFileRequest::ByteSizeLong, + &SaveFileRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_._cached_size_), + false, + }, + &SaveFileRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SaveFileRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 62, 2> SaveFileRequest::_table_ = { { @@ -1868,8 +2130,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 62, 2> SaveFileRequest::_table_ = { 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_SaveFileRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SaveFileRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // bool allow_overwrite = 1; @@ -1902,80 +2168,100 @@ const ::_pbi::TcParseTable<2, 3, 0, 62, 2> SaveFileRequest::_table_ = { }}, }; -::uint8_t* SaveFileRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool allow_overwrite = 1; - if (this->_internal_allow_overwrite() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_allow_overwrite(), target); - } - - // string path = 2; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SaveFileRequest.path"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // bytes contents = 3; - if (!this->_internal_contents().empty()) { - const std::string& _s = this->_internal_contents(); - target = stream->WriteBytesMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SaveFileRequest) - return target; -} - -::size_t SaveFileRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SaveFileRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 2; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - // bytes contents = 3; - if (!this->_internal_contents().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_contents()); - } - - // bool allow_overwrite = 1; - if (this->_internal_allow_overwrite() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SaveFileRequest::_class_data_ = { - SaveFileRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SaveFileRequest::GetClassData() const { - return &_class_data_; + _impl_.path_.ClearToEmpty(); + _impl_.contents_.ClearToEmpty(); + _impl_.allow_overwrite_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SaveFileRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SaveFileRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SaveFileRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SaveFileRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SaveFileRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool allow_overwrite = 1; + if (this_._internal_allow_overwrite() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_allow_overwrite(), target); + } + + // string path = 2; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SaveFileRequest.path"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bytes contents = 3; + if (!this_._internal_contents().empty()) { + const std::string& _s = this_._internal_contents(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SaveFileRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SaveFileRequest::ByteSizeLong(const MessageLite& base) { + const SaveFileRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SaveFileRequest::ByteSizeLong() const { + const SaveFileRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string path = 2; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + // bytes contents = 3; + if (!this_._internal_contents().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_contents()); + } + // bool allow_overwrite = 1; + if (this_._internal_allow_overwrite() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SaveFileRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) @@ -1990,7 +2276,7 @@ void SaveFileRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo _this->_internal_set_contents(from._internal_contents()); } if (from._internal_allow_overwrite() != 0) { - _this->_internal_set_allow_overwrite(from._internal_allow_overwrite()); + _this->_impl_.allow_overwrite_ = from._impl_.allow_overwrite_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2002,13 +2288,7 @@ void SaveFileRequest::CopyFrom(const SaveFileRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SaveFileRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SaveFileRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SaveFileRequest::InternalSwap(SaveFileRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2020,30 +2300,30 @@ void SaveFileRequest::InternalSwap(SaveFileRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SaveFileRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[5]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SaveFileResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_._has_bits_); - static void set_has_etag(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_._has_bits_); }; SaveFileResponse::SaveFileResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SaveFileResponse) } inline PROTOBUF_NDEBUG_INLINE SaveFileResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SaveFileResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, etag_(arena, from.etag_) {} @@ -2051,12 +2331,16 @@ inline PROTOBUF_NDEBUG_INLINE SaveFileResponse::Impl_::Impl_( SaveFileResponse::SaveFileResponse( ::google::protobuf::Arena* arena, const SaveFileResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SaveFileResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SaveFileResponse) } @@ -2080,28 +2364,34 @@ inline void SaveFileResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SaveFileResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.etag_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SaveFileResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SaveFileResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SaveFileResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SaveFileResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SaveFileResponse::ByteSizeLong, + &SaveFileResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_._cached_size_), + false, + }, + &SaveFileResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SaveFileResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 63, 2> SaveFileResponse::_table_ = { { @@ -2114,8 +2404,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 63, 2> SaveFileResponse::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_SaveFileResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SaveFileResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional string etag = 1; {::_pbi::TcParser::FastUS1, @@ -2135,58 +2429,82 @@ const ::_pbi::TcParseTable<0, 1, 0, 63, 2> SaveFileResponse::_table_ = { }}, }; -::uint8_t* SaveFileResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional string etag = 1; - if (cached_has_bits & 0x00000001u) { - const std::string& _s = this->_internal_etag(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SaveFileResponse.etag"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SaveFileResponse) - return target; -} - -::size_t SaveFileResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SaveFileResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional string etag = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_etag()); + _impl_.etag_.ClearNonDefaultToEmpty(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SaveFileResponse::_class_data_ = { - SaveFileResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SaveFileResponse::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SaveFileResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SaveFileResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SaveFileResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SaveFileResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SaveFileResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional string etag = 1; + if (cached_has_bits & 0x00000001u) { + const std::string& _s = this_._internal_etag(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SaveFileResponse.etag"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SaveFileResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SaveFileResponse::ByteSizeLong(const MessageLite& base) { + const SaveFileResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SaveFileResponse::ByteSizeLong() const { + const SaveFileResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // optional string etag = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_etag()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SaveFileResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) @@ -2194,9 +2512,11 @@ void SaveFileResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::go ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { _this->_internal_set_etag(from._internal_etag()); } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2207,13 +2527,7 @@ void SaveFileResponse::CopyFrom(const SaveFileResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SaveFileResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SaveFileResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SaveFileResponse::InternalSwap(SaveFileResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2224,9 +2538,7 @@ void SaveFileResponse::InternalSwap(SaveFileResponse* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SaveFileResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2235,13 +2547,17 @@ class MoveItemRequest::_Internal { }; MoveItemRequest::MoveItemRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MoveItemRequest) } inline PROTOBUF_NDEBUG_INLINE MoveItemRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& from_msg) : old_path_(arena, from.old_path_), new_path_(arena, from.new_path_), _cached_size_{0} {} @@ -2249,12 +2565,16 @@ inline PROTOBUF_NDEBUG_INLINE MoveItemRequest::Impl_::Impl_( MoveItemRequest::MoveItemRequest( ::google::protobuf::Arena* arena, const MoveItemRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MoveItemRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.allow_overwrite_ = from._impl_.allow_overwrite_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MoveItemRequest) @@ -2282,26 +2602,34 @@ inline void MoveItemRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MoveItemRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.old_path_.ClearToEmpty(); - _impl_.new_path_.ClearToEmpty(); - _impl_.allow_overwrite_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MoveItemRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MoveItemRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MoveItemRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MoveItemRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MoveItemRequest::ByteSizeLong, + &MoveItemRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_._cached_size_), + false, + }, + &MoveItemRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MoveItemRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 74, 2> MoveItemRequest::_table_ = { { @@ -2314,8 +2642,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 74, 2> MoveItemRequest::_table_ = { 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_MoveItemRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MoveItemRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string old_path = 1; @@ -2349,82 +2681,102 @@ const ::_pbi::TcParseTable<2, 3, 0, 74, 2> MoveItemRequest::_table_ = { }}, }; -::uint8_t* MoveItemRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string old_path = 1; - if (!this->_internal_old_path().empty()) { - const std::string& _s = this->_internal_old_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string new_path = 2; - if (!this->_internal_new_path().empty()) { - const std::string& _s = this->_internal_new_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // bool allow_overwrite = 3; - if (this->_internal_allow_overwrite() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_allow_overwrite(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MoveItemRequest) - return target; -} - -::size_t MoveItemRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MoveItemRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string old_path = 1; - if (!this->_internal_old_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_old_path()); - } - - // string new_path = 2; - if (!this->_internal_new_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_new_path()); - } - - // bool allow_overwrite = 3; - if (this->_internal_allow_overwrite() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MoveItemRequest::_class_data_ = { - MoveItemRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MoveItemRequest::GetClassData() const { - return &_class_data_; + _impl_.old_path_.ClearToEmpty(); + _impl_.new_path_.ClearToEmpty(); + _impl_.allow_overwrite_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MoveItemRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MoveItemRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MoveItemRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MoveItemRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MoveItemRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string old_path = 1; + if (!this_._internal_old_path().empty()) { + const std::string& _s = this_._internal_old_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string new_path = 2; + if (!this_._internal_new_path().empty()) { + const std::string& _s = this_._internal_new_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bool allow_overwrite = 3; + if (this_._internal_allow_overwrite() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_allow_overwrite(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MoveItemRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MoveItemRequest::ByteSizeLong(const MessageLite& base) { + const MoveItemRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MoveItemRequest::ByteSizeLong() const { + const MoveItemRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string old_path = 1; + if (!this_._internal_old_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_old_path()); + } + // string new_path = 2; + if (!this_._internal_new_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_new_path()); + } + // bool allow_overwrite = 3; + if (this_._internal_allow_overwrite() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MoveItemRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) @@ -2439,7 +2791,7 @@ void MoveItemRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo _this->_internal_set_new_path(from._internal_new_path()); } if (from._internal_allow_overwrite() != 0) { - _this->_internal_set_allow_overwrite(from._internal_allow_overwrite()); + _this->_impl_.allow_overwrite_ = from._impl_.allow_overwrite_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -2451,13 +2803,7 @@ void MoveItemRequest::CopyFrom(const MoveItemRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MoveItemRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MoveItemRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MoveItemRequest::InternalSwap(MoveItemRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2469,9 +2815,7 @@ void MoveItemRequest::InternalSwap(MoveItemRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MoveItemRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[7]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2480,13 +2824,21 @@ class MoveItemResponse::_Internal { }; MoveItemResponse::MoveItemResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MoveItemResponse) } MoveItemResponse::MoveItemResponse( ::google::protobuf::Arena* arena, const MoveItemResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MoveItemResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2495,6 +2847,61 @@ MoveItemResponse::MoveItemResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MoveItemResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MoveItemResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_MoveItemResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MoveItemResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &MoveItemResponse::ByteSizeLong, + &MoveItemResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MoveItemResponse, _impl_._cached_size_), + false, + }, + &MoveItemResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MoveItemResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> MoveItemResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MoveItemResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2504,9 +2911,7 @@ MoveItemResponse::MoveItemResponse( ::google::protobuf::Metadata MoveItemResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[8]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2515,25 +2920,33 @@ class CreateDirectoryRequest::_Internal { }; CreateDirectoryRequest::CreateDirectoryRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) } inline PROTOBUF_NDEBUG_INLINE CreateDirectoryRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& from_msg) : path_(arena, from.path_), _cached_size_{0} {} CreateDirectoryRequest::CreateDirectoryRequest( ::google::protobuf::Arena* arena, const CreateDirectoryRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateDirectoryRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) } @@ -2557,24 +2970,34 @@ inline void CreateDirectoryRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CreateDirectoryRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CreateDirectoryRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateDirectoryRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CreateDirectoryRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateDirectoryRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CreateDirectoryRequest::ByteSizeLong, + &CreateDirectoryRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateDirectoryRequest, _impl_._cached_size_), + false, + }, + &CreateDirectoryRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateDirectoryRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 69, 2> CreateDirectoryRequest::_table_ = { { @@ -2587,8 +3010,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 69, 2> CreateDirectoryRequest::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_CreateDirectoryRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string path = 1; {::_pbi::TcParser::FastUS1, @@ -2608,56 +3035,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 69, 2> CreateDirectoryRequest::_table_ = { }}, }; -::uint8_t* CreateDirectoryRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string path = 1; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - return target; -} - -::size_t CreateDirectoryRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CreateDirectoryRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 1; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CreateDirectoryRequest::_class_data_ = { - CreateDirectoryRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CreateDirectoryRequest::GetClassData() const { - return &_class_data_; + _impl_.path_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CreateDirectoryRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CreateDirectoryRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CreateDirectoryRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CreateDirectoryRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CreateDirectoryRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string path = 1; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CreateDirectoryRequest::ByteSizeLong(const MessageLite& base) { + const CreateDirectoryRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CreateDirectoryRequest::ByteSizeLong() const { + const CreateDirectoryRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string path = 1; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CreateDirectoryRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) @@ -2678,13 +3124,7 @@ void CreateDirectoryRequest::CopyFrom(const CreateDirectoryRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CreateDirectoryRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CreateDirectoryRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CreateDirectoryRequest::InternalSwap(CreateDirectoryRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2694,9 +3134,7 @@ void CreateDirectoryRequest::InternalSwap(CreateDirectoryRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata CreateDirectoryRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[9]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2705,13 +3143,21 @@ class CreateDirectoryResponse::_Internal { }; CreateDirectoryResponse::CreateDirectoryResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateDirectoryResponse) } CreateDirectoryResponse::CreateDirectoryResponse( ::google::protobuf::Arena* arena, const CreateDirectoryResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateDirectoryResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2720,6 +3166,61 @@ CreateDirectoryResponse::CreateDirectoryResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateDirectoryResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateDirectoryResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CreateDirectoryResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateDirectoryResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CreateDirectoryResponse::ByteSizeLong, + &CreateDirectoryResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateDirectoryResponse, _impl_._cached_size_), + false, + }, + &CreateDirectoryResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateDirectoryResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CreateDirectoryResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2729,9 +3230,7 @@ CreateDirectoryResponse::CreateDirectoryResponse( ::google::protobuf::Metadata CreateDirectoryResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[10]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2740,25 +3239,33 @@ class DeleteItemRequest::_Internal { }; DeleteItemRequest::DeleteItemRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.DeleteItemRequest) } inline PROTOBUF_NDEBUG_INLINE DeleteItemRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& from_msg) : path_(arena, from.path_), _cached_size_{0} {} DeleteItemRequest::DeleteItemRequest( ::google::protobuf::Arena* arena, const DeleteItemRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DeleteItemRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DeleteItemRequest) } @@ -2782,24 +3289,34 @@ inline void DeleteItemRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void DeleteItemRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* DeleteItemRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DeleteItemRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_DeleteItemRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DeleteItemRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &DeleteItemRequest::ByteSizeLong, + &DeleteItemRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DeleteItemRequest, _impl_._cached_size_), + false, + }, + &DeleteItemRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DeleteItemRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 64, 2> DeleteItemRequest::_table_ = { { @@ -2812,8 +3329,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 64, 2> DeleteItemRequest::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_DeleteItemRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DeleteItemRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string path = 1; {::_pbi::TcParser::FastUS1, @@ -2833,56 +3354,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 64, 2> DeleteItemRequest::_table_ = { }}, }; -::uint8_t* DeleteItemRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string path = 1; - if (!this->_internal_path().empty()) { - const std::string& _s = this->_internal_path(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.DeleteItemRequest.path"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - return target; -} - -::size_t DeleteItemRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void DeleteItemRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string path = 1; - if (!this->_internal_path().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData DeleteItemRequest::_class_data_ = { - DeleteItemRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* DeleteItemRequest::GetClassData() const { - return &_class_data_; + _impl_.path_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void DeleteItemRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* DeleteItemRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const DeleteItemRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* DeleteItemRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const DeleteItemRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string path = 1; + if (!this_._internal_path().empty()) { + const std::string& _s = this_._internal_path(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.DeleteItemRequest.path"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DeleteItemRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t DeleteItemRequest::ByteSizeLong(const MessageLite& base) { + const DeleteItemRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t DeleteItemRequest::ByteSizeLong() const { + const DeleteItemRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string path = 1; + if (!this_._internal_path().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_path()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void DeleteItemRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) @@ -2903,13 +3443,7 @@ void DeleteItemRequest::CopyFrom(const DeleteItemRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool DeleteItemRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* DeleteItemRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void DeleteItemRequest::InternalSwap(DeleteItemRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -2919,9 +3453,7 @@ void DeleteItemRequest::InternalSwap(DeleteItemRequest* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata DeleteItemRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[11]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -2930,13 +3462,21 @@ class DeleteItemResponse::_Internal { }; DeleteItemResponse::DeleteItemResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.DeleteItemResponse) } DeleteItemResponse::DeleteItemResponse( ::google::protobuf::Arena* arena, const DeleteItemResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DeleteItemResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -2945,6 +3485,61 @@ DeleteItemResponse::DeleteItemResponse( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DeleteItemResponse) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DeleteItemResponse::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_DeleteItemResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DeleteItemResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &DeleteItemResponse::ByteSizeLong, + &DeleteItemResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DeleteItemResponse, _impl_._cached_size_), + false, + }, + &DeleteItemResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fstorage_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DeleteItemResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> DeleteItemResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DeleteItemResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -2954,9 +3549,7 @@ DeleteItemResponse::DeleteItemResponse( ::google::protobuf::Metadata DeleteItemResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_getter, &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - file_level_metadata_deephaven_2fproto_2fstorage_2eproto[12]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -2969,4 +3562,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fstorage_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.h index 9d2a9b9d6a7..826ffd18e27 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/storage.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fstorage_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fstorage_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -156,21 +150,18 @@ inline bool ItemType_Parse(absl::string_view name, ItemType* value) { // ------------------------------------------------------------------- -class SaveFileResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SaveFileResponse) */ { +class SaveFileResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SaveFileResponse) */ { public: inline SaveFileResponse() : SaveFileResponse(nullptr) {} - ~SaveFileResponse() override; - template - explicit PROTOBUF_CONSTEXPR SaveFileResponse(::google::protobuf::internal::ConstantInitialized); - - inline SaveFileResponse(const SaveFileResponse& from) - : SaveFileResponse(nullptr, from) {} - SaveFileResponse(SaveFileResponse&& from) noexcept - : SaveFileResponse() { - *this = ::std::move(from); - } - + ~SaveFileResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SaveFileResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline SaveFileResponse(const SaveFileResponse& from) : SaveFileResponse(nullptr, from) {} + inline SaveFileResponse(SaveFileResponse&& from) noexcept + : SaveFileResponse(nullptr, std::move(from)) {} inline SaveFileResponse& operator=(const SaveFileResponse& from) { CopyFrom(from); return *this; @@ -178,9 +169,9 @@ class SaveFileResponse final : inline SaveFileResponse& operator=(SaveFileResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -212,22 +203,17 @@ class SaveFileResponse final : } static inline const SaveFileResponse* internal_default_instance() { return reinterpret_cast( - &_SaveFileResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(SaveFileResponse& a, SaveFileResponse& b) { - a.Swap(&b); + &_SaveFileResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(SaveFileResponse& a, SaveFileResponse& b) { a.Swap(&b); } inline void Swap(SaveFileResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -241,52 +227,69 @@ class SaveFileResponse final : // implements Message ---------------------------------------------- - SaveFileResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SaveFileResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SaveFileResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SaveFileResponse& from) { - SaveFileResponse::MergeImpl(*this, from); - } + void MergeFrom(const SaveFileResponse& from) { SaveFileResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SaveFileResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SaveFileResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SaveFileResponse"; } + + protected: explicit SaveFileResponse(::google::protobuf::Arena* arena); SaveFileResponse(::google::protobuf::Arena* arena, const SaveFileResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SaveFileResponse(::google::protobuf::Arena* arena, SaveFileResponse&& from) noexcept + : SaveFileResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kEtagFieldNumber = 1, }; @@ -310,12 +313,15 @@ class SaveFileResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SaveFileResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 63, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SaveFileResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -323,13 +329,13 @@ class SaveFileResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SaveFileResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr etag_; @@ -337,23 +343,21 @@ class SaveFileResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SaveFileRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SaveFileRequest) */ { +class SaveFileRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SaveFileRequest) */ { public: inline SaveFileRequest() : SaveFileRequest(nullptr) {} - ~SaveFileRequest() override; - template - explicit PROTOBUF_CONSTEXPR SaveFileRequest(::google::protobuf::internal::ConstantInitialized); - - inline SaveFileRequest(const SaveFileRequest& from) - : SaveFileRequest(nullptr, from) {} - SaveFileRequest(SaveFileRequest&& from) noexcept - : SaveFileRequest() { - *this = ::std::move(from); - } - + ~SaveFileRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SaveFileRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SaveFileRequest(const SaveFileRequest& from) : SaveFileRequest(nullptr, from) {} + inline SaveFileRequest(SaveFileRequest&& from) noexcept + : SaveFileRequest(nullptr, std::move(from)) {} inline SaveFileRequest& operator=(const SaveFileRequest& from) { CopyFrom(from); return *this; @@ -361,9 +365,9 @@ class SaveFileRequest final : inline SaveFileRequest& operator=(SaveFileRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -395,22 +399,17 @@ class SaveFileRequest final : } static inline const SaveFileRequest* internal_default_instance() { return reinterpret_cast( - &_SaveFileRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(SaveFileRequest& a, SaveFileRequest& b) { - a.Swap(&b); + &_SaveFileRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(SaveFileRequest& a, SaveFileRequest& b) { a.Swap(&b); } inline void Swap(SaveFileRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -424,52 +423,69 @@ class SaveFileRequest final : // implements Message ---------------------------------------------- - SaveFileRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SaveFileRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SaveFileRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SaveFileRequest& from) { - SaveFileRequest::MergeImpl(*this, from); - } + void MergeFrom(const SaveFileRequest& from) { SaveFileRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SaveFileRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SaveFileRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SaveFileRequest"; } + + protected: explicit SaveFileRequest(::google::protobuf::Arena* arena); SaveFileRequest(::google::protobuf::Arena* arena, const SaveFileRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SaveFileRequest(::google::protobuf::Arena* arena, SaveFileRequest&& from) noexcept + : SaveFileRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 2, kContentsFieldNumber = 3, @@ -520,12 +536,15 @@ class SaveFileRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SaveFileRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 62, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SaveFileRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -533,13 +552,13 @@ class SaveFileRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SaveFileRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr path_; ::google::protobuf::internal::ArenaStringPtr contents_; bool allow_overwrite_; @@ -548,22 +567,20 @@ class SaveFileRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MoveItemResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MoveItemResponse) */ { +class MoveItemResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MoveItemResponse) */ { public: inline MoveItemResponse() : MoveItemResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR MoveItemResponse(::google::protobuf::internal::ConstantInitialized); - - inline MoveItemResponse(const MoveItemResponse& from) - : MoveItemResponse(nullptr, from) {} - MoveItemResponse(MoveItemResponse&& from) noexcept - : MoveItemResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR MoveItemResponse( + ::google::protobuf::internal::ConstantInitialized); + inline MoveItemResponse(const MoveItemResponse& from) : MoveItemResponse(nullptr, from) {} + inline MoveItemResponse(MoveItemResponse&& from) noexcept + : MoveItemResponse(nullptr, std::move(from)) {} inline MoveItemResponse& operator=(const MoveItemResponse& from) { CopyFrom(from); return *this; @@ -571,9 +588,9 @@ class MoveItemResponse final : inline MoveItemResponse& operator=(MoveItemResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -605,22 +622,17 @@ class MoveItemResponse final : } static inline const MoveItemResponse* internal_default_instance() { return reinterpret_cast( - &_MoveItemResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 8; - - friend void swap(MoveItemResponse& a, MoveItemResponse& b) { - a.Swap(&b); + &_MoveItemResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 8; + friend void swap(MoveItemResponse& a, MoveItemResponse& b) { a.Swap(&b); } inline void Swap(MoveItemResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -634,8 +646,8 @@ class MoveItemResponse final : // implements Message ---------------------------------------------- - MoveItemResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MoveItemResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const MoveItemResponse& from) { @@ -645,27 +657,41 @@ class MoveItemResponse final : void MergeFrom(const MoveItemResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MoveItemResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MoveItemResponse"; } + + protected: explicit MoveItemResponse(::google::protobuf::Arena* arena); MoveItemResponse(::google::protobuf::Arena* arena, const MoveItemResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + MoveItemResponse(::google::protobuf::Arena* arena, MoveItemResponse&& from) noexcept + : MoveItemResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MoveItemResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_MoveItemResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -674,33 +700,31 @@ class MoveItemResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MoveItemResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MoveItemRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MoveItemRequest) */ { +class MoveItemRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MoveItemRequest) */ { public: inline MoveItemRequest() : MoveItemRequest(nullptr) {} - ~MoveItemRequest() override; - template - explicit PROTOBUF_CONSTEXPR MoveItemRequest(::google::protobuf::internal::ConstantInitialized); - - inline MoveItemRequest(const MoveItemRequest& from) - : MoveItemRequest(nullptr, from) {} - MoveItemRequest(MoveItemRequest&& from) noexcept - : MoveItemRequest() { - *this = ::std::move(from); - } - + ~MoveItemRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MoveItemRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline MoveItemRequest(const MoveItemRequest& from) : MoveItemRequest(nullptr, from) {} + inline MoveItemRequest(MoveItemRequest&& from) noexcept + : MoveItemRequest(nullptr, std::move(from)) {} inline MoveItemRequest& operator=(const MoveItemRequest& from) { CopyFrom(from); return *this; @@ -708,9 +732,9 @@ class MoveItemRequest final : inline MoveItemRequest& operator=(MoveItemRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -742,22 +766,17 @@ class MoveItemRequest final : } static inline const MoveItemRequest* internal_default_instance() { return reinterpret_cast( - &_MoveItemRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(MoveItemRequest& a, MoveItemRequest& b) { - a.Swap(&b); + &_MoveItemRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(MoveItemRequest& a, MoveItemRequest& b) { a.Swap(&b); } inline void Swap(MoveItemRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -771,52 +790,69 @@ class MoveItemRequest final : // implements Message ---------------------------------------------- - MoveItemRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MoveItemRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MoveItemRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MoveItemRequest& from) { - MoveItemRequest::MergeImpl(*this, from); - } + void MergeFrom(const MoveItemRequest& from) { MoveItemRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MoveItemRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MoveItemRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MoveItemRequest"; } + + protected: explicit MoveItemRequest(::google::protobuf::Arena* arena); MoveItemRequest(::google::protobuf::Arena* arena, const MoveItemRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MoveItemRequest(::google::protobuf::Arena* arena, MoveItemRequest&& from) noexcept + : MoveItemRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOldPathFieldNumber = 1, kNewPathFieldNumber = 2, @@ -867,12 +903,15 @@ class MoveItemRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MoveItemRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 74, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MoveItemRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -880,13 +919,13 @@ class MoveItemRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MoveItemRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr old_path_; ::google::protobuf::internal::ArenaStringPtr new_path_; bool allow_overwrite_; @@ -895,23 +934,21 @@ class MoveItemRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ListItemsRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListItemsRequest) */ { +class ListItemsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListItemsRequest) */ { public: inline ListItemsRequest() : ListItemsRequest(nullptr) {} - ~ListItemsRequest() override; - template - explicit PROTOBUF_CONSTEXPR ListItemsRequest(::google::protobuf::internal::ConstantInitialized); - - inline ListItemsRequest(const ListItemsRequest& from) - : ListItemsRequest(nullptr, from) {} - ListItemsRequest(ListItemsRequest&& from) noexcept - : ListItemsRequest() { - *this = ::std::move(from); - } - + ~ListItemsRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ListItemsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ListItemsRequest(const ListItemsRequest& from) : ListItemsRequest(nullptr, from) {} + inline ListItemsRequest(ListItemsRequest&& from) noexcept + : ListItemsRequest(nullptr, std::move(from)) {} inline ListItemsRequest& operator=(const ListItemsRequest& from) { CopyFrom(from); return *this; @@ -919,9 +956,9 @@ class ListItemsRequest final : inline ListItemsRequest& operator=(ListItemsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -953,22 +990,17 @@ class ListItemsRequest final : } static inline const ListItemsRequest* internal_default_instance() { return reinterpret_cast( - &_ListItemsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(ListItemsRequest& a, ListItemsRequest& b) { - a.Swap(&b); + &_ListItemsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(ListItemsRequest& a, ListItemsRequest& b) { a.Swap(&b); } inline void Swap(ListItemsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -982,52 +1014,69 @@ class ListItemsRequest final : // implements Message ---------------------------------------------- - ListItemsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ListItemsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ListItemsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ListItemsRequest& from) { - ListItemsRequest::MergeImpl(*this, from); - } + void MergeFrom(const ListItemsRequest& from) { ListItemsRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ListItemsRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ListItemsRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ListItemsRequest"; } + + protected: explicit ListItemsRequest(::google::protobuf::Arena* arena); ListItemsRequest(::google::protobuf::Arena* arena, const ListItemsRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ListItemsRequest(::google::protobuf::Arena* arena, ListItemsRequest&& from) noexcept + : ListItemsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 1, kFilterGlobFieldNumber = 4, @@ -1068,12 +1117,15 @@ class ListItemsRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ListItemsRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 74, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ListItemsRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1081,13 +1133,13 @@ class ListItemsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ListItemsRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr path_; @@ -1096,23 +1148,21 @@ class ListItemsRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ItemInfo final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ItemInfo) */ { +class ItemInfo final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ItemInfo) */ { public: inline ItemInfo() : ItemInfo(nullptr) {} - ~ItemInfo() override; - template - explicit PROTOBUF_CONSTEXPR ItemInfo(::google::protobuf::internal::ConstantInitialized); - - inline ItemInfo(const ItemInfo& from) - : ItemInfo(nullptr, from) {} - ItemInfo(ItemInfo&& from) noexcept - : ItemInfo() { - *this = ::std::move(from); - } - + ~ItemInfo() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ItemInfo( + ::google::protobuf::internal::ConstantInitialized); + + inline ItemInfo(const ItemInfo& from) : ItemInfo(nullptr, from) {} + inline ItemInfo(ItemInfo&& from) noexcept + : ItemInfo(nullptr, std::move(from)) {} inline ItemInfo& operator=(const ItemInfo& from) { CopyFrom(from); return *this; @@ -1120,9 +1170,9 @@ class ItemInfo final : inline ItemInfo& operator=(ItemInfo&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1154,22 +1204,17 @@ class ItemInfo final : } static inline const ItemInfo* internal_default_instance() { return reinterpret_cast( - &_ItemInfo_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(ItemInfo& a, ItemInfo& b) { - a.Swap(&b); + &_ItemInfo_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(ItemInfo& a, ItemInfo& b) { a.Swap(&b); } inline void Swap(ItemInfo* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1183,52 +1228,69 @@ class ItemInfo final : // implements Message ---------------------------------------------- - ItemInfo* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ItemInfo* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ItemInfo& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ItemInfo& from) { - ItemInfo::MergeImpl(*this, from); - } + void MergeFrom(const ItemInfo& from) { ItemInfo::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ItemInfo* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ItemInfo"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ItemInfo"; } + + protected: explicit ItemInfo(::google::protobuf::Arena* arena); ItemInfo(::google::protobuf::Arena* arena, const ItemInfo& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ItemInfo(::google::protobuf::Arena* arena, ItemInfo&& from) noexcept + : ItemInfo(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 1, kEtagFieldNumber = 4, @@ -1291,12 +1353,15 @@ class ItemInfo final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ItemInfo) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, 59, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ItemInfo_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1304,13 +1369,13 @@ class ItemInfo final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ItemInfo& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr path_; @@ -1321,23 +1386,21 @@ class ItemInfo final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FetchFileResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchFileResponse) */ { +class FetchFileResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchFileResponse) */ { public: inline FetchFileResponse() : FetchFileResponse(nullptr) {} - ~FetchFileResponse() override; - template - explicit PROTOBUF_CONSTEXPR FetchFileResponse(::google::protobuf::internal::ConstantInitialized); - - inline FetchFileResponse(const FetchFileResponse& from) - : FetchFileResponse(nullptr, from) {} - FetchFileResponse(FetchFileResponse&& from) noexcept - : FetchFileResponse() { - *this = ::std::move(from); - } - + ~FetchFileResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FetchFileResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline FetchFileResponse(const FetchFileResponse& from) : FetchFileResponse(nullptr, from) {} + inline FetchFileResponse(FetchFileResponse&& from) noexcept + : FetchFileResponse(nullptr, std::move(from)) {} inline FetchFileResponse& operator=(const FetchFileResponse& from) { CopyFrom(from); return *this; @@ -1345,9 +1408,9 @@ class FetchFileResponse final : inline FetchFileResponse& operator=(FetchFileResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1379,22 +1442,17 @@ class FetchFileResponse final : } static inline const FetchFileResponse* internal_default_instance() { return reinterpret_cast( - &_FetchFileResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(FetchFileResponse& a, FetchFileResponse& b) { - a.Swap(&b); + &_FetchFileResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 4; + friend void swap(FetchFileResponse& a, FetchFileResponse& b) { a.Swap(&b); } inline void Swap(FetchFileResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1408,52 +1466,69 @@ class FetchFileResponse final : // implements Message ---------------------------------------------- - FetchFileResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FetchFileResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FetchFileResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FetchFileResponse& from) { - FetchFileResponse::MergeImpl(*this, from); - } + void MergeFrom(const FetchFileResponse& from) { FetchFileResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FetchFileResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FetchFileResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FetchFileResponse"; } + + protected: explicit FetchFileResponse(::google::protobuf::Arena* arena); FetchFileResponse(::google::protobuf::Arena* arena, const FetchFileResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FetchFileResponse(::google::protobuf::Arena* arena, FetchFileResponse&& from) noexcept + : FetchFileResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kContentsFieldNumber = 1, kEtagFieldNumber = 2, @@ -1494,12 +1569,15 @@ class FetchFileResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FetchFileResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 64, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FetchFileResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1507,13 +1585,13 @@ class FetchFileResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FetchFileResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr contents_; @@ -1522,23 +1600,21 @@ class FetchFileResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FetchFileRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchFileRequest) */ { +class FetchFileRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchFileRequest) */ { public: inline FetchFileRequest() : FetchFileRequest(nullptr) {} - ~FetchFileRequest() override; - template - explicit PROTOBUF_CONSTEXPR FetchFileRequest(::google::protobuf::internal::ConstantInitialized); - - inline FetchFileRequest(const FetchFileRequest& from) - : FetchFileRequest(nullptr, from) {} - FetchFileRequest(FetchFileRequest&& from) noexcept - : FetchFileRequest() { - *this = ::std::move(from); - } - + ~FetchFileRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FetchFileRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline FetchFileRequest(const FetchFileRequest& from) : FetchFileRequest(nullptr, from) {} + inline FetchFileRequest(FetchFileRequest&& from) noexcept + : FetchFileRequest(nullptr, std::move(from)) {} inline FetchFileRequest& operator=(const FetchFileRequest& from) { CopyFrom(from); return *this; @@ -1546,9 +1622,9 @@ class FetchFileRequest final : inline FetchFileRequest& operator=(FetchFileRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1580,22 +1656,17 @@ class FetchFileRequest final : } static inline const FetchFileRequest* internal_default_instance() { return reinterpret_cast( - &_FetchFileRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(FetchFileRequest& a, FetchFileRequest& b) { - a.Swap(&b); + &_FetchFileRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(FetchFileRequest& a, FetchFileRequest& b) { a.Swap(&b); } inline void Swap(FetchFileRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1609,52 +1680,69 @@ class FetchFileRequest final : // implements Message ---------------------------------------------- - FetchFileRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FetchFileRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FetchFileRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FetchFileRequest& from) { - FetchFileRequest::MergeImpl(*this, from); - } + void MergeFrom(const FetchFileRequest& from) { FetchFileRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FetchFileRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FetchFileRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FetchFileRequest"; } + + protected: explicit FetchFileRequest(::google::protobuf::Arena* arena); FetchFileRequest(::google::protobuf::Arena* arena, const FetchFileRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FetchFileRequest(::google::protobuf::Arena* arena, FetchFileRequest&& from) noexcept + : FetchFileRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 1, kEtagFieldNumber = 2, @@ -1695,12 +1783,15 @@ class FetchFileRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FetchFileRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 67, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FetchFileRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1708,13 +1799,13 @@ class FetchFileRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FetchFileRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr path_; @@ -1723,22 +1814,20 @@ class FetchFileRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class DeleteItemResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteItemResponse) */ { +class DeleteItemResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteItemResponse) */ { public: inline DeleteItemResponse() : DeleteItemResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR DeleteItemResponse(::google::protobuf::internal::ConstantInitialized); - - inline DeleteItemResponse(const DeleteItemResponse& from) - : DeleteItemResponse(nullptr, from) {} - DeleteItemResponse(DeleteItemResponse&& from) noexcept - : DeleteItemResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR DeleteItemResponse( + ::google::protobuf::internal::ConstantInitialized); + inline DeleteItemResponse(const DeleteItemResponse& from) : DeleteItemResponse(nullptr, from) {} + inline DeleteItemResponse(DeleteItemResponse&& from) noexcept + : DeleteItemResponse(nullptr, std::move(from)) {} inline DeleteItemResponse& operator=(const DeleteItemResponse& from) { CopyFrom(from); return *this; @@ -1746,9 +1835,9 @@ class DeleteItemResponse final : inline DeleteItemResponse& operator=(DeleteItemResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1780,22 +1869,17 @@ class DeleteItemResponse final : } static inline const DeleteItemResponse* internal_default_instance() { return reinterpret_cast( - &_DeleteItemResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 12; - - friend void swap(DeleteItemResponse& a, DeleteItemResponse& b) { - a.Swap(&b); + &_DeleteItemResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 12; + friend void swap(DeleteItemResponse& a, DeleteItemResponse& b) { a.Swap(&b); } inline void Swap(DeleteItemResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1809,8 +1893,8 @@ class DeleteItemResponse final : // implements Message ---------------------------------------------- - DeleteItemResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DeleteItemResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const DeleteItemResponse& from) { @@ -1820,27 +1904,41 @@ class DeleteItemResponse final : void MergeFrom(const DeleteItemResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.DeleteItemResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.DeleteItemResponse"; } + + protected: explicit DeleteItemResponse(::google::protobuf::Arena* arena); DeleteItemResponse(::google::protobuf::Arena* arena, const DeleteItemResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + DeleteItemResponse(::google::protobuf::Arena* arena, DeleteItemResponse&& from) noexcept + : DeleteItemResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.DeleteItemResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_DeleteItemResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1849,33 +1947,31 @@ class DeleteItemResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DeleteItemResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class DeleteItemRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteItemRequest) */ { +class DeleteItemRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DeleteItemRequest) */ { public: inline DeleteItemRequest() : DeleteItemRequest(nullptr) {} - ~DeleteItemRequest() override; - template - explicit PROTOBUF_CONSTEXPR DeleteItemRequest(::google::protobuf::internal::ConstantInitialized); - - inline DeleteItemRequest(const DeleteItemRequest& from) - : DeleteItemRequest(nullptr, from) {} - DeleteItemRequest(DeleteItemRequest&& from) noexcept - : DeleteItemRequest() { - *this = ::std::move(from); - } - + ~DeleteItemRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR DeleteItemRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline DeleteItemRequest(const DeleteItemRequest& from) : DeleteItemRequest(nullptr, from) {} + inline DeleteItemRequest(DeleteItemRequest&& from) noexcept + : DeleteItemRequest(nullptr, std::move(from)) {} inline DeleteItemRequest& operator=(const DeleteItemRequest& from) { CopyFrom(from); return *this; @@ -1883,9 +1979,9 @@ class DeleteItemRequest final : inline DeleteItemRequest& operator=(DeleteItemRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1917,22 +2013,17 @@ class DeleteItemRequest final : } static inline const DeleteItemRequest* internal_default_instance() { return reinterpret_cast( - &_DeleteItemRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 11; - - friend void swap(DeleteItemRequest& a, DeleteItemRequest& b) { - a.Swap(&b); + &_DeleteItemRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 11; + friend void swap(DeleteItemRequest& a, DeleteItemRequest& b) { a.Swap(&b); } inline void Swap(DeleteItemRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1946,52 +2037,69 @@ class DeleteItemRequest final : // implements Message ---------------------------------------------- - DeleteItemRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DeleteItemRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const DeleteItemRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const DeleteItemRequest& from) { - DeleteItemRequest::MergeImpl(*this, from); - } + void MergeFrom(const DeleteItemRequest& from) { DeleteItemRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(DeleteItemRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.DeleteItemRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.DeleteItemRequest"; } + + protected: explicit DeleteItemRequest(::google::protobuf::Arena* arena); DeleteItemRequest(::google::protobuf::Arena* arena, const DeleteItemRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + DeleteItemRequest(::google::protobuf::Arena* arena, DeleteItemRequest&& from) noexcept + : DeleteItemRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 1, }; @@ -2014,12 +2122,15 @@ class DeleteItemRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.DeleteItemRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 64, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_DeleteItemRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2027,35 +2138,33 @@ class DeleteItemRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DeleteItemRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr path_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateDirectoryResponse final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateDirectoryResponse) */ { +class CreateDirectoryResponse final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateDirectoryResponse) */ { public: inline CreateDirectoryResponse() : CreateDirectoryResponse(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CreateDirectoryResponse(::google::protobuf::internal::ConstantInitialized); - - inline CreateDirectoryResponse(const CreateDirectoryResponse& from) - : CreateDirectoryResponse(nullptr, from) {} - CreateDirectoryResponse(CreateDirectoryResponse&& from) noexcept - : CreateDirectoryResponse() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CreateDirectoryResponse( + ::google::protobuf::internal::ConstantInitialized); + inline CreateDirectoryResponse(const CreateDirectoryResponse& from) : CreateDirectoryResponse(nullptr, from) {} + inline CreateDirectoryResponse(CreateDirectoryResponse&& from) noexcept + : CreateDirectoryResponse(nullptr, std::move(from)) {} inline CreateDirectoryResponse& operator=(const CreateDirectoryResponse& from) { CopyFrom(from); return *this; @@ -2063,9 +2172,9 @@ class CreateDirectoryResponse final : inline CreateDirectoryResponse& operator=(CreateDirectoryResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2097,22 +2206,17 @@ class CreateDirectoryResponse final : } static inline const CreateDirectoryResponse* internal_default_instance() { return reinterpret_cast( - &_CreateDirectoryResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 10; - - friend void swap(CreateDirectoryResponse& a, CreateDirectoryResponse& b) { - a.Swap(&b); + &_CreateDirectoryResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 10; + friend void swap(CreateDirectoryResponse& a, CreateDirectoryResponse& b) { a.Swap(&b); } inline void Swap(CreateDirectoryResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2126,8 +2230,8 @@ class CreateDirectoryResponse final : // implements Message ---------------------------------------------- - CreateDirectoryResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateDirectoryResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CreateDirectoryResponse& from) { @@ -2137,27 +2241,41 @@ class CreateDirectoryResponse final : void MergeFrom(const CreateDirectoryResponse& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateDirectoryResponse"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateDirectoryResponse"; } + + protected: explicit CreateDirectoryResponse(::google::protobuf::Arena* arena); CreateDirectoryResponse(::google::protobuf::Arena* arena, const CreateDirectoryResponse& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CreateDirectoryResponse(::google::protobuf::Arena* arena, CreateDirectoryResponse&& from) noexcept + : CreateDirectoryResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateDirectoryResponse) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateDirectoryResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2166,33 +2284,31 @@ class CreateDirectoryResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateDirectoryResponse& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateDirectoryRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) */ { +class CreateDirectoryRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) */ { public: inline CreateDirectoryRequest() : CreateDirectoryRequest(nullptr) {} - ~CreateDirectoryRequest() override; - template - explicit PROTOBUF_CONSTEXPR CreateDirectoryRequest(::google::protobuf::internal::ConstantInitialized); - - inline CreateDirectoryRequest(const CreateDirectoryRequest& from) - : CreateDirectoryRequest(nullptr, from) {} - CreateDirectoryRequest(CreateDirectoryRequest&& from) noexcept - : CreateDirectoryRequest() { - *this = ::std::move(from); - } - + ~CreateDirectoryRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CreateDirectoryRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CreateDirectoryRequest(const CreateDirectoryRequest& from) : CreateDirectoryRequest(nullptr, from) {} + inline CreateDirectoryRequest(CreateDirectoryRequest&& from) noexcept + : CreateDirectoryRequest(nullptr, std::move(from)) {} inline CreateDirectoryRequest& operator=(const CreateDirectoryRequest& from) { CopyFrom(from); return *this; @@ -2200,9 +2316,9 @@ class CreateDirectoryRequest final : inline CreateDirectoryRequest& operator=(CreateDirectoryRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2234,22 +2350,17 @@ class CreateDirectoryRequest final : } static inline const CreateDirectoryRequest* internal_default_instance() { return reinterpret_cast( - &_CreateDirectoryRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 9; - - friend void swap(CreateDirectoryRequest& a, CreateDirectoryRequest& b) { - a.Swap(&b); + &_CreateDirectoryRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 9; + friend void swap(CreateDirectoryRequest& a, CreateDirectoryRequest& b) { a.Swap(&b); } inline void Swap(CreateDirectoryRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2263,52 +2374,69 @@ class CreateDirectoryRequest final : // implements Message ---------------------------------------------- - CreateDirectoryRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateDirectoryRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CreateDirectoryRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CreateDirectoryRequest& from) { - CreateDirectoryRequest::MergeImpl(*this, from); - } + void MergeFrom(const CreateDirectoryRequest& from) { CreateDirectoryRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CreateDirectoryRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateDirectoryRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateDirectoryRequest"; } + + protected: explicit CreateDirectoryRequest(::google::protobuf::Arena* arena); CreateDirectoryRequest(::google::protobuf::Arena* arena, const CreateDirectoryRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CreateDirectoryRequest(::google::protobuf::Arena* arena, CreateDirectoryRequest&& from) noexcept + : CreateDirectoryRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPathFieldNumber = 1, }; @@ -2331,12 +2459,15 @@ class CreateDirectoryRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 69, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateDirectoryRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2344,36 +2475,34 @@ class CreateDirectoryRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateDirectoryRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr path_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ListItemsResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListItemsResponse) */ { +class ListItemsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ListItemsResponse) */ { public: inline ListItemsResponse() : ListItemsResponse(nullptr) {} - ~ListItemsResponse() override; - template - explicit PROTOBUF_CONSTEXPR ListItemsResponse(::google::protobuf::internal::ConstantInitialized); - - inline ListItemsResponse(const ListItemsResponse& from) - : ListItemsResponse(nullptr, from) {} - ListItemsResponse(ListItemsResponse&& from) noexcept - : ListItemsResponse() { - *this = ::std::move(from); - } - + ~ListItemsResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ListItemsResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline ListItemsResponse(const ListItemsResponse& from) : ListItemsResponse(nullptr, from) {} + inline ListItemsResponse(ListItemsResponse&& from) noexcept + : ListItemsResponse(nullptr, std::move(from)) {} inline ListItemsResponse& operator=(const ListItemsResponse& from) { CopyFrom(from); return *this; @@ -2381,9 +2510,9 @@ class ListItemsResponse final : inline ListItemsResponse& operator=(ListItemsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2415,22 +2544,17 @@ class ListItemsResponse final : } static inline const ListItemsResponse* internal_default_instance() { return reinterpret_cast( - &_ListItemsResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(ListItemsResponse& a, ListItemsResponse& b) { - a.Swap(&b); + &_ListItemsResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(ListItemsResponse& a, ListItemsResponse& b) { a.Swap(&b); } inline void Swap(ListItemsResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2444,52 +2568,69 @@ class ListItemsResponse final : // implements Message ---------------------------------------------- - ListItemsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ListItemsResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ListItemsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ListItemsResponse& from) { - ListItemsResponse::MergeImpl(*this, from); - } + void MergeFrom(const ListItemsResponse& from) { ListItemsResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ListItemsResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ListItemsResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ListItemsResponse"; } + + protected: explicit ListItemsResponse(::google::protobuf::Arena* arena); ListItemsResponse(::google::protobuf::Arena* arena, const ListItemsResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ListItemsResponse(::google::protobuf::Arena* arena, ListItemsResponse&& from) noexcept + : ListItemsResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kItemsFieldNumber = 1, kCanonicalPathFieldNumber = 2, @@ -2502,16 +2643,15 @@ class ListItemsResponse final : public: void clear_items() ; ::io::deephaven::proto::backplane::grpc::ItemInfo* mutable_items(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ItemInfo >* - mutable_items(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>* mutable_items(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>& _internal_items() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>* _internal_mutable_items(); public: const ::io::deephaven::proto::backplane::grpc::ItemInfo& items(int index) const; ::io::deephaven::proto::backplane::grpc::ItemInfo* add_items(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ItemInfo >& - items() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>& items() const; // string canonical_path = 2; void clear_canonical_path() ; const std::string& canonical_path() const; @@ -2531,12 +2671,15 @@ class ListItemsResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ListItemsResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 74, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ListItemsResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2544,13 +2687,13 @@ class ListItemsResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ListItemsResponse& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ItemInfo > items_; ::google::protobuf::internal::ArenaStringPtr canonical_path_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -2578,7 +2721,7 @@ class ListItemsResponse final : // string path = 1; inline void ListItemsRequest::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& ListItemsRequest::path() const @@ -2589,8 +2732,7 @@ inline const std::string& ListItemsRequest::path() const template inline PROTOBUF_ALWAYS_INLINE void ListItemsRequest::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ListItemsRequest.path) } @@ -2600,26 +2742,24 @@ inline std::string* ListItemsRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& ListItemsRequest::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void ListItemsRequest::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* ListItemsRequest::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* ListItemsRequest::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ListItemsRequest.path) return _impl_.path_.Release(); } inline void ListItemsRequest::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { @@ -2635,7 +2775,7 @@ inline bool ListItemsRequest::has_filter_glob() const { return value; } inline void ListItemsRequest::clear_filter_glob() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filter_glob_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -2647,7 +2787,7 @@ inline const std::string& ListItemsRequest::filter_glob() const template inline PROTOBUF_ALWAYS_INLINE void ListItemsRequest::set_filter_glob(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.filter_glob_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob) @@ -2658,21 +2798,21 @@ inline std::string* ListItemsRequest::mutable_filter_glob() ABSL_ATTRIBUTE_LIFET return _s; } inline const std::string& ListItemsRequest::_internal_filter_glob() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filter_glob_.Get(); } inline void ListItemsRequest::_internal_set_filter_glob(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.filter_glob_.Set(value, GetArena()); } inline std::string* ListItemsRequest::_internal_mutable_filter_glob() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.filter_glob_.Mutable( GetArena()); } inline std::string* ListItemsRequest::release_filter_glob() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -2685,7 +2825,7 @@ inline std::string* ListItemsRequest::release_filter_glob() { return released; } inline void ListItemsRequest::set_allocated_filter_glob(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -2706,7 +2846,7 @@ inline void ListItemsRequest::set_allocated_filter_glob(std::string* value) { // string path = 1; inline void ItemInfo::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& ItemInfo::path() const @@ -2717,8 +2857,7 @@ inline const std::string& ItemInfo::path() const template inline PROTOBUF_ALWAYS_INLINE void ItemInfo::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.path) } @@ -2728,26 +2867,24 @@ inline std::string* ItemInfo::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& ItemInfo::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void ItemInfo::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* ItemInfo::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* ItemInfo::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ItemInfo.path) return _impl_.path_.Release(); } inline void ItemInfo::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { @@ -2759,7 +2896,7 @@ inline void ItemInfo::set_allocated_path(std::string* value) { // .io.deephaven.proto.backplane.grpc.ItemType type = 2; inline void ItemInfo::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = 0; } inline ::io::deephaven::proto::backplane::grpc::ItemType ItemInfo::type() const { @@ -2771,18 +2908,17 @@ inline void ItemInfo::set_type(::io::deephaven::proto::backplane::grpc::ItemType // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.type) } inline ::io::deephaven::proto::backplane::grpc::ItemType ItemInfo::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::ItemType>(_impl_.type_); } inline void ItemInfo::_internal_set_type(::io::deephaven::proto::backplane::grpc::ItemType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = value; } // sint64 size = 3 [jstype = JS_STRING]; inline void ItemInfo::clear_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = ::int64_t{0}; } inline ::int64_t ItemInfo::size() const { @@ -2794,12 +2930,11 @@ inline void ItemInfo::set_size(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.size) } inline ::int64_t ItemInfo::_internal_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.size_; } inline void ItemInfo::_internal_set_size(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = value; } @@ -2809,7 +2944,7 @@ inline bool ItemInfo::has_etag() const { return value; } inline void ItemInfo::clear_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.etag_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -2821,7 +2956,7 @@ inline const std::string& ItemInfo::etag() const template inline PROTOBUF_ALWAYS_INLINE void ItemInfo::set_etag(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.etag) @@ -2832,21 +2967,21 @@ inline std::string* ItemInfo::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& ItemInfo::_internal_etag() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.etag_.Get(); } inline void ItemInfo::_internal_set_etag(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(value, GetArena()); } inline std::string* ItemInfo::_internal_mutable_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.etag_.Mutable( GetArena()); } inline std::string* ItemInfo::release_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ItemInfo.etag) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -2859,7 +2994,7 @@ inline std::string* ItemInfo::release_etag() { return released; } inline void ItemInfo::set_allocated_etag(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -2886,7 +3021,7 @@ inline int ListItemsResponse::items_size() const { return _internal_items_size(); } inline void ListItemsResponse::clear_items() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.items_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::ItemInfo* ListItemsResponse::mutable_items(int index) @@ -2897,7 +3032,7 @@ inline ::io::deephaven::proto::backplane::grpc::ItemInfo* ListItemsResponse::mut inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>* ListItemsResponse::mutable_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ListItemsResponse.items) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_items(); } inline const ::io::deephaven::proto::backplane::grpc::ItemInfo& ListItemsResponse::items(int index) const @@ -2906,7 +3041,7 @@ inline const ::io::deephaven::proto::backplane::grpc::ItemInfo& ListItemsRespons return _internal_items().Get(index); } inline ::io::deephaven::proto::backplane::grpc::ItemInfo* ListItemsResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::ItemInfo* _add = _internal_mutable_items()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ListItemsResponse.items) return _add; @@ -2918,18 +3053,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>& ListItemsResponse::_internal_items() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.items_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>* ListItemsResponse::_internal_mutable_items() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.items_; } // string canonical_path = 2; inline void ListItemsResponse::clear_canonical_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.canonical_path_.ClearToEmpty(); } inline const std::string& ListItemsResponse::canonical_path() const @@ -2940,8 +3075,7 @@ inline const std::string& ListItemsResponse::canonical_path() const template inline PROTOBUF_ALWAYS_INLINE void ListItemsResponse::set_canonical_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.canonical_path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path) } @@ -2951,26 +3085,24 @@ inline std::string* ListItemsResponse::mutable_canonical_path() ABSL_ATTRIBUTE_L return _s; } inline const std::string& ListItemsResponse::_internal_canonical_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.canonical_path_.Get(); } inline void ListItemsResponse::_internal_set_canonical_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.canonical_path_.Set(value, GetArena()); } inline std::string* ListItemsResponse::_internal_mutable_canonical_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.canonical_path_.Mutable( GetArena()); } inline std::string* ListItemsResponse::release_canonical_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path) return _impl_.canonical_path_.Release(); } inline void ListItemsResponse::set_allocated_canonical_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.canonical_path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.canonical_path_.IsDefault()) { @@ -2986,7 +3118,7 @@ inline void ListItemsResponse::set_allocated_canonical_path(std::string* value) // string path = 1; inline void FetchFileRequest::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& FetchFileRequest::path() const @@ -2997,8 +3129,7 @@ inline const std::string& FetchFileRequest::path() const template inline PROTOBUF_ALWAYS_INLINE void FetchFileRequest::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchFileRequest.path) } @@ -3008,26 +3139,24 @@ inline std::string* FetchFileRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& FetchFileRequest::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void FetchFileRequest::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* FetchFileRequest::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* FetchFileRequest::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchFileRequest.path) return _impl_.path_.Release(); } inline void FetchFileRequest::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { @@ -3043,7 +3172,7 @@ inline bool FetchFileRequest::has_etag() const { return value; } inline void FetchFileRequest::clear_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.etag_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -3055,7 +3184,7 @@ inline const std::string& FetchFileRequest::etag() const template inline PROTOBUF_ALWAYS_INLINE void FetchFileRequest::set_etag(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchFileRequest.etag) @@ -3066,21 +3195,21 @@ inline std::string* FetchFileRequest::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& FetchFileRequest::_internal_etag() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.etag_.Get(); } inline void FetchFileRequest::_internal_set_etag(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(value, GetArena()); } inline std::string* FetchFileRequest::_internal_mutable_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.etag_.Mutable( GetArena()); } inline std::string* FetchFileRequest::release_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchFileRequest.etag) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -3093,7 +3222,7 @@ inline std::string* FetchFileRequest::release_etag() { return released; } inline void FetchFileRequest::set_allocated_etag(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -3114,7 +3243,7 @@ inline void FetchFileRequest::set_allocated_etag(std::string* value) { // bytes contents = 1; inline void FetchFileResponse::clear_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.ClearToEmpty(); } inline const std::string& FetchFileResponse::contents() const @@ -3125,8 +3254,7 @@ inline const std::string& FetchFileResponse::contents() const template inline PROTOBUF_ALWAYS_INLINE void FetchFileResponse::set_contents(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchFileResponse.contents) } @@ -3136,26 +3264,24 @@ inline std::string* FetchFileResponse::mutable_contents() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& FetchFileResponse::_internal_contents() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.contents_.Get(); } inline void FetchFileResponse::_internal_set_contents(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.Set(value, GetArena()); } inline std::string* FetchFileResponse::_internal_mutable_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.contents_.Mutable( GetArena()); } inline std::string* FetchFileResponse::release_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchFileResponse.contents) return _impl_.contents_.Release(); } inline void FetchFileResponse::set_allocated_contents(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.contents_.IsDefault()) { @@ -3171,7 +3297,7 @@ inline bool FetchFileResponse::has_etag() const { return value; } inline void FetchFileResponse::clear_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.etag_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -3183,7 +3309,7 @@ inline const std::string& FetchFileResponse::etag() const template inline PROTOBUF_ALWAYS_INLINE void FetchFileResponse::set_etag(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.FetchFileResponse.etag) @@ -3194,21 +3320,21 @@ inline std::string* FetchFileResponse::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BO return _s; } inline const std::string& FetchFileResponse::_internal_etag() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.etag_.Get(); } inline void FetchFileResponse::_internal_set_etag(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(value, GetArena()); } inline std::string* FetchFileResponse::_internal_mutable_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.etag_.Mutable( GetArena()); } inline std::string* FetchFileResponse::release_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchFileResponse.etag) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -3221,7 +3347,7 @@ inline std::string* FetchFileResponse::release_etag() { return released; } inline void FetchFileResponse::set_allocated_etag(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -3242,7 +3368,7 @@ inline void FetchFileResponse::set_allocated_etag(std::string* value) { // bool allow_overwrite = 1; inline void SaveFileRequest::clear_allow_overwrite() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.allow_overwrite_ = false; } inline bool SaveFileRequest::allow_overwrite() const { @@ -3254,18 +3380,17 @@ inline void SaveFileRequest::set_allow_overwrite(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SaveFileRequest.allow_overwrite) } inline bool SaveFileRequest::_internal_allow_overwrite() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.allow_overwrite_; } inline void SaveFileRequest::_internal_set_allow_overwrite(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.allow_overwrite_ = value; } // string path = 2; inline void SaveFileRequest::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& SaveFileRequest::path() const @@ -3276,8 +3401,7 @@ inline const std::string& SaveFileRequest::path() const template inline PROTOBUF_ALWAYS_INLINE void SaveFileRequest::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SaveFileRequest.path) } @@ -3287,26 +3411,24 @@ inline std::string* SaveFileRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUN return _s; } inline const std::string& SaveFileRequest::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void SaveFileRequest::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* SaveFileRequest::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* SaveFileRequest::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SaveFileRequest.path) return _impl_.path_.Release(); } inline void SaveFileRequest::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { @@ -3318,7 +3440,7 @@ inline void SaveFileRequest::set_allocated_path(std::string* value) { // bytes contents = 3; inline void SaveFileRequest::clear_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.ClearToEmpty(); } inline const std::string& SaveFileRequest::contents() const @@ -3329,8 +3451,7 @@ inline const std::string& SaveFileRequest::contents() const template inline PROTOBUF_ALWAYS_INLINE void SaveFileRequest::set_contents(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SaveFileRequest.contents) } @@ -3340,26 +3461,24 @@ inline std::string* SaveFileRequest::mutable_contents() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& SaveFileRequest::_internal_contents() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.contents_.Get(); } inline void SaveFileRequest::_internal_set_contents(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.Set(value, GetArena()); } inline std::string* SaveFileRequest::_internal_mutable_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.contents_.Mutable( GetArena()); } inline std::string* SaveFileRequest::release_contents() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SaveFileRequest.contents) return _impl_.contents_.Release(); } inline void SaveFileRequest::set_allocated_contents(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contents_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.contents_.IsDefault()) { @@ -3379,7 +3498,7 @@ inline bool SaveFileResponse::has_etag() const { return value; } inline void SaveFileResponse::clear_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.etag_.ClearToEmpty(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -3391,7 +3510,7 @@ inline const std::string& SaveFileResponse::etag() const template inline PROTOBUF_ALWAYS_INLINE void SaveFileResponse::set_etag(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SaveFileResponse.etag) @@ -3402,21 +3521,21 @@ inline std::string* SaveFileResponse::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& SaveFileResponse::_internal_etag() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.etag_.Get(); } inline void SaveFileResponse::_internal_set_etag(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; _impl_.etag_.Set(value, GetArena()); } inline std::string* SaveFileResponse::_internal_mutable_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] |= 0x00000001u; return _impl_.etag_.Mutable( GetArena()); } inline std::string* SaveFileResponse::release_etag() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SaveFileResponse.etag) if ((_impl_._has_bits_[0] & 0x00000001u) == 0) { return nullptr; @@ -3429,7 +3548,7 @@ inline std::string* SaveFileResponse::release_etag() { return released; } inline void SaveFileResponse::set_allocated_etag(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value != nullptr) { _impl_._has_bits_[0] |= 0x00000001u; } else { @@ -3450,7 +3569,7 @@ inline void SaveFileResponse::set_allocated_etag(std::string* value) { // string old_path = 1; inline void MoveItemRequest::clear_old_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.old_path_.ClearToEmpty(); } inline const std::string& MoveItemRequest::old_path() const @@ -3461,8 +3580,7 @@ inline const std::string& MoveItemRequest::old_path() const template inline PROTOBUF_ALWAYS_INLINE void MoveItemRequest::set_old_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.old_path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path) } @@ -3472,26 +3590,24 @@ inline std::string* MoveItemRequest::mutable_old_path() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& MoveItemRequest::_internal_old_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.old_path_.Get(); } inline void MoveItemRequest::_internal_set_old_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.old_path_.Set(value, GetArena()); } inline std::string* MoveItemRequest::_internal_mutable_old_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.old_path_.Mutable( GetArena()); } inline std::string* MoveItemRequest::release_old_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path) return _impl_.old_path_.Release(); } inline void MoveItemRequest::set_allocated_old_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.old_path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.old_path_.IsDefault()) { @@ -3503,7 +3619,7 @@ inline void MoveItemRequest::set_allocated_old_path(std::string* value) { // string new_path = 2; inline void MoveItemRequest::clear_new_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.new_path_.ClearToEmpty(); } inline const std::string& MoveItemRequest::new_path() const @@ -3514,8 +3630,7 @@ inline const std::string& MoveItemRequest::new_path() const template inline PROTOBUF_ALWAYS_INLINE void MoveItemRequest::set_new_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.new_path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path) } @@ -3525,26 +3640,24 @@ inline std::string* MoveItemRequest::mutable_new_path() ABSL_ATTRIBUTE_LIFETIME_ return _s; } inline const std::string& MoveItemRequest::_internal_new_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.new_path_.Get(); } inline void MoveItemRequest::_internal_set_new_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.new_path_.Set(value, GetArena()); } inline std::string* MoveItemRequest::_internal_mutable_new_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.new_path_.Mutable( GetArena()); } inline std::string* MoveItemRequest::release_new_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path) return _impl_.new_path_.Release(); } inline void MoveItemRequest::set_allocated_new_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.new_path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.new_path_.IsDefault()) { @@ -3556,7 +3669,7 @@ inline void MoveItemRequest::set_allocated_new_path(std::string* value) { // bool allow_overwrite = 3; inline void MoveItemRequest::clear_allow_overwrite() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.allow_overwrite_ = false; } inline bool MoveItemRequest::allow_overwrite() const { @@ -3568,12 +3681,11 @@ inline void MoveItemRequest::set_allow_overwrite(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MoveItemRequest.allow_overwrite) } inline bool MoveItemRequest::_internal_allow_overwrite() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.allow_overwrite_; } inline void MoveItemRequest::_internal_set_allow_overwrite(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.allow_overwrite_ = value; } @@ -3587,7 +3699,7 @@ inline void MoveItemRequest::_internal_set_allow_overwrite(bool value) { // string path = 1; inline void CreateDirectoryRequest::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& CreateDirectoryRequest::path() const @@ -3598,8 +3710,7 @@ inline const std::string& CreateDirectoryRequest::path() const template inline PROTOBUF_ALWAYS_INLINE void CreateDirectoryRequest::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path) } @@ -3609,26 +3720,24 @@ inline std::string* CreateDirectoryRequest::mutable_path() ABSL_ATTRIBUTE_LIFETI return _s; } inline const std::string& CreateDirectoryRequest::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void CreateDirectoryRequest::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* CreateDirectoryRequest::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* CreateDirectoryRequest::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path) return _impl_.path_.Release(); } inline void CreateDirectoryRequest::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { @@ -3648,7 +3757,7 @@ inline void CreateDirectoryRequest::set_allocated_path(std::string* value) { // string path = 1; inline void DeleteItemRequest::clear_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.ClearToEmpty(); } inline const std::string& DeleteItemRequest::path() const @@ -3659,8 +3768,7 @@ inline const std::string& DeleteItemRequest::path() const template inline PROTOBUF_ALWAYS_INLINE void DeleteItemRequest::set_path(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.DeleteItemRequest.path) } @@ -3670,26 +3778,24 @@ inline std::string* DeleteItemRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BO return _s; } inline const std::string& DeleteItemRequest::_internal_path() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.path_.Get(); } inline void DeleteItemRequest::_internal_set_path(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.Set(value, GetArena()); } inline std::string* DeleteItemRequest::_internal_mutable_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.path_.Mutable( GetArena()); } inline std::string* DeleteItemRequest::release_path() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DeleteItemRequest.path) return _impl_.path_.Release(); } inline void DeleteItemRequest::set_allocated_path(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.path_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.path_.IsDefault()) { diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc index 045459b15f0..690522a6519 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/table.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/table.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -37,7 +40,13 @@ inline constexpr UpdateByWindowScale_UpdateByWindowTime::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTime::UpdateByWindowScale_UpdateByWindowTime(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal() {} @@ -56,7 +65,13 @@ inline constexpr UpdateByWindowScale_UpdateByWindowTicks::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTicks::UpdateByWindowScale_UpdateByWindowTicks(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal() {} @@ -67,8 +82,14 @@ struct UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal _UpdateByWindowScale_UpdateByWindowTicks_default_instance_; - template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal() {} @@ -79,8 +100,14 @@ struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFil PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_; - template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal() {} @@ -91,8 +118,14 @@ struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCum PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_; - template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal() {} @@ -103,8 +136,14 @@ struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCum PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_; - template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal() {} @@ -115,8 +154,14 @@ struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCum PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_; - template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal() {} @@ -135,7 +180,13 @@ inline constexpr UpdateByDeltaOptions::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByDeltaOptions::UpdateByDeltaOptions(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByDeltaOptionsDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByDeltaOptionsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByDeltaOptionsDefaultTypeInternal() {} @@ -158,7 +209,13 @@ inline constexpr SortDescriptor::Impl_::Impl_( template PROTOBUF_CONSTEXPR SortDescriptor::SortDescriptor(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SortDescriptorDefaultTypeInternal { PROTOBUF_CONSTEXPR SortDescriptorDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SortDescriptorDefaultTypeInternal() {} @@ -177,7 +234,13 @@ inline constexpr SeekRowResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR SeekRowResponse::SeekRowResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SeekRowResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR SeekRowResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SeekRowResponseDefaultTypeInternal() {} @@ -197,7 +260,13 @@ inline constexpr RunChartDownsampleRequest_ZoomRange::Impl_::Impl_( template PROTOBUF_CONSTEXPR RunChartDownsampleRequest_ZoomRange::RunChartDownsampleRequest_ZoomRange(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal { PROTOBUF_CONSTEXPR RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal() {} @@ -218,7 +287,13 @@ inline constexpr Reference::Impl_::Impl_( template PROTOBUF_CONSTEXPR Reference::Reference(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ReferenceDefaultTypeInternal { PROTOBUF_CONSTEXPR ReferenceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ReferenceDefaultTypeInternal() {} @@ -238,7 +313,13 @@ inline constexpr MathContext::Impl_::Impl_( template PROTOBUF_CONSTEXPR MathContext::MathContext(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MathContextDefaultTypeInternal { PROTOBUF_CONSTEXPR MathContextDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MathContextDefaultTypeInternal() {} @@ -258,7 +339,13 @@ inline constexpr Literal::Impl_::Impl_( template PROTOBUF_CONSTEXPR Literal::Literal(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct LiteralDefaultTypeInternal { PROTOBUF_CONSTEXPR LiteralDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~LiteralDefaultTypeInternal() {} @@ -269,8 +356,14 @@ struct LiteralDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 LiteralDefaultTypeInternal _Literal_default_instance_; - template -PROTOBUF_CONSTEXPR ExportedTableUpdatesRequest::ExportedTableUpdatesRequest(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR ExportedTableUpdatesRequest::ExportedTableUpdatesRequest(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct ExportedTableUpdatesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportedTableUpdatesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportedTableUpdatesRequestDefaultTypeInternal() {} @@ -289,7 +382,13 @@ inline constexpr CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::Impl_ template PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal() {} @@ -300,8 +399,14 @@ struct CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeIntern PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal _CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_; - template -PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal() {} @@ -312,8 +417,14 @@ struct CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInter PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal _CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_; - template -PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTableKind_Blink(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTableKind_Blink(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal() {} @@ -338,7 +449,13 @@ inline constexpr ComboAggregateRequest_Aggregate::Impl_::Impl_( template PROTOBUF_CONSTEXPR ComboAggregateRequest_Aggregate::ComboAggregateRequest_Aggregate(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ComboAggregateRequest_AggregateDefaultTypeInternal { PROTOBUF_CONSTEXPR ComboAggregateRequest_AggregateDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ComboAggregateRequest_AggregateDefaultTypeInternal() {} @@ -359,7 +476,13 @@ inline constexpr Aggregation_AggregationRowKey::Impl_::Impl_( template PROTOBUF_CONSTEXPR Aggregation_AggregationRowKey::Aggregation_AggregationRowKey(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct Aggregation_AggregationRowKeyDefaultTypeInternal { PROTOBUF_CONSTEXPR Aggregation_AggregationRowKeyDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~Aggregation_AggregationRowKeyDefaultTypeInternal() {} @@ -381,7 +504,13 @@ inline constexpr Aggregation_AggregationPartition::Impl_::Impl_( template PROTOBUF_CONSTEXPR Aggregation_AggregationPartition::Aggregation_AggregationPartition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct Aggregation_AggregationPartitionDefaultTypeInternal { PROTOBUF_CONSTEXPR Aggregation_AggregationPartitionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~Aggregation_AggregationPartitionDefaultTypeInternal() {} @@ -402,7 +531,13 @@ inline constexpr Aggregation_AggregationCount::Impl_::Impl_( template PROTOBUF_CONSTEXPR Aggregation_AggregationCount::Aggregation_AggregationCount(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct Aggregation_AggregationCountDefaultTypeInternal { PROTOBUF_CONSTEXPR Aggregation_AggregationCountDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~Aggregation_AggregationCountDefaultTypeInternal() {} @@ -423,7 +558,13 @@ inline constexpr AggSpec_AggSpecWeighted::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecWeighted::AggSpec_AggSpecWeighted(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecWeightedDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecWeightedDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecWeightedDefaultTypeInternal() {} @@ -434,8 +575,14 @@ struct AggSpec_AggSpecWeightedDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecWeightedDefaultTypeInternal _AggSpec_AggSpecWeighted_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecVar::AggSpec_AggSpecVar(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecVar::AggSpec_AggSpecVar(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecVarDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecVarDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecVarDefaultTypeInternal() {} @@ -454,7 +601,13 @@ inline constexpr AggSpec_AggSpecTDigest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecTDigest::AggSpec_AggSpecTDigest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecTDigestDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecTDigestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecTDigestDefaultTypeInternal() {} @@ -465,8 +618,14 @@ struct AggSpec_AggSpecTDigestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecTDigestDefaultTypeInternal _AggSpec_AggSpecTDigest_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecSum::AggSpec_AggSpecSum(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecSum::AggSpec_AggSpecSum(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecSumDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecSumDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecSumDefaultTypeInternal() {} @@ -477,8 +636,14 @@ struct AggSpec_AggSpecSumDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecSumDefaultTypeInternal _AggSpec_AggSpecSum_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecStd::AggSpec_AggSpecStd(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecStd::AggSpec_AggSpecStd(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecStdDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecStdDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecStdDefaultTypeInternal() {} @@ -499,7 +664,13 @@ inline constexpr AggSpec_AggSpecSortedColumn::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedColumn::AggSpec_AggSpecSortedColumn(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecSortedColumnDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedColumnDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecSortedColumnDefaultTypeInternal() {} @@ -519,7 +690,13 @@ inline constexpr AggSpec_AggSpecPercentile::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecPercentile::AggSpec_AggSpecPercentile(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecPercentileDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecPercentileDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecPercentileDefaultTypeInternal() {} @@ -539,7 +716,13 @@ inline constexpr AggSpec_AggSpecNonUniqueSentinel::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecNonUniqueSentinel::AggSpec_AggSpecNonUniqueSentinel(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal() {} @@ -550,8 +733,14 @@ struct AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal _AggSpec_AggSpecNonUniqueSentinel_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecMin::AggSpec_AggSpecMin(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecMin::AggSpec_AggSpecMin(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecMinDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecMinDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecMinDefaultTypeInternal() {} @@ -570,7 +759,13 @@ inline constexpr AggSpec_AggSpecMedian::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecMedian::AggSpec_AggSpecMedian(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecMedianDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecMedianDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecMedianDefaultTypeInternal() {} @@ -581,8 +776,14 @@ struct AggSpec_AggSpecMedianDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecMedianDefaultTypeInternal _AggSpec_AggSpecMedian_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecMax::AggSpec_AggSpecMax(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecMax::AggSpec_AggSpecMax(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecMaxDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecMaxDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecMaxDefaultTypeInternal() {} @@ -593,8 +794,14 @@ struct AggSpec_AggSpecMaxDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecMaxDefaultTypeInternal _AggSpec_AggSpecMax_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecLast::AggSpec_AggSpecLast(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecLast::AggSpec_AggSpecLast(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecLastDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecLastDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecLastDefaultTypeInternal() {} @@ -605,8 +812,14 @@ struct AggSpec_AggSpecLastDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecLastDefaultTypeInternal _AggSpec_AggSpecLast_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecGroup::AggSpec_AggSpecGroup(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecGroup::AggSpec_AggSpecGroup(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecGroupDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecGroupDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecGroupDefaultTypeInternal() {} @@ -617,8 +830,14 @@ struct AggSpec_AggSpecGroupDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecGroupDefaultTypeInternal _AggSpec_AggSpecGroup_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecFreezeDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecFreezeDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecFreezeDefaultTypeInternal() {} @@ -642,7 +861,13 @@ inline constexpr AggSpec_AggSpecFormula::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecFormula::AggSpec_AggSpecFormula(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecFormulaDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecFormulaDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecFormulaDefaultTypeInternal() {} @@ -653,8 +878,14 @@ struct AggSpec_AggSpecFormulaDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecFormulaDefaultTypeInternal _AggSpec_AggSpecFormula_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecFirst::AggSpec_AggSpecFirst(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecFirst::AggSpec_AggSpecFirst(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecFirstDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecFirstDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecFirstDefaultTypeInternal() {} @@ -673,7 +904,13 @@ inline constexpr AggSpec_AggSpecDistinct::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecDistinct::AggSpec_AggSpecDistinct(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecDistinctDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecDistinctDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecDistinctDefaultTypeInternal() {} @@ -692,7 +929,13 @@ inline constexpr AggSpec_AggSpecCountDistinct::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecCountDistinct::AggSpec_AggSpecCountDistinct(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecCountDistinctDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecCountDistinctDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecCountDistinctDefaultTypeInternal() {} @@ -703,8 +946,14 @@ struct AggSpec_AggSpecCountDistinctDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecCountDistinctDefaultTypeInternal _AggSpec_AggSpecCountDistinct_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecAvg::AggSpec_AggSpecAvg(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecAvg::AggSpec_AggSpecAvg(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecAvgDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecAvgDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecAvgDefaultTypeInternal() {} @@ -724,7 +973,13 @@ inline constexpr AggSpec_AggSpecApproximatePercentile::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecApproximatePercentile::AggSpec_AggSpecApproximatePercentile(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecApproximatePercentileDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecApproximatePercentileDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecApproximatePercentileDefaultTypeInternal() {} @@ -735,8 +990,14 @@ struct AggSpec_AggSpecApproximatePercentileDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecApproximatePercentileDefaultTypeInternal _AggSpec_AggSpecApproximatePercentile_default_instance_; - template -PROTOBUF_CONSTEXPR AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum(::_pbi::ConstantInitialized) {} + template +PROTOBUF_CONSTEXPR AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum(::_pbi::ConstantInitialized) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(_class_data_.base()){} +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::internal::ZeroFieldsBase() { +} +#endif // PROTOBUF_CUSTOM_VTABLE struct AggSpec_AggSpecAbsSumDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecAbsSumDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecAbsSumDefaultTypeInternal() {} @@ -756,7 +1017,13 @@ inline constexpr Value::Impl_::Impl_( template PROTOBUF_CONSTEXPR Value::Value(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ValueDefaultTypeInternal { PROTOBUF_CONSTEXPR ValueDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ValueDefaultTypeInternal() {} @@ -776,7 +1043,13 @@ inline constexpr UpdateByWindowScale::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByWindowScale::UpdateByWindowScale(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByWindowScaleDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByWindowScaleDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByWindowScaleDefaultTypeInternal() {} @@ -801,7 +1074,13 @@ inline constexpr UpdateByRequest_UpdateByOptions::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOptions::UpdateByRequest_UpdateByOptions(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOptionsDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOptionsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOptionsDefaultTypeInternal() {} @@ -820,7 +1099,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal() {} @@ -844,7 +1129,13 @@ inline constexpr UpdateByEmOptions::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByEmOptions::UpdateByEmOptions(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByEmOptionsDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByEmOptionsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByEmOptionsDefaultTypeInternal() {} @@ -867,7 +1158,13 @@ inline constexpr TimeTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR TimeTableRequest::TimeTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TimeTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR TimeTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TimeTableRequestDefaultTypeInternal() {} @@ -887,7 +1184,13 @@ inline constexpr TableReference::Impl_::Impl_( template PROTOBUF_CONSTEXPR TableReference::TableReference(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TableReferenceDefaultTypeInternal { PROTOBUF_CONSTEXPR TableReferenceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TableReferenceDefaultTypeInternal() {} @@ -914,7 +1217,13 @@ inline constexpr SeekRowRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SeekRowRequest::SeekRowRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SeekRowRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SeekRowRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SeekRowRequestDefaultTypeInternal() {} @@ -936,7 +1245,13 @@ inline constexpr SearchCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR SearchCondition::SearchCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SearchConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR SearchConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SearchConditionDefaultTypeInternal() {} @@ -960,7 +1275,13 @@ inline constexpr MatchesCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR MatchesCondition::MatchesCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MatchesConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR MatchesConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MatchesConditionDefaultTypeInternal() {} @@ -979,7 +1300,13 @@ inline constexpr IsNullCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR IsNullCondition::IsNullCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct IsNullConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR IsNullConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~IsNullConditionDefaultTypeInternal() {} @@ -1002,7 +1329,13 @@ inline constexpr ExportedTableUpdateMessage::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExportedTableUpdateMessage::ExportedTableUpdateMessage(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExportedTableUpdateMessageDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportedTableUpdateMessageDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportedTableUpdateMessageDefaultTypeInternal() {} @@ -1022,7 +1355,13 @@ inline constexpr EmptyTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR EmptyTableRequest::EmptyTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct EmptyTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR EmptyTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~EmptyTableRequestDefaultTypeInternal() {} @@ -1042,7 +1381,13 @@ inline constexpr CreateInputTableRequest_InputTableKind::Impl_::Impl_( template PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind::CreateInputTableRequest_InputTableKind(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CreateInputTableRequest_InputTableKindDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKindDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateInputTableRequest_InputTableKindDefaultTypeInternal() {} @@ -1066,7 +1411,13 @@ inline constexpr ContainsCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR ContainsCondition::ContainsCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ContainsConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR ContainsConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ContainsConditionDefaultTypeInternal() {} @@ -1086,7 +1437,13 @@ inline constexpr AggSpec_AggSpecUnique::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecUnique::AggSpec_AggSpecUnique(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecUniqueDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecUniqueDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecUniqueDefaultTypeInternal() {} @@ -1105,7 +1462,13 @@ inline constexpr AggSpec_AggSpecSorted::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec_AggSpecSorted::AggSpec_AggSpecSorted(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpec_AggSpecSortedDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpec_AggSpecSortedDefaultTypeInternal() {} @@ -1128,7 +1491,13 @@ inline constexpr WhereInRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR WhereInRequest::WhereInRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct WhereInRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR WhereInRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~WhereInRequestDefaultTypeInternal() {} @@ -1151,7 +1520,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal() {} @@ -1171,7 +1546,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal() {} @@ -1191,7 +1572,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal() {} @@ -1211,7 +1598,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal() {} @@ -1231,7 +1624,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal() {} @@ -1251,7 +1650,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal() {} @@ -1271,7 +1676,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal() {} @@ -1297,7 +1708,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal() {} @@ -1317,7 +1734,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal() {} @@ -1337,7 +1760,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal() {} @@ -1357,7 +1786,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal() {} @@ -1377,7 +1812,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal() {} @@ -1397,7 +1838,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal() {} @@ -1417,7 +1864,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal() {} @@ -1437,7 +1890,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_U template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal() {} @@ -1458,7 +1917,13 @@ inline constexpr UnstructuredFilterTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR UnstructuredFilterTableRequest::UnstructuredFilterTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UnstructuredFilterTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR UnstructuredFilterTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UnstructuredFilterTableRequestDefaultTypeInternal() {} @@ -1480,7 +1945,13 @@ inline constexpr UngroupRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR UngroupRequest::UngroupRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UngroupRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR UngroupRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UngroupRequestDefaultTypeInternal() {} @@ -1501,7 +1972,13 @@ inline constexpr SortTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SortTableRequest::SortTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SortTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SortTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SortTableRequestDefaultTypeInternal() {} @@ -1526,7 +2003,13 @@ inline constexpr SnapshotWhenTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SnapshotWhenTableRequest::SnapshotWhenTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SnapshotWhenTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SnapshotWhenTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SnapshotWhenTableRequestDefaultTypeInternal() {} @@ -1546,7 +2029,13 @@ inline constexpr SnapshotTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SnapshotTableRequest::SnapshotTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SnapshotTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SnapshotTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SnapshotTableRequestDefaultTypeInternal() {} @@ -1567,7 +2056,13 @@ inline constexpr SelectOrUpdateRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SelectOrUpdateRequest::SelectOrUpdateRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SelectOrUpdateRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SelectOrUpdateRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SelectOrUpdateRequestDefaultTypeInternal() {} @@ -1588,7 +2083,13 @@ inline constexpr SelectDistinctRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR SelectDistinctRequest::SelectDistinctRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct SelectDistinctRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR SelectDistinctRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~SelectDistinctRequestDefaultTypeInternal() {} @@ -1614,7 +2115,13 @@ inline constexpr RunChartDownsampleRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR RunChartDownsampleRequest::RunChartDownsampleRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct RunChartDownsampleRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR RunChartDownsampleRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~RunChartDownsampleRequestDefaultTypeInternal() {} @@ -1637,7 +2144,13 @@ inline constexpr NaturalJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR NaturalJoinTablesRequest::NaturalJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct NaturalJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR NaturalJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~NaturalJoinTablesRequestDefaultTypeInternal() {} @@ -1658,7 +2171,13 @@ inline constexpr MultiJoinInput::Impl_::Impl_( template PROTOBUF_CONSTEXPR MultiJoinInput::MultiJoinInput(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MultiJoinInputDefaultTypeInternal { PROTOBUF_CONSTEXPR MultiJoinInputDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MultiJoinInputDefaultTypeInternal() {} @@ -1678,7 +2197,13 @@ inline constexpr MetaTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR MetaTableRequest::MetaTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MetaTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR MetaTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MetaTableRequestDefaultTypeInternal() {} @@ -1701,7 +2226,13 @@ inline constexpr MergeTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR MergeTablesRequest::MergeTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MergeTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR MergeTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MergeTablesRequestDefaultTypeInternal() {} @@ -1724,7 +2255,13 @@ inline constexpr LeftJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR LeftJoinTablesRequest::LeftJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct LeftJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR LeftJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~LeftJoinTablesRequestDefaultTypeInternal() {} @@ -1747,7 +2284,13 @@ inline constexpr InvokeCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR InvokeCondition::InvokeCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct InvokeConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR InvokeConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~InvokeConditionDefaultTypeInternal() {} @@ -1769,7 +2312,13 @@ inline constexpr InCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR InCondition::InCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct InConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR InConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~InConditionDefaultTypeInternal() {} @@ -1790,7 +2339,13 @@ inline constexpr HeadOrTailRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HeadOrTailRequest::HeadOrTailRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HeadOrTailRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HeadOrTailRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HeadOrTailRequestDefaultTypeInternal() {} @@ -1812,7 +2367,13 @@ inline constexpr HeadOrTailByRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR HeadOrTailByRequest::HeadOrTailByRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct HeadOrTailByRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR HeadOrTailByRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~HeadOrTailByRequestDefaultTypeInternal() {} @@ -1832,7 +2393,13 @@ inline constexpr FlattenRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR FlattenRequest::FlattenRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FlattenRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR FlattenRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FlattenRequestDefaultTypeInternal() {} @@ -1852,7 +2419,13 @@ inline constexpr FetchTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR FetchTableRequest::FetchTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FetchTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR FetchTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FetchTableRequestDefaultTypeInternal() {} @@ -1880,7 +2453,13 @@ inline constexpr ExportedTableCreationResponse::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExportedTableCreationResponse::ExportedTableCreationResponse(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExportedTableCreationResponseDefaultTypeInternal { PROTOBUF_CONSTEXPR ExportedTableCreationResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExportedTableCreationResponseDefaultTypeInternal() {} @@ -1903,7 +2482,13 @@ inline constexpr ExactJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ExactJoinTablesRequest::ExactJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ExactJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ExactJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ExactJoinTablesRequestDefaultTypeInternal() {} @@ -1924,7 +2509,13 @@ inline constexpr DropColumnsRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR DropColumnsRequest::DropColumnsRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct DropColumnsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR DropColumnsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~DropColumnsRequestDefaultTypeInternal() {} @@ -1948,7 +2539,13 @@ inline constexpr CrossJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CrossJoinTablesRequest::CrossJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CrossJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CrossJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CrossJoinTablesRequestDefaultTypeInternal() {} @@ -1970,7 +2567,13 @@ inline constexpr CreateInputTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR CreateInputTableRequest::CreateInputTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CreateInputTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR CreateInputTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CreateInputTableRequestDefaultTypeInternal() {} @@ -1992,7 +2595,13 @@ inline constexpr CompareCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR CompareCondition::CompareCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct CompareConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR CompareConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~CompareConditionDefaultTypeInternal() {} @@ -2015,7 +2624,13 @@ inline constexpr ComboAggregateRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ComboAggregateRequest::ComboAggregateRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ComboAggregateRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ComboAggregateRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ComboAggregateRequestDefaultTypeInternal() {} @@ -2039,7 +2654,13 @@ inline constexpr ColumnStatisticsRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ColumnStatisticsRequest::ColumnStatisticsRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ColumnStatisticsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ColumnStatisticsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ColumnStatisticsRequestDefaultTypeInternal() {} @@ -2063,7 +2684,13 @@ inline constexpr AsOfJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AsOfJoinTablesRequest::AsOfJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AsOfJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AsOfJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AsOfJoinTablesRequestDefaultTypeInternal() {} @@ -2083,7 +2710,13 @@ inline constexpr ApplyPreviewColumnsRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR ApplyPreviewColumnsRequest::ApplyPreviewColumnsRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ApplyPreviewColumnsRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR ApplyPreviewColumnsRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ApplyPreviewColumnsRequestDefaultTypeInternal() {} @@ -2109,7 +2742,13 @@ inline constexpr AjRajTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AjRajTablesRequest::AjRajTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AjRajTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AjRajTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AjRajTablesRequestDefaultTypeInternal() {} @@ -2129,7 +2768,13 @@ inline constexpr AggSpec::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggSpec::AggSpec(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggSpecDefaultTypeInternal { PROTOBUF_CONSTEXPR AggSpecDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggSpecDefaultTypeInternal() {} @@ -2149,7 +2794,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec:: template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal() {} @@ -2169,7 +2820,13 @@ inline constexpr MultiJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR MultiJoinTablesRequest::MultiJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct MultiJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR MultiJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~MultiJoinTablesRequestDefaultTypeInternal() {} @@ -2188,7 +2845,13 @@ inline constexpr AndCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR AndCondition::AndCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AndConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR AndConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AndConditionDefaultTypeInternal() {} @@ -2208,7 +2871,13 @@ inline constexpr Condition::Impl_::Impl_( template PROTOBUF_CONSTEXPR Condition::Condition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct ConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR ConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~ConditionDefaultTypeInternal() {} @@ -2227,7 +2896,13 @@ inline constexpr NotCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR NotCondition::NotCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct NotConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR NotConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~NotConditionDefaultTypeInternal() {} @@ -2246,7 +2921,13 @@ inline constexpr OrCondition::Impl_::Impl_( template PROTOBUF_CONSTEXPR OrCondition::OrCondition(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct OrConditionDefaultTypeInternal { PROTOBUF_CONSTEXPR OrConditionDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~OrConditionDefaultTypeInternal() {} @@ -2266,7 +2947,13 @@ inline constexpr Aggregation_AggregationColumns::Impl_::Impl_( template PROTOBUF_CONSTEXPR Aggregation_AggregationColumns::Aggregation_AggregationColumns(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct Aggregation_AggregationColumnsDefaultTypeInternal { PROTOBUF_CONSTEXPR Aggregation_AggregationColumnsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~Aggregation_AggregationColumnsDefaultTypeInternal() {} @@ -2288,7 +2975,13 @@ inline constexpr AggregateAllRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggregateAllRequest::AggregateAllRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggregateAllRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AggregateAllRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggregateAllRequestDefaultTypeInternal() {} @@ -2308,7 +3001,13 @@ inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn::UpdateByRequest_UpdateByOperation_UpdateByColumn(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal() {} @@ -2329,7 +3028,13 @@ inline constexpr FilterTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR FilterTableRequest::FilterTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct FilterTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR FilterTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~FilterTableRequestDefaultTypeInternal() {} @@ -2349,7 +3054,13 @@ inline constexpr Aggregation::Impl_::Impl_( template PROTOBUF_CONSTEXPR Aggregation::Aggregation(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggregationDefaultTypeInternal { PROTOBUF_CONSTEXPR AggregationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggregationDefaultTypeInternal() {} @@ -2369,7 +3080,13 @@ inline constexpr UpdateByRequest_UpdateByOperation::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation::UpdateByRequest_UpdateByOperation(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequest_UpdateByOperationDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequest_UpdateByOperationDefaultTypeInternal() {} @@ -2406,7 +3123,13 @@ inline constexpr RangeJoinTablesRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR RangeJoinTablesRequest::RangeJoinTablesRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct RangeJoinTablesRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR RangeJoinTablesRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~RangeJoinTablesRequestDefaultTypeInternal() {} @@ -2430,7 +3153,13 @@ inline constexpr AggregateRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR AggregateRequest::AggregateRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct AggregateRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR AggregateRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~AggregateRequestDefaultTypeInternal() {} @@ -2453,7 +3182,13 @@ inline constexpr UpdateByRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR UpdateByRequest::UpdateByRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct UpdateByRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR UpdateByRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~UpdateByRequestDefaultTypeInternal() {} @@ -2473,7 +3208,13 @@ inline constexpr BatchTableRequest_Operation::Impl_::Impl_( template PROTOBUF_CONSTEXPR BatchTableRequest_Operation::BatchTableRequest_Operation(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct BatchTableRequest_OperationDefaultTypeInternal { PROTOBUF_CONSTEXPR BatchTableRequest_OperationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BatchTableRequest_OperationDefaultTypeInternal() {} @@ -2492,7 +3233,13 @@ inline constexpr BatchTableRequest::Impl_::Impl_( template PROTOBUF_CONSTEXPR BatchTableRequest::BatchTableRequest(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct BatchTableRequestDefaultTypeInternal { PROTOBUF_CONSTEXPR BatchTableRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~BatchTableRequestDefaultTypeInternal() {} @@ -2508,1666 +3255,1666 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2ftable_2eproto[124]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[12]; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2ftable_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2ftable_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_.ref_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.success_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.error_info_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.schema_header_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.is_static_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.size_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_.result_id_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_.result_id_), - 0, - 1, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.export_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.size_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.update_failure_message_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_.size_), - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.result_id_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.blink_table_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.start_time_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.period_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.column_specs_), - 0, - 1, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _impl_.precision_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _impl_.rounding_mode_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks, _impl_.ticks_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_.column_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_.window_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_null_value_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_nan_value_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_null_time_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_negative_delta_time_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_zero_delta_time_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.big_value_context_), - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions, _impl_.null_behavior_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.use_redirection_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.chunk_capacity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.max_static_sparse_memory_overhead_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.maximum_load_factor_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.target_load_factor_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.math_context_), - 1, - 2, - 3, - 6, - 4, - 5, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_.options_), - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.forward_window_scale_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.forward_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.weight_column_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.reverse_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.forward_window_scale_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.formula_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.param_token_), - 0, - 1, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.spec_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.match_pairs_), - 0, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.options_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.operations_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.group_by_columns_), - 0, - 1, - 2, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.column_names_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.column_names_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.filters_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.num_rows_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.num_rows_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.group_by_column_specs_), - 0, - 1, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.null_fill_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.columns_to_ungroup_), - 0, - 1, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.source_ids_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.key_column_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_.source_id_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.base_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.trigger_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.initial_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.incremental_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.history_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.stamp_columns_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.columns_to_add_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.reserve_bits_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.columns_to_add_), - 0, - 1, - 2, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.columns_to_add_), - 0, - 1, - 2, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.columns_to_add_), - 0, - 1, - 2, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.columns_to_add_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.as_of_match_rule_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.exact_match_columns_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.as_of_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.columns_to_add_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.columns_to_match_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.columns_to_add_), - 0, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_.multi_join_inputs_), - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.exact_match_columns_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_start_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_start_rule_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.right_range_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_end_rule_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_end_column_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.aggregations_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_match_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.match_pairs_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.percentile_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.avg_median_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.aggregates_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.group_by_columns_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.force_combo_), - 0, - 1, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.spec_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.group_by_columns_), - 0, - 1, - 2, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_.percentile_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_.compression_), - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct, _impl_.count_nulls_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct, _impl_.include_nulls_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _impl_.formula_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _impl_.param_token_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian, _impl_.average_evenly_divided_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _impl_.percentile_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _impl_.average_evenly_divided_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted, _impl_.columns_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _impl_.compression_), - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_.include_nulls_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_.non_unique_sentinel_), - ~0u, - 0, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_.type_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted, _impl_.weight_column_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_.type_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.initial_groups_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.preserve_empty_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.aggregations_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.group_by_columns_), - 0, - 1, - 2, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_.spec_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_.match_pairs_), - 0, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount, _impl_.column_name_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey, _impl_.column_name_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _impl_.include_group_by_columns_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_.type_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.is_absolute_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.direction_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.sorts_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.filters_), - 0, - 1, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.starting_row_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.seek_value_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.insensitive_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.contains_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.is_backward_), - 0, - ~0u, - ~0u, - 1, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowResponse, _impl_.result_row_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Reference, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Reference, _impl_.column_name_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_.value_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_.data_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_.data_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AndCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AndCondition, _impl_.filters_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::OrCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::OrCondition, _impl_.filters_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _impl_.filter_), - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.operation_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.case_sensitivity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.lhs_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.rhs_), - ~0u, - ~0u, - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.target_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.candidates_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.case_sensitivity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.match_type_), - 0, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.method_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.target_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.arguments_), - ~0u, - 0, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _impl_.reference_), - 0, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.reference_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.regex_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.case_sensitivity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.match_type_), - 0, - ~0u, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.reference_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.search_string_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.case_sensitivity_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.match_type_), - 0, - ~0u, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _impl_.search_string_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _impl_.optional_references_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_.source_id_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_.source_id_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_), - 0, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.pixel_count_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.zoom_range_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.x_column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.y_column_names_), - 0, - 1, - ~0u, - 2, - ~0u, - ~0u, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _impl_.key_columns_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_.kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.result_id_), - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.kind_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.definition_), - 0, - ~0u, - ~0u, - 1, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.left_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.right_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.inverted_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.columns_to_match_), - 0, - 1, - 2, - ~0u, - ~0u, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.result_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.source_id_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.column_name_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.unique_value_limit_), - 0, - 1, - ~0u, - 2, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_._oneof_case_[0]), - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - ::_pbi::kInvalidFieldOffsetTag, - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_.op_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest, _impl_.ops_), +const ::uint32_t + TableStruct_deephaven_2fproto_2ftable_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_.ref_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.success_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.error_info_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.schema_header_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.is_static_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, _impl_.size_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FetchTableRequest, _impl_.result_id_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, _impl_.result_id_), + 0, + 1, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.export_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.size_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage, _impl_.update_failure_message_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::EmptyTableRequest, _impl_.size_), + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.result_id_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.blink_table_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.start_time_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_.period_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, _impl_.column_specs_), + 0, + 1, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _impl_.precision_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MathContext, _impl_.rounding_mode_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks, _impl_.ticks_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_.column_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_.window_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_null_value_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_nan_value_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_null_time_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_negative_delta_time_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.on_zero_delta_time_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions, _impl_.big_value_context_), + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions, _impl_.null_behavior_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.use_redirection_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.chunk_capacity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.max_static_sparse_memory_overhead_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.maximum_load_factor_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.target_load_factor_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions, _impl_.math_context_), + 1, + 2, + 3, + 6, + 4, + 5, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_.options_), + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.forward_window_scale_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.forward_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.weight_column_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.reverse_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.forward_window_scale_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.formula_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.param_token_), + 0, + 1, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.spec_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.match_pairs_), + 0, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.options_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.operations_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest, _impl_.group_by_columns_), + 0, + 1, + 2, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, _impl_.column_names_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::DropColumnsRequest, _impl_.column_names_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, _impl_.filters_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, _impl_.num_rows_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.num_rows_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, _impl_.group_by_column_specs_), + 0, + 1, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.null_fill_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UngroupRequest, _impl_.columns_to_ungroup_), + 0, + 1, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.source_ids_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MergeTablesRequest, _impl_.key_column_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, _impl_.source_id_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.base_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.trigger_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.initial_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.incremental_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.history_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, _impl_.stamp_columns_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.columns_to_add_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, _impl_.reserve_bits_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, _impl_.columns_to_add_), + 0, + 1, + 2, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, _impl_.columns_to_add_), + 0, + 1, + 2, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, _impl_.columns_to_add_), + 0, + 1, + 2, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.columns_to_add_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, _impl_.as_of_match_rule_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.exact_match_columns_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.as_of_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, _impl_.columns_to_add_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.columns_to_match_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinInput, _impl_.columns_to_add_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, _impl_.multi_join_inputs_), + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.exact_match_columns_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_start_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_start_rule_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.right_range_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_end_rule_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.left_end_column_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.aggregations_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, _impl_.range_match_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.match_pairs_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.percentile_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate, _impl_.avg_median_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.aggregates_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.group_by_columns_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, _impl_.force_combo_), + 0, + 1, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.spec_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateAllRequest, _impl_.group_by_columns_), + 0, + 1, + 2, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_.percentile_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile, _impl_.compression_), + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct, _impl_.count_nulls_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct, _impl_.include_nulls_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _impl_.formula_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula, _impl_.param_token_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian, _impl_.average_evenly_divided_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _impl_.percentile_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile, _impl_.average_evenly_divided_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted, _impl_.columns_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest, _impl_.compression_), + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_.include_nulls_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique, _impl_.non_unique_sentinel_), + ~0u, + 0, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_.type_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted, _impl_.weight_column_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_.type_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.initial_groups_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.preserve_empty_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.aggregations_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggregateRequest, _impl_.group_by_columns_), + 0, + 1, + 2, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_.spec_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns, _impl_.match_pairs_), + 0, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount, _impl_.column_name_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey, _impl_.column_name_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition, _impl_.include_group_by_columns_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_.type_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.is_absolute_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortDescriptor, _impl_.direction_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SortTableRequest, _impl_.sorts_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FilterTableRequest, _impl_.filters_), + 0, + 1, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.starting_row_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.seek_value_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.insensitive_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.contains_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowRequest, _impl_.is_backward_), + 0, + ~0u, + ~0u, + 1, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SeekRowResponse, _impl_.result_row_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Reference, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Reference, _impl_.column_name_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_.value_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_.data_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_.data_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AndCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AndCondition, _impl_.filters_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::OrCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::OrCondition, _impl_.filters_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::NotCondition, _impl_.filter_), + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.operation_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.case_sensitivity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.lhs_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CompareCondition, _impl_.rhs_), + ~0u, + ~0u, + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.target_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.candidates_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.case_sensitivity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InCondition, _impl_.match_type_), + 0, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.method_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.target_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::InvokeCondition, _impl_.arguments_), + ~0u, + 0, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::IsNullCondition, _impl_.reference_), + 0, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.reference_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.regex_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.case_sensitivity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MatchesCondition, _impl_.match_type_), + 0, + ~0u, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.reference_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.search_string_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.case_sensitivity_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ContainsCondition, _impl_.match_type_), + 0, + ~0u, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _impl_.search_string_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::SearchCondition, _impl_.optional_references_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::FlattenRequest, _impl_.source_id_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::MetaTableRequest, _impl_.source_id_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.pixel_count_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.zoom_range_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.x_column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, _impl_.y_column_names_), + 0, + 1, + ~0u, + 2, + ~0u, + ~0u, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _impl_.key_columns_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_.kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.result_id_), + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.kind_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_.definition_), + 0, + ~0u, + ~0u, + 1, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.left_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.right_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.inverted_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::WhereInRequest, _impl_.columns_to_match_), + 0, + 1, + 2, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.result_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.source_id_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.column_name_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, _impl_.unique_value_limit_), + 0, + 1, + ~0u, + 2, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_._oneof_case_[0]), + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + ::_pbi::kInvalidFieldOffsetTag, + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_.op_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest, _impl_.ops_), }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::TableReference)}, {11, 25, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse)}, {31, 41, -1, sizeof(::io::deephaven::proto::backplane::grpc::FetchTableRequest)}, @@ -4293,7 +5040,6 @@ static const ::_pbi::MigrationSchema {1591, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation)}, {1641, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::BatchTableRequest)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_ExportedTableCreationResponse_default_instance_._instance, @@ -4420,7 +5166,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_BatchTableRequest_Operation_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_BatchTableRequest_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2ftable_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2ftable_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\033deephaven/proto/table.proto\022!io.deepha" "ven.proto.backplane.grpc\032\034deephaven/prot" "o/ticket.proto\"l\n\016TableReference\022;\n\006tick" @@ -5312,7 +6059,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2 &::descriptor_table_deephaven_2fproto_2fticket_2eproto, }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2ftable_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2ftable_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2ftable_2eproto = { false, false, 35399, @@ -5325,28 +6072,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2ftable_2eproto schemas, file_default_instances, TableStruct_deephaven_2fproto_2ftable_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2ftable_2eproto, file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto, file_level_service_descriptors_deephaven_2fproto_2ftable_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2ftable_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2ftable_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2ftable_2eproto(&descriptor_table_deephaven_2fproto_2ftable_2eproto); namespace io { namespace deephaven { namespace proto { @@ -5573,13 +6301,9 @@ bool MatchType_IsValid(int value) { class TableReference::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& ticket(const TableReference* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& TableReference::_Internal::ticket(const TableReference* msg) { - return *msg->_impl_.ref_.ticket_; -} void TableReference::set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* ticket) { ::google::protobuf::Arena* message_arena = GetArena(); clear_ref(); @@ -5594,22 +6318,28 @@ void TableReference::set_allocated_ticket(::io::deephaven::proto::backplane::grp // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TableReference.ticket) } void TableReference::clear_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (ref_case() == kTicket) { if (GetArena() == nullptr) { delete _impl_.ref_.ticket_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.ref_.ticket_); } clear_has_ref(); } } TableReference::TableReference(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TableReference) } inline PROTOBUF_NDEBUG_INLINE TableReference::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TableReference& from_msg) : ref_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -5617,17 +6347,21 @@ inline PROTOBUF_NDEBUG_INLINE TableReference::Impl_::Impl_( TableReference::TableReference( ::google::protobuf::Arena* arena, const TableReference& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TableReference* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (ref_case()) { case REF_NOT_SET: break; case kTicket: - _impl_.ref_.ticket_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ref_.ticket_); + _impl_.ref_.ticket_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ref_.ticket_); break; case kBatchOffset: _impl_.ref_.batch_offset_ = from._impl_.ref_.batch_offset_; @@ -5661,11 +6395,13 @@ inline void TableReference::SharedDtor() { void TableReference::clear_ref() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TableReference) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (ref_case()) { case kTicket: { if (GetArena() == nullptr) { delete _impl_.ref_.ticket_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.ref_.ticket_); } break; } @@ -5681,24 +6417,34 @@ void TableReference::clear_ref() { } -PROTOBUF_NOINLINE void TableReference::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TableReference) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_ref(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TableReference::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TableReference::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TableReference_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TableReference::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TableReference::ByteSizeLong, + &TableReference::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TableReference, _impl_._cached_size_), + false, + }, + &TableReference::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TableReference::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 2, 1, 0, 2> TableReference::_table_ = { { @@ -5711,8 +6457,12 @@ const ::_pbi::TcParseTable<0, 2, 1, 0, 2> TableReference::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TableReference_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -5730,94 +6480,127 @@ const ::_pbi::TcParseTable<0, 2, 1, 0, 2> TableReference::_table_ = { }}, }; -::uint8_t* TableReference::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TableReference) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (ref_case()) { - case kTicket: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::ticket(this), - _Internal::ticket(this).GetCachedSize(), target, stream); - break; - } - case kBatchOffset: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 2, this->_internal_batch_offset(), target); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TableReference) - return target; -} - -::size_t TableReference::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TableReference) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TableReference::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TableReference) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (ref_case()) { - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - case kTicket: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.ref_.ticket_); - break; - } - // sint32 batch_offset = 2; - case kBatchOffset: { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_batch_offset()); - break; - } - case REF_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TableReference::_class_data_ = { - TableReference::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TableReference::GetClassData() const { - return &_class_data_; + clear_ref(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TableReference::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TableReference::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TableReference& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TableReference::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TableReference& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TableReference) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.ref_case()) { + case kTicket: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.ref_.ticket_, this_._impl_.ref_.ticket_->GetCachedSize(), target, + stream); + break; + } + case kBatchOffset: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 2, this_._internal_batch_offset(), target); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TableReference) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TableReference::ByteSizeLong(const MessageLite& base) { + const TableReference& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TableReference::ByteSizeLong() const { + const TableReference& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TableReference) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.ref_case()) { + // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + case kTicket: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.ref_.ticket_); + break; + } + // sint32 batch_offset = 2; + case kBatchOffset: { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_batch_offset()); + break; + } + case REF_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TableReference::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TableReference) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.ref_case()) { - case kTicket: { - _this->_internal_mutable_ticket()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_ticket()); - break; - } - case kBatchOffset: { - _this->_internal_set_batch_offset(from._internal_batch_offset()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_ref(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case REF_NOT_SET: { - break; + + switch (oneof_from_case) { + case kTicket: { + if (oneof_needs_init) { + _this->_impl_.ref_.ticket_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ref_.ticket_); + } else { + _this->_impl_.ref_.ticket_->MergeFrom(from._internal_ticket()); + } + break; + } + case kBatchOffset: { + _this->_impl_.ref_.batch_offset_ = from._impl_.ref_.batch_offset_; + break; + } + case REF_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -5830,13 +6613,7 @@ void TableReference::CopyFrom(const TableReference& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TableReference::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TableReference::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TableReference::InternalSwap(TableReference* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -5845,34 +6622,30 @@ void TableReference::InternalSwap(TableReference* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TableReference::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExportedTableCreationResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TableReference& result_id(const ExportedTableCreationResponse* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TableReference& ExportedTableCreationResponse::_Internal::result_id(const ExportedTableCreationResponse* msg) { - return *msg->_impl_.result_id_; -} ExportedTableCreationResponse::ExportedTableCreationResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) } inline PROTOBUF_NDEBUG_INLINE ExportedTableCreationResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, error_info_(arena, from.error_info_), @@ -5881,16 +6654,20 @@ inline PROTOBUF_NDEBUG_INLINE ExportedTableCreationResponse::Impl_::Impl_( ExportedTableCreationResponse::ExportedTableCreationResponse( ::google::protobuf::Arena* arena, const ExportedTableCreationResponse& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportedTableCreationResponse* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.result_id_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, size_), reinterpret_cast(&from._impl_) + @@ -5930,34 +6707,34 @@ inline void ExportedTableCreationResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExportedTableCreationResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.error_info_.ClearToEmpty(); - _impl_.schema_header_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - ::memset(&_impl_.size_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.is_static_) - - reinterpret_cast(&_impl_.size_)) + sizeof(_impl_.is_static_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExportedTableCreationResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportedTableCreationResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExportedTableCreationResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportedTableCreationResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExportedTableCreationResponse::ByteSizeLong, + &ExportedTableCreationResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_._cached_size_), + false, + }, + &ExportedTableCreationResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportedTableCreationResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 1, 82, 2> ExportedTableCreationResponse::_table_ = { { @@ -5970,8 +6747,12 @@ const ::_pbi::TcParseTable<3, 6, 1, 82, 2> ExportedTableCreationResponse::_table 6, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExportedTableCreationResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; @@ -6023,122 +6804,153 @@ const ::_pbi::TcParseTable<3, 6, 1, 82, 2> ExportedTableCreationResponse::_table }}, }; -::uint8_t* ExportedTableCreationResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) +PROTOBUF_NOINLINE void ExportedTableCreationResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + _impl_.error_info_.ClearToEmpty(); + _impl_.schema_header_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // bool success = 2; - if (this->_internal_success() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_success(), target); - } - - // string error_info = 3; - if (!this->_internal_error_info().empty()) { - const std::string& _s = this->_internal_error_info(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // bytes schema_header = 4; - if (!this->_internal_schema_header().empty()) { - const std::string& _s = this->_internal_schema_header(); - target = stream->WriteBytesMaybeAliased(4, _s, target); - } - - // bool is_static = 5; - if (this->_internal_is_static() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_is_static(), target); - } - - // sint64 size = 6 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 6, this->_internal_size(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) - return target; -} - -::size_t ExportedTableCreationResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // string error_info = 3; - if (!this->_internal_error_info().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_error_info()); - } - - // bytes schema_header = 4; - if (!this->_internal_schema_header().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_schema_header()); - } - - // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); - } - - // sint64 size = 6 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_size()); - } - - // bool success = 2; - if (this->_internal_success() != 0) { - total_size += 2; - } - - // bool is_static = 5; - if (this->_internal_is_static() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExportedTableCreationResponse::_class_data_ = { - ExportedTableCreationResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExportedTableCreationResponse::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.size_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.is_static_) - + reinterpret_cast(&_impl_.size_)) + sizeof(_impl_.is_static_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExportedTableCreationResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExportedTableCreationResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExportedTableCreationResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExportedTableCreationResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExportedTableCreationResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // bool success = 2; + if (this_._internal_success() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_success(), target); + } + + // string error_info = 3; + if (!this_._internal_error_info().empty()) { + const std::string& _s = this_._internal_error_info(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // bytes schema_header = 4; + if (!this_._internal_schema_header().empty()) { + const std::string& _s = this_._internal_schema_header(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bool is_static = 5; + if (this_._internal_is_static() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_is_static(), target); + } + + // sint64 size = 6 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 6, this_._internal_size(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExportedTableCreationResponse::ByteSizeLong(const MessageLite& base) { + const ExportedTableCreationResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExportedTableCreationResponse::ByteSizeLong() const { + const ExportedTableCreationResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string error_info = 3; + if (!this_._internal_error_info().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_error_info()); + } + // bytes schema_header = 4; + if (!this_._internal_schema_header().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_schema_header()); + } + } + { + // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + { + // sint64 size = 6 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_size()); + } + // bool success = 2; + if (this_._internal_success() != 0) { + total_size += 2; + } + // bool is_static = 5; + if (this_._internal_is_static() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExportedTableCreationResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -6150,19 +6962,26 @@ void ExportedTableCreationResponse::MergeImpl(::google::protobuf::Message& to_ms if (!from._internal_schema_header().empty()) { _this->_internal_set_schema_header(from._internal_schema_header()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (from._internal_size() != 0) { - _this->_internal_set_size(from._internal_size()); + _this->_impl_.size_ = from._impl_.size_; } if (from._internal_success() != 0) { - _this->_internal_set_success(from._internal_success()); + _this->_impl_.success_ = from._impl_.success_; } if (from._internal_is_static() != 0) { - _this->_internal_set_is_static(from._internal_is_static()); + _this->_impl_.is_static_ = from._impl_.is_static_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -6173,13 +6992,7 @@ void ExportedTableCreationResponse::CopyFrom(const ExportedTableCreationResponse MergeFrom(from); } -PROTOBUF_NOINLINE bool ExportedTableCreationResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExportedTableCreationResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExportedTableCreationResponse::InternalSwap(ExportedTableCreationResponse* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -6197,65 +7010,58 @@ void ExportedTableCreationResponse::InternalSwap(ExportedTableCreationResponse* } ::google::protobuf::Metadata ExportedTableCreationResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FetchTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const FetchTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const FetchTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TableReference& FetchTableRequest::_Internal::source_id(const FetchTableRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& FetchTableRequest::_Internal::result_id(const FetchTableRequest* msg) { - return *msg->_impl_.result_id_; -} void FetchTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } FetchTableRequest::FetchTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FetchTableRequest) } inline PROTOBUF_NDEBUG_INLINE FetchTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} FetchTableRequest::FetchTableRequest( ::google::protobuf::Arena* arena, const FetchTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FetchTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchTableRequest) } @@ -6285,35 +7091,34 @@ inline void FetchTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FetchTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FetchTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FetchTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FetchTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FetchTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FetchTableRequest::ByteSizeLong, + &FetchTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_._cached_size_), + false, + }, + &FetchTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FetchTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FetchTableRequest::_table_ = { { @@ -6326,8 +7131,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FetchTableRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FetchTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; {::_pbi::TcParser::FastMtS1, @@ -6351,74 +7160,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FetchTableRequest::_table_ = { }}, }; -::uint8_t* FetchTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchTableRequest) - return target; -} - -::size_t FetchTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FetchTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FetchTableRequest::_class_data_ = { - FetchTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FetchTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FetchTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FetchTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FetchTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FetchTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FetchTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FetchTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FetchTableRequest::ByteSizeLong(const MessageLite& base) { + const FetchTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FetchTableRequest::ByteSizeLong() const { + const FetchTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FetchTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -6427,14 +7265,25 @@ void FetchTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::g cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -6445,13 +7294,7 @@ void FetchTableRequest::CopyFrom(const FetchTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FetchTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FetchTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FetchTableRequest::InternalSwap(FetchTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -6465,65 +7308,58 @@ void FetchTableRequest::InternalSwap(FetchTableRequest* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata FetchTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[2]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ApplyPreviewColumnsRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const ApplyPreviewColumnsRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const ApplyPreviewColumnsRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TableReference& ApplyPreviewColumnsRequest::_Internal::source_id(const ApplyPreviewColumnsRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::Ticket& ApplyPreviewColumnsRequest::_Internal::result_id(const ApplyPreviewColumnsRequest* msg) { - return *msg->_impl_.result_id_; -} void ApplyPreviewColumnsRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } ApplyPreviewColumnsRequest::ApplyPreviewColumnsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) } inline PROTOBUF_NDEBUG_INLINE ApplyPreviewColumnsRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} ApplyPreviewColumnsRequest::ApplyPreviewColumnsRequest( ::google::protobuf::Arena* arena, const ApplyPreviewColumnsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ApplyPreviewColumnsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.result_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) } @@ -6553,35 +7389,34 @@ inline void ApplyPreviewColumnsRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ApplyPreviewColumnsRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ApplyPreviewColumnsRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ApplyPreviewColumnsRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ApplyPreviewColumnsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ApplyPreviewColumnsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ApplyPreviewColumnsRequest::ByteSizeLong, + &ApplyPreviewColumnsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_._cached_size_), + false, + }, + &ApplyPreviewColumnsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ApplyPreviewColumnsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ApplyPreviewColumnsRequest::_table_ = { { @@ -6594,8 +7429,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ApplyPreviewColumnsRequest::_table_ = 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ApplyPreviewColumnsRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; {::_pbi::TcParser::FastMtS1, @@ -6619,74 +7458,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> ApplyPreviewColumnsRequest::_table_ = }}, }; -::uint8_t* ApplyPreviewColumnsRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - return target; -} - -::size_t ApplyPreviewColumnsRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ApplyPreviewColumnsRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ApplyPreviewColumnsRequest::_class_data_ = { - ApplyPreviewColumnsRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ApplyPreviewColumnsRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ApplyPreviewColumnsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ApplyPreviewColumnsRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ApplyPreviewColumnsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ApplyPreviewColumnsRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ApplyPreviewColumnsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ApplyPreviewColumnsRequest::ByteSizeLong(const MessageLite& base) { + const ApplyPreviewColumnsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ApplyPreviewColumnsRequest::ByteSizeLong() const { + const ApplyPreviewColumnsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ApplyPreviewColumnsRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -6695,14 +7563,25 @@ void ApplyPreviewColumnsRequest::MergeImpl(::google::protobuf::Message& to_msg, cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -6713,13 +7592,7 @@ void ApplyPreviewColumnsRequest::CopyFrom(const ApplyPreviewColumnsRequest& from MergeFrom(from); } -PROTOBUF_NOINLINE bool ApplyPreviewColumnsRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ApplyPreviewColumnsRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ApplyPreviewColumnsRequest::InternalSwap(ApplyPreviewColumnsRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -6733,9 +7606,7 @@ void ApplyPreviewColumnsRequest::InternalSwap(ApplyPreviewColumnsRequest* PROTOB } ::google::protobuf::Metadata ApplyPreviewColumnsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[3]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -6744,13 +7615,21 @@ class ExportedTableUpdatesRequest::_Internal { }; ExportedTableUpdatesRequest::ExportedTableUpdatesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) } ExportedTableUpdatesRequest::ExportedTableUpdatesRequest( ::google::protobuf::Arena* arena, const ExportedTableUpdatesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportedTableUpdatesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -6759,6 +7638,61 @@ ExportedTableUpdatesRequest::ExportedTableUpdatesRequest( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportedTableUpdatesRequest::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_ExportedTableUpdatesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportedTableUpdatesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &ExportedTableUpdatesRequest::ByteSizeLong, + &ExportedTableUpdatesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportedTableUpdatesRequest, _impl_._cached_size_), + false, + }, + &ExportedTableUpdatesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportedTableUpdatesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> ExportedTableUpdatesRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -6768,39 +7702,35 @@ ExportedTableUpdatesRequest::ExportedTableUpdatesRequest( ::google::protobuf::Metadata ExportedTableUpdatesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[4]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExportedTableUpdateMessage::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& export_id(const ExportedTableUpdateMessage* msg); - static void set_has_export_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ExportedTableUpdateMessage::_Internal::export_id(const ExportedTableUpdateMessage* msg) { - return *msg->_impl_.export_id_; -} void ExportedTableUpdateMessage::clear_export_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.export_id_ != nullptr) _impl_.export_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ExportedTableUpdateMessage::ExportedTableUpdateMessage(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) } inline PROTOBUF_NDEBUG_INLINE ExportedTableUpdateMessage::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, update_failure_message_(arena, from.update_failure_message_) {} @@ -6808,16 +7738,20 @@ inline PROTOBUF_NDEBUG_INLINE ExportedTableUpdateMessage::Impl_::Impl_( ExportedTableUpdateMessage::ExportedTableUpdateMessage( ::google::protobuf::Arena* arena, const ExportedTableUpdateMessage& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExportedTableUpdateMessage* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.export_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.export_id_) - : nullptr; + _impl_.export_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.export_id_) + : nullptr; _impl_.size_ = from._impl_.size_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) @@ -6849,31 +7783,34 @@ inline void ExportedTableUpdateMessage::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExportedTableUpdateMessage::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.update_failure_message_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.export_id_ != nullptr); - _impl_.export_id_->Clear(); - } - _impl_.size_ = ::int64_t{0}; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExportedTableUpdateMessage::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExportedTableUpdateMessage::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExportedTableUpdateMessage_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExportedTableUpdateMessage::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExportedTableUpdateMessage::ByteSizeLong, + &ExportedTableUpdateMessage::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_._cached_size_), + false, + }, + &ExportedTableUpdateMessage::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExportedTableUpdateMessage::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 91, 2> ExportedTableUpdateMessage::_table_ = { { @@ -6886,8 +7823,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 91, 2> ExportedTableUpdateMessage::_table_ = 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExportedTableUpdateMessage_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; @@ -6920,86 +7861,117 @@ const ::_pbi::TcParseTable<2, 3, 1, 91, 2> ExportedTableUpdateMessage::_table_ = }}, }; -::uint8_t* ExportedTableUpdateMessage::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::export_id(this), - _Internal::export_id(this).GetCachedSize(), target, stream); - } - - // sint64 size = 2 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 2, this->_internal_size(), target); - } - - // string update_failure_message = 3; - if (!this->_internal_update_failure_message().empty()) { - const std::string& _s = this->_internal_update_failure_message(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - return target; -} - -::size_t ExportedTableUpdateMessage::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExportedTableUpdateMessage::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string update_failure_message = 3; - if (!this->_internal_update_failure_message().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_update_failure_message()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; + _impl_.update_failure_message_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.export_id_); - } - - // sint64 size = 2 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_size()); + ABSL_DCHECK(_impl_.export_id_ != nullptr); + _impl_.export_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExportedTableUpdateMessage::_class_data_ = { - ExportedTableUpdateMessage::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExportedTableUpdateMessage::GetClassData() const { - return &_class_data_; + _impl_.size_ = ::int64_t{0}; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExportedTableUpdateMessage::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExportedTableUpdateMessage::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExportedTableUpdateMessage& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExportedTableUpdateMessage::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExportedTableUpdateMessage& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.export_id_, this_._impl_.export_id_->GetCachedSize(), target, + stream); + } + + // sint64 size = 2 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 2, this_._internal_size(), target); + } + + // string update_failure_message = 3; + if (!this_._internal_update_failure_message().empty()) { + const std::string& _s = this_._internal_update_failure_message(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExportedTableUpdateMessage::ByteSizeLong(const MessageLite& base) { + const ExportedTableUpdateMessage& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExportedTableUpdateMessage::ByteSizeLong() const { + const ExportedTableUpdateMessage& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string update_failure_message = 3; + if (!this_._internal_update_failure_message().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_update_failure_message()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.export_id_); + } + } + { + // sint64 size = 2 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_size()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExportedTableUpdateMessage::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -7008,13 +7980,20 @@ void ExportedTableUpdateMessage::MergeImpl(::google::protobuf::Message& to_msg, if (!from._internal_update_failure_message().empty()) { _this->_internal_set_update_failure_message(from._internal_update_failure_message()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_export_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_export_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.export_id_ != nullptr); + if (_this->_impl_.export_id_ == nullptr) { + _this->_impl_.export_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.export_id_); + } else { + _this->_impl_.export_id_->MergeFrom(*from._impl_.export_id_); + } } if (from._internal_size() != 0) { - _this->_internal_set_size(from._internal_size()); + _this->_impl_.size_ = from._impl_.size_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -7025,13 +8004,7 @@ void ExportedTableUpdateMessage::CopyFrom(const ExportedTableUpdateMessage& from MergeFrom(from); } -PROTOBUF_NOINLINE bool ExportedTableUpdateMessage::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExportedTableUpdateMessage::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExportedTableUpdateMessage::InternalSwap(ExportedTableUpdateMessage* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -7048,55 +8021,55 @@ void ExportedTableUpdateMessage::InternalSwap(ExportedTableUpdateMessage* PROTOB } ::google::protobuf::Metadata ExportedTableUpdateMessage::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[5]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class EmptyTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const EmptyTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& EmptyTableRequest::_Internal::result_id(const EmptyTableRequest* msg) { - return *msg->_impl_.result_id_; -} void EmptyTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } EmptyTableRequest::EmptyTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.EmptyTableRequest) } inline PROTOBUF_NDEBUG_INLINE EmptyTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} EmptyTableRequest::EmptyTableRequest( ::google::protobuf::Arena* arena, const EmptyTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE EmptyTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; _impl_.size_ = from._impl_.size_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.EmptyTableRequest) @@ -7126,30 +8099,34 @@ inline void EmptyTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void EmptyTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_.size_ = ::int64_t{0}; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* EmptyTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + EmptyTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_EmptyTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &EmptyTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &EmptyTableRequest::ByteSizeLong, + &EmptyTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_._cached_size_), + false, + }, + &EmptyTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* EmptyTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 0, 2> EmptyTableRequest::_table_ = { { @@ -7162,8 +8139,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> EmptyTableRequest::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_EmptyTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // sint64 size = 2 [jstype = JS_STRING]; {::_pbi::TcParser::FastZ64S1, @@ -7186,84 +8167,120 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> EmptyTableRequest::_table_ = { }}, }; -::uint8_t* EmptyTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // sint64 size = 2 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 2, this->_internal_size(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - return target; -} - -::size_t EmptyTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void EmptyTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); - } - - // sint64 size = 2 [jstype = JS_STRING]; - if (this->_internal_size() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_size()); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData EmptyTableRequest::_class_data_ = { - EmptyTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* EmptyTableRequest::GetClassData() const { - return &_class_data_; + _impl_.size_ = ::int64_t{0}; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void EmptyTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* EmptyTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const EmptyTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* EmptyTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const EmptyTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // sint64 size = 2 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 2, this_._internal_size(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.EmptyTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t EmptyTableRequest::ByteSizeLong(const MessageLite& base) { + const EmptyTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t EmptyTableRequest::ByteSizeLong() const { + const EmptyTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + { + // sint64 size = 2 [jstype = JS_STRING]; + if (this_._internal_size() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_size()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void EmptyTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (from._internal_size() != 0) { - _this->_internal_set_size(from._internal_size()); + _this->_impl_.size_ = from._impl_.size_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -7274,13 +8291,7 @@ void EmptyTableRequest::CopyFrom(const EmptyTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool EmptyTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* EmptyTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void EmptyTableRequest::InternalSwap(EmptyTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -7294,41 +8305,37 @@ void EmptyTableRequest::InternalSwap(EmptyTableRequest* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata EmptyTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[6]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class TimeTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_._has_bits_); + 8 * PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_._has_bits_); static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const TimeTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TimeTableRequest, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& TimeTableRequest::_Internal::result_id(const TimeTableRequest* msg) { - return *msg->_impl_.result_id_; -} void TimeTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } TimeTableRequest::TimeTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TimeTableRequest) } inline PROTOBUF_NDEBUG_INLINE TimeTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, start_time_{}, @@ -7338,16 +8345,20 @@ inline PROTOBUF_NDEBUG_INLINE TimeTableRequest::Impl_::Impl_( TimeTableRequest::TimeTableRequest( ::google::protobuf::Arena* arena, const TimeTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TimeTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; _impl_.blink_table_ = from._impl_.blink_table_; switch (start_time_case()) { case START_TIME_NOT_SET: @@ -7408,7 +8419,7 @@ inline void TimeTableRequest::SharedDtor() { void TimeTableRequest::clear_start_time() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (start_time_case()) { case kStartTimeNanos: { // No need to clear @@ -7427,7 +8438,7 @@ void TimeTableRequest::clear_start_time() { void TimeTableRequest::clear_period() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (period_case()) { case kPeriodNanos: { // No need to clear @@ -7445,32 +8456,34 @@ void TimeTableRequest::clear_period() { } -PROTOBUF_NOINLINE void TimeTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_.blink_table_ = false; - clear_start_time(); - clear_period(); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TimeTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TimeTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TimeTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TimeTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TimeTableRequest::ByteSizeLong, + &TimeTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_._cached_size_), + false, + }, + &TimeTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TimeTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 6, 1, 89, 2> TimeTableRequest::_table_ = { { @@ -7483,8 +8496,12 @@ const ::_pbi::TcParseTable<1, 6, 1, 89, 2> TimeTableRequest::_table_ = { 6, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TimeTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool blink_table = 4; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -7523,171 +8540,235 @@ const ::_pbi::TcParseTable<1, 6, 1, 89, 2> TimeTableRequest::_table_ = { }}, }; -::uint8_t* TimeTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // sint64 start_time_nanos = 2 [jstype = JS_STRING]; - if (start_time_case() == kStartTimeNanos) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 2, this->_internal_start_time_nanos(), target); - } - - // sint64 period_nanos = 3 [jstype = JS_STRING]; - if (period_case() == kPeriodNanos) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 3, this->_internal_period_nanos(), target); - } - - // bool blink_table = 4; - if (this->_internal_blink_table() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_blink_table(), target); - } - - // string start_time_string = 5; - if (start_time_case() == kStartTimeString) { - const std::string& _s = this->_internal_start_time_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // string period_string = 6; - if (period_case() == kPeriodString) { - const std::string& _s = this->_internal_period_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string"); - target = stream->WriteStringMaybeAliased(6, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TimeTableRequest) - return target; -} - -::size_t TimeTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TimeTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); - } - - // bool blink_table = 4; - if (this->_internal_blink_table() != 0) { - total_size += 2; - } - - switch (start_time_case()) { - // sint64 start_time_nanos = 2 [jstype = JS_STRING]; - case kStartTimeNanos: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_start_time_nanos()); - break; - } - // string start_time_string = 5; - case kStartTimeString: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_start_time_string()); - break; - } - case START_TIME_NOT_SET: { - break; - } - } - switch (period_case()) { - // sint64 period_nanos = 3 [jstype = JS_STRING]; - case kPeriodNanos: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_period_nanos()); - break; - } - // string period_string = 6; - case kPeriodString: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_period_string()); - break; - } - case PERIOD_NOT_SET: { - break; - } + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TimeTableRequest::_class_data_ = { - TimeTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TimeTableRequest::GetClassData() const { - return &_class_data_; + _impl_.blink_table_ = false; + clear_start_time(); + clear_period(); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TimeTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TimeTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TimeTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TimeTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TimeTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // sint64 start_time_nanos = 2 [jstype = JS_STRING]; + if (this_.start_time_case() == kStartTimeNanos) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 2, this_._internal_start_time_nanos(), target); + } + + // sint64 period_nanos = 3 [jstype = JS_STRING]; + if (this_.period_case() == kPeriodNanos) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 3, this_._internal_period_nanos(), target); + } + + // bool blink_table = 4; + if (this_._internal_blink_table() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_blink_table(), target); + } + + // string start_time_string = 5; + if (this_.start_time_case() == kStartTimeString) { + const std::string& _s = this_._internal_start_time_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // string period_string = 6; + if (this_.period_case() == kPeriodString) { + const std::string& _s = this_._internal_period_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string"); + target = stream->WriteStringMaybeAliased(6, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TimeTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TimeTableRequest::ByteSizeLong(const MessageLite& base) { + const TimeTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TimeTableRequest::ByteSizeLong() const { + const TimeTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + { + // bool blink_table = 4; + if (this_._internal_blink_table() != 0) { + total_size += 2; + } + } + switch (this_.start_time_case()) { + // sint64 start_time_nanos = 2 [jstype = JS_STRING]; + case kStartTimeNanos: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_start_time_nanos()); + break; + } + // string start_time_string = 5; + case kStartTimeString: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_start_time_string()); + break; + } + case START_TIME_NOT_SET: { + break; + } + } + switch (this_.period_case()) { + // sint64 period_nanos = 3 [jstype = JS_STRING]; + case kPeriodNanos: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_period_nanos()); + break; + } + // string period_string = 6; + case kPeriodString: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_period_string()); + break; + } + case PERIOD_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TimeTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (from._internal_blink_table() != 0) { - _this->_internal_set_blink_table(from._internal_blink_table()); - } - switch (from.start_time_case()) { - case kStartTimeNanos: { - _this->_internal_set_start_time_nanos(from._internal_start_time_nanos()); - break; - } - case kStartTimeString: { - _this->_internal_set_start_time_string(from._internal_start_time_string()); - break; + _this->_impl_.blink_table_ = from._impl_.blink_table_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_start_time(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case START_TIME_NOT_SET: { - break; + + switch (oneof_from_case) { + case kStartTimeNanos: { + _this->_impl_.start_time_.start_time_nanos_ = from._impl_.start_time_.start_time_nanos_; + break; + } + case kStartTimeString: { + if (oneof_needs_init) { + _this->_impl_.start_time_.start_time_string_.InitDefault(); + } + _this->_impl_.start_time_.start_time_string_.Set(from._internal_start_time_string(), arena); + break; + } + case START_TIME_NOT_SET: + break; } } - switch (from.period_case()) { - case kPeriodNanos: { - _this->_internal_set_period_nanos(from._internal_period_nanos()); - break; - } - case kPeriodString: { - _this->_internal_set_period_string(from._internal_period_string()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[1]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[1]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_period(); + } + _this->_impl_._oneof_case_[1] = oneof_from_case; } - case PERIOD_NOT_SET: { - break; + + switch (oneof_from_case) { + case kPeriodNanos: { + _this->_impl_.period_.period_nanos_ = from._impl_.period_.period_nanos_; + break; + } + case kPeriodString: { + if (oneof_needs_init) { + _this->_impl_.period_.period_string_.InitDefault(); + } + _this->_impl_.period_.period_string_.Set(from._internal_period_string(), arena); + break; + } + case PERIOD_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -7700,13 +8781,7 @@ void TimeTableRequest::CopyFrom(const TimeTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TimeTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TimeTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TimeTableRequest::InternalSwap(TimeTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -7724,46 +8799,35 @@ void TimeTableRequest::InternalSwap(TimeTableRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TimeTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[7]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SelectOrUpdateRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const SelectOrUpdateRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const SelectOrUpdateRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SelectOrUpdateRequest::_Internal::result_id(const SelectOrUpdateRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SelectOrUpdateRequest::_Internal::source_id(const SelectOrUpdateRequest* msg) { - return *msg->_impl_.source_id_; -} void SelectOrUpdateRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SelectOrUpdateRequest::SelectOrUpdateRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) } inline PROTOBUF_NDEBUG_INLINE SelectOrUpdateRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, column_specs_{visibility, arena, from.column_specs_} {} @@ -7771,19 +8835,23 @@ inline PROTOBUF_NDEBUG_INLINE SelectOrUpdateRequest::Impl_::Impl_( SelectOrUpdateRequest::SelectOrUpdateRequest( ::google::protobuf::Arena* arena, const SelectOrUpdateRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SelectOrUpdateRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) } @@ -7814,36 +8882,34 @@ inline void SelectOrUpdateRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SelectOrUpdateRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_specs_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SelectOrUpdateRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SelectOrUpdateRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SelectOrUpdateRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SelectOrUpdateRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SelectOrUpdateRequest::ByteSizeLong, + &SelectOrUpdateRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_._cached_size_), + false, + }, + &SelectOrUpdateRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SelectOrUpdateRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectOrUpdateRequest::_table_ = { { @@ -7856,8 +8922,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectOrUpdateRequest::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SelectOrUpdateRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -7891,88 +8961,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectOrUpdateRequest::_table_ = { }}, }; -::uint8_t* SelectOrUpdateRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated string column_specs = 3; - for (int i = 0, n = this->_internal_column_specs_size(); i < n; ++i) { - const auto& s = this->_internal_column_specs().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - return target; -} - -::size_t SelectOrUpdateRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SelectOrUpdateRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string column_specs = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_column_specs().size()); - for (int i = 0, n = _internal_column_specs().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_column_specs().Get(i)); - } + _impl_.column_specs_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SelectOrUpdateRequest::_class_data_ = { - SelectOrUpdateRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SelectOrUpdateRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SelectOrUpdateRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SelectOrUpdateRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SelectOrUpdateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SelectOrUpdateRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SelectOrUpdateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated string column_specs = 3; + for (int i = 0, n = this_._internal_column_specs_size(); i < n; ++i) { + const auto& s = this_._internal_column_specs().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SelectOrUpdateRequest::ByteSizeLong(const MessageLite& base) { + const SelectOrUpdateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SelectOrUpdateRequest::ByteSizeLong() const { + const SelectOrUpdateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string column_specs = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_column_specs().size()); + for (int i = 0, n = this_._internal_column_specs().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_specs().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SelectOrUpdateRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -7982,14 +9087,25 @@ void SelectOrUpdateRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8000,13 +9116,7 @@ void SelectOrUpdateRequest::CopyFrom(const SelectOrUpdateRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SelectOrUpdateRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SelectOrUpdateRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SelectOrUpdateRequest::InternalSwap(SelectOrUpdateRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8021,9 +9131,7 @@ void SelectOrUpdateRequest::InternalSwap(SelectOrUpdateRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata SelectOrUpdateRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[8]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -8032,7 +9140,11 @@ class MathContext::_Internal { }; MathContext::MathContext(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MathContext) } @@ -8065,26 +9177,34 @@ inline void MathContext::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MathContext::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MathContext) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.precision_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.rounding_mode_) - - reinterpret_cast(&_impl_.precision_)) + sizeof(_impl_.rounding_mode_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MathContext::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MathContext::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MathContext_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MathContext::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MathContext::ByteSizeLong, + &MathContext::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MathContext, _impl_._cached_size_), + false, + }, + &MathContext::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MathContext::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> MathContext::_table_ = { { @@ -8097,8 +9217,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> MathContext::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_MathContext_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MathContext>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(MathContext, _impl_.rounding_mode_), 63>(), @@ -8121,68 +9245,89 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> MathContext::_table_ = { }}, }; -::uint8_t* MathContext::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MathContext) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // sint32 precision = 1; - if (this->_internal_precision() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 1, this->_internal_precision(), target); - } - - // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; - if (this->_internal_rounding_mode() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_rounding_mode(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MathContext) - return target; -} - -::size_t MathContext::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MathContext) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MathContext::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MathContext) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // sint32 precision = 1; - if (this->_internal_precision() != 0) { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_precision()); - } - - // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; - if (this->_internal_rounding_mode() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_rounding_mode()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MathContext::_class_data_ = { - MathContext::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MathContext::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.precision_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.rounding_mode_) - + reinterpret_cast(&_impl_.precision_)) + sizeof(_impl_.rounding_mode_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MathContext::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MathContext::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MathContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MathContext::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MathContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MathContext) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // sint32 precision = 1; + if (this_._internal_precision() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 1, this_._internal_precision(), target); + } + + // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; + if (this_._internal_rounding_mode() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_rounding_mode(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MathContext) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MathContext::ByteSizeLong(const MessageLite& base) { + const MathContext& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MathContext::ByteSizeLong() const { + const MathContext& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MathContext) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // sint32 precision = 1; + if (this_._internal_precision() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_precision()); + } + // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; + if (this_._internal_rounding_mode() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_rounding_mode()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MathContext::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MathContext) @@ -8191,10 +9336,10 @@ void MathContext::MergeImpl(::google::protobuf::Message& to_msg, const ::google: (void) cached_has_bits; if (from._internal_precision() != 0) { - _this->_internal_set_precision(from._internal_precision()); + _this->_impl_.precision_ = from._impl_.precision_; } if (from._internal_rounding_mode() != 0) { - _this->_internal_set_rounding_mode(from._internal_rounding_mode()); + _this->_impl_.rounding_mode_ = from._impl_.rounding_mode_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8206,13 +9351,7 @@ void MathContext::CopyFrom(const MathContext& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MathContext::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MathContext::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MathContext::InternalSwap(MathContext* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8225,9 +9364,7 @@ void MathContext::InternalSwap(MathContext* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MathContext::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[9]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -8236,7 +9373,11 @@ class UpdateByWindowScale_UpdateByWindowTicks::_Internal { }; UpdateByWindowScale_UpdateByWindowTicks::UpdateByWindowScale_UpdateByWindowTicks(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) } @@ -8264,24 +9405,34 @@ inline void UpdateByWindowScale_UpdateByWindowTicks::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByWindowScale_UpdateByWindowTicks::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.ticks_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByWindowScale_UpdateByWindowTicks::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByWindowScale_UpdateByWindowTicks_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByWindowScale_UpdateByWindowTicks::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByWindowScale_UpdateByWindowTicks::ByteSizeLong, + &UpdateByWindowScale_UpdateByWindowTicks::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTicks, _impl_._cached_size_), + false, + }, + &UpdateByWindowScale_UpdateByWindowTicks::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByWindowScale_UpdateByWindowTicks::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* UpdateByWindowScale_UpdateByWindowTicks::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByWindowScale_UpdateByWindowTicks::_table_ = { { @@ -8294,8 +9445,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByWindowScale_UpdateByWindowTick 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_UpdateByWindowScale_UpdateByWindowTicks_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // double ticks = 1; {::_pbi::TcParser::FastF64S1, @@ -8312,64 +9467,73 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByWindowScale_UpdateByWindowTick }}, }; -::uint8_t* UpdateByWindowScale_UpdateByWindowTicks::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // double ticks = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_ticks = this->_internal_ticks(); - ::uint64_t raw_ticks; - memcpy(&raw_ticks, &tmp_ticks, sizeof(tmp_ticks)); - if (raw_ticks != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 1, this->_internal_ticks(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - return target; -} - -::size_t UpdateByWindowScale_UpdateByWindowTicks::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByWindowScale_UpdateByWindowTicks::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // double ticks = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_ticks = this->_internal_ticks(); - ::uint64_t raw_ticks; - memcpy(&raw_ticks, &tmp_ticks, sizeof(tmp_ticks)); - if (raw_ticks != 0) { - total_size += 9; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByWindowScale_UpdateByWindowTicks::_class_data_ = { - UpdateByWindowScale_UpdateByWindowTicks::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByWindowScale_UpdateByWindowTicks::GetClassData() const { - return &_class_data_; + _impl_.ticks_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByWindowScale_UpdateByWindowTicks::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByWindowScale_UpdateByWindowTicks::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByWindowScale_UpdateByWindowTicks& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByWindowScale_UpdateByWindowTicks::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByWindowScale_UpdateByWindowTicks& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // double ticks = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_ticks()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 1, this_._internal_ticks(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByWindowScale_UpdateByWindowTicks::ByteSizeLong(const MessageLite& base) { + const UpdateByWindowScale_UpdateByWindowTicks& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByWindowScale_UpdateByWindowTicks::ByteSizeLong() const { + const UpdateByWindowScale_UpdateByWindowTicks& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // double ticks = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_ticks()) != 0) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByWindowScale_UpdateByWindowTicks::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) @@ -8377,13 +9541,8 @@ void UpdateByWindowScale_UpdateByWindowTicks::MergeImpl(::google::protobuf::Mess ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_ticks = from._internal_ticks(); - ::uint64_t raw_ticks; - memcpy(&raw_ticks, &tmp_ticks, sizeof(tmp_ticks)); - if (raw_ticks != 0) { - _this->_internal_set_ticks(from._internal_ticks()); + if (::absl::bit_cast<::uint64_t>(from._internal_ticks()) != 0) { + _this->_impl_.ticks_ = from._impl_.ticks_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -8395,13 +9554,7 @@ void UpdateByWindowScale_UpdateByWindowTicks::CopyFrom(const UpdateByWindowScale MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByWindowScale_UpdateByWindowTicks::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByWindowScale_UpdateByWindowTicks::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByWindowScale_UpdateByWindowTicks::InternalSwap(UpdateByWindowScale_UpdateByWindowTicks* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8409,26 +9562,28 @@ void UpdateByWindowScale_UpdateByWindowTicks::InternalSwap(UpdateByWindowScale_U } ::google::protobuf::Metadata UpdateByWindowScale_UpdateByWindowTicks::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[10]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByWindowScale_UpdateByWindowTime::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_._oneof_case_); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime, _impl_._oneof_case_); }; UpdateByWindowScale_UpdateByWindowTime::UpdateByWindowScale_UpdateByWindowTime(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) } inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale_UpdateByWindowTime::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& from_msg) : column_(arena, from.column_), window_{}, _cached_size_{0}, @@ -8437,12 +9592,16 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale_UpdateByWindowTime::Impl_::Imp UpdateByWindowScale_UpdateByWindowTime::UpdateByWindowScale_UpdateByWindowTime( ::google::protobuf::Arena* arena, const UpdateByWindowScale_UpdateByWindowTime& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByWindowScale_UpdateByWindowTime* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (window_case()) { case WINDOW_NOT_SET: break; @@ -8483,7 +9642,7 @@ inline void UpdateByWindowScale_UpdateByWindowTime::SharedDtor() { void UpdateByWindowScale_UpdateByWindowTime::clear_window() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (window_case()) { case kNanos: { // No need to clear @@ -8501,25 +9660,34 @@ void UpdateByWindowScale_UpdateByWindowTime::clear_window() { } -PROTOBUF_NOINLINE void UpdateByWindowScale_UpdateByWindowTime::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_.ClearToEmpty(); - clear_window(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByWindowScale_UpdateByWindowTime::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByWindowScale_UpdateByWindowTime::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByWindowScale_UpdateByWindowTime_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByWindowScale_UpdateByWindowTime::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByWindowScale_UpdateByWindowTime::ByteSizeLong, + &UpdateByWindowScale_UpdateByWindowTime::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTime, _impl_._cached_size_), + false, + }, + &UpdateByWindowScale_UpdateByWindowTime::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByWindowScale_UpdateByWindowTime::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 3, 0, 102, 2> UpdateByWindowScale_UpdateByWindowTime::_table_ = { { @@ -8532,8 +9700,12 @@ const ::_pbi::TcParseTable<0, 3, 0, 102, 2> UpdateByWindowScale_UpdateByWindowTi 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_UpdateByWindowScale_UpdateByWindowTime_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column = 1; {::_pbi::TcParser::FastUS1, @@ -8560,92 +9732,113 @@ const ::_pbi::TcParseTable<0, 3, 0, 102, 2> UpdateByWindowScale_UpdateByWindowTi }}, }; -::uint8_t* UpdateByWindowScale_UpdateByWindowTime::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column = 1; - if (!this->_internal_column().empty()) { - const std::string& _s = this->_internal_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - switch (window_case()) { - case kNanos: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 2, this->_internal_nanos(), target); - break; - } - case kDurationString: { - const std::string& _s = this->_internal_duration_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string"); - target = stream->WriteStringMaybeAliased(3, _s, target); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - return target; -} - -::size_t UpdateByWindowScale_UpdateByWindowTime::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByWindowScale_UpdateByWindowTime::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column = 1; - if (!this->_internal_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column()); - } - - switch (window_case()) { - // sint64 nanos = 2 [jstype = JS_STRING]; - case kNanos: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_nanos()); - break; - } - // string duration_string = 3; - case kDurationString: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_duration_string()); - break; - } - case WINDOW_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByWindowScale_UpdateByWindowTime::_class_data_ = { - UpdateByWindowScale_UpdateByWindowTime::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByWindowScale_UpdateByWindowTime::GetClassData() const { - return &_class_data_; + _impl_.column_.ClearToEmpty(); + clear_window(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByWindowScale_UpdateByWindowTime::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByWindowScale_UpdateByWindowTime::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByWindowScale_UpdateByWindowTime& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByWindowScale_UpdateByWindowTime::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByWindowScale_UpdateByWindowTime& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column = 1; + if (!this_._internal_column().empty()) { + const std::string& _s = this_._internal_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + switch (this_.window_case()) { + case kNanos: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 2, this_._internal_nanos(), target); + break; + } + case kDurationString: { + const std::string& _s = this_._internal_duration_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string"); + target = stream->WriteStringMaybeAliased(3, _s, target); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByWindowScale_UpdateByWindowTime::ByteSizeLong(const MessageLite& base) { + const UpdateByWindowScale_UpdateByWindowTime& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByWindowScale_UpdateByWindowTime::ByteSizeLong() const { + const UpdateByWindowScale_UpdateByWindowTime& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string column = 1; + if (!this_._internal_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column()); + } + } + switch (this_.window_case()) { + // sint64 nanos = 2 [jstype = JS_STRING]; + case kNanos: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_nanos()); + break; + } + // string duration_string = 3; + case kDurationString: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_duration_string()); + break; + } + case WINDOW_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByWindowScale_UpdateByWindowTime::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -8654,17 +9847,30 @@ void UpdateByWindowScale_UpdateByWindowTime::MergeImpl(::google::protobuf::Messa if (!from._internal_column().empty()) { _this->_internal_set_column(from._internal_column()); } - switch (from.window_case()) { - case kNanos: { - _this->_internal_set_nanos(from._internal_nanos()); - break; - } - case kDurationString: { - _this->_internal_set_duration_string(from._internal_duration_string()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_window(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case WINDOW_NOT_SET: { - break; + + switch (oneof_from_case) { + case kNanos: { + _this->_impl_.window_.nanos_ = from._impl_.window_.nanos_; + break; + } + case kDurationString: { + if (oneof_needs_init) { + _this->_impl_.window_.duration_string_.InitDefault(); + } + _this->_impl_.window_.duration_string_.Set(from._internal_duration_string(), arena); + break; + } + case WINDOW_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -8677,13 +9883,7 @@ void UpdateByWindowScale_UpdateByWindowTime::CopyFrom(const UpdateByWindowScale_ MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByWindowScale_UpdateByWindowTime::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByWindowScale_UpdateByWindowTime::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByWindowScale_UpdateByWindowTime::InternalSwap(UpdateByWindowScale_UpdateByWindowTime* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -8695,26 +9895,16 @@ void UpdateByWindowScale_UpdateByWindowTime::InternalSwap(UpdateByWindowScale_Up } ::google::protobuf::Metadata UpdateByWindowScale_UpdateByWindowTime::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[11]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByWindowScale::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& ticks(const UpdateByWindowScale* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& time(const UpdateByWindowScale* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& UpdateByWindowScale::_Internal::ticks(const UpdateByWindowScale* msg) { - return *msg->_impl_.type_.ticks_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& UpdateByWindowScale::_Internal::time(const UpdateByWindowScale* msg) { - return *msg->_impl_.type_.time_; -} void UpdateByWindowScale::set_allocated_ticks(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* ticks) { ::google::protobuf::Arena* message_arena = GetArena(); clear_type(); @@ -8742,13 +9932,17 @@ void UpdateByWindowScale::set_allocated_time(::io::deephaven::proto::backplane:: // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) } UpdateByWindowScale::UpdateByWindowScale(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) } inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -8756,20 +9950,24 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale::Impl_::Impl_( UpdateByWindowScale::UpdateByWindowScale( ::google::protobuf::Arena* arena, const UpdateByWindowScale& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByWindowScale* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; case kTicks: - _impl_.type_.ticks_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(arena, *from._impl_.type_.ticks_); + _impl_.type_.ticks_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(arena, *from._impl_.type_.ticks_); break; case kTime: - _impl_.type_.time_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(arena, *from._impl_.type_.time_); + _impl_.type_.time_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(arena, *from._impl_.type_.time_); break; } @@ -8800,17 +9998,21 @@ inline void UpdateByWindowScale::SharedDtor() { void UpdateByWindowScale::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kTicks: { if (GetArena() == nullptr) { delete _impl_.type_.ticks_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ticks_); } break; } case kTime: { if (GetArena() == nullptr) { delete _impl_.type_.time_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.time_); } break; } @@ -8822,24 +10024,34 @@ void UpdateByWindowScale::clear_type() { } -PROTOBUF_NOINLINE void UpdateByWindowScale::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByWindowScale::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByWindowScale::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByWindowScale_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByWindowScale::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByWindowScale::ByteSizeLong, + &UpdateByWindowScale::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByWindowScale, _impl_._cached_size_), + false, + }, + &UpdateByWindowScale::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByWindowScale::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 2, 2, 0, 2> UpdateByWindowScale::_table_ = { { @@ -8852,8 +10064,12 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> UpdateByWindowScale::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByWindowScale_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -8872,95 +10088,132 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> UpdateByWindowScale::_table_ = { }}, }; -::uint8_t* UpdateByWindowScale::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (type_case()) { - case kTicks: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::ticks(this), - _Internal::ticks(this).GetCachedSize(), target, stream); - break; - } - case kTime: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::time(this), - _Internal::time(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - return target; -} - -::size_t UpdateByWindowScale::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByWindowScale::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks ticks = 1; - case kTicks: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.ticks_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime time = 2; - case kTime: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.time_); - break; - } - case TYPE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByWindowScale::_class_data_ = { - UpdateByWindowScale::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByWindowScale::GetClassData() const { - return &_class_data_; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByWindowScale::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByWindowScale::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByWindowScale& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByWindowScale::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByWindowScale& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.type_case()) { + case kTicks: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.type_.ticks_, this_._impl_.type_.ticks_->GetCachedSize(), target, + stream); + break; + } + case kTime: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.type_.time_, this_._impl_.type_.time_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByWindowScale::ByteSizeLong(const MessageLite& base) { + const UpdateByWindowScale& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByWindowScale::ByteSizeLong() const { + const UpdateByWindowScale& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks ticks = 1; + case kTicks: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.ticks_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime time = 2; + case kTime: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.time_); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByWindowScale::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.type_case()) { - case kTicks: { - _this->_internal_mutable_ticks()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks::MergeFrom( - from._internal_ticks()); - break; - } - case kTime: { - _this->_internal_mutable_time()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime::MergeFrom( - from._internal_time()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case TYPE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kTicks: { + if (oneof_needs_init) { + _this->_impl_.type_.ticks_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(arena, *from._impl_.type_.ticks_); + } else { + _this->_impl_.type_.ticks_->MergeFrom(from._internal_ticks()); + } + break; + } + case kTime: { + if (oneof_needs_init) { + _this->_impl_.type_.time_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(arena, *from._impl_.type_.time_); + } else { + _this->_impl_.type_.time_->MergeFrom(from._internal_time()); + } + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -8973,13 +10226,7 @@ void UpdateByWindowScale::CopyFrom(const UpdateByWindowScale& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByWindowScale::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByWindowScale::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByWindowScale::InternalSwap(UpdateByWindowScale* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -8988,50 +10235,50 @@ void UpdateByWindowScale::InternalSwap(UpdateByWindowScale* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata UpdateByWindowScale::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[12]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByEmOptions::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::MathContext& big_value_context(const UpdateByEmOptions* msg); - static void set_has_big_value_context(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByEmOptions::_Internal::big_value_context(const UpdateByEmOptions* msg) { - return *msg->_impl_.big_value_context_; -} UpdateByEmOptions::UpdateByEmOptions(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) } inline PROTOBUF_NDEBUG_INLINE UpdateByEmOptions::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByEmOptions::UpdateByEmOptions( ::google::protobuf::Arena* arena, const UpdateByEmOptions& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByEmOptions* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.big_value_context_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MathContext>(arena, *from._impl_.big_value_context_) - : nullptr; + _impl_.big_value_context_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MathContext>( + arena, *from._impl_.big_value_context_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, on_null_value_), reinterpret_cast(&from._impl_) + @@ -9067,32 +10314,34 @@ inline void UpdateByEmOptions::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByEmOptions::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.big_value_context_ != nullptr); - _impl_.big_value_context_->Clear(); - } - ::memset(&_impl_.on_null_value_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.on_zero_delta_time_) - - reinterpret_cast(&_impl_.on_null_value_)) + sizeof(_impl_.on_zero_delta_time_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByEmOptions::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByEmOptions::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByEmOptions_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByEmOptions::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByEmOptions::ByteSizeLong, + &UpdateByEmOptions::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_._cached_size_), + false, + }, + &UpdateByEmOptions::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByEmOptions::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 1, 0, 2> UpdateByEmOptions::_table_ = { { @@ -9105,8 +10354,12 @@ const ::_pbi::TcParseTable<3, 6, 1, 0, 2> UpdateByEmOptions::_table_ = { 6, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByEmOptions_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; @@ -9155,148 +10408,182 @@ const ::_pbi::TcParseTable<3, 6, 1, 0, 2> UpdateByEmOptions::_table_ = { }}, }; -::uint8_t* UpdateByEmOptions::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; - if (this->_internal_on_null_value() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_on_null_value(), target); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; - if (this->_internal_on_nan_value() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_on_nan_value(), target); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; - if (this->_internal_on_null_time() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_on_null_time(), target); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; - if (this->_internal_on_negative_delta_time() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 4, this->_internal_on_negative_delta_time(), target); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; - if (this->_internal_on_zero_delta_time() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 5, this->_internal_on_zero_delta_time(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::big_value_context(this), - _Internal::big_value_context(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - return target; -} - -::size_t UpdateByEmOptions::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByEmOptions::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.big_value_context_); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; - if (this->_internal_on_null_value() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_on_null_value()); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; - if (this->_internal_on_nan_value() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_on_nan_value()); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; - if (this->_internal_on_null_time() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_on_null_time()); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; - if (this->_internal_on_negative_delta_time() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_on_negative_delta_time()); - } - - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; - if (this->_internal_on_zero_delta_time() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_on_zero_delta_time()); + ABSL_DCHECK(_impl_.big_value_context_ != nullptr); + _impl_.big_value_context_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByEmOptions::_class_data_ = { - UpdateByEmOptions::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByEmOptions::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.on_null_value_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.on_zero_delta_time_) - + reinterpret_cast(&_impl_.on_null_value_)) + sizeof(_impl_.on_zero_delta_time_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByEmOptions::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByEmOptions::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByEmOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByEmOptions::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByEmOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; + if (this_._internal_on_null_value() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_on_null_value(), target); + } + + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; + if (this_._internal_on_nan_value() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_on_nan_value(), target); + } + + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; + if (this_._internal_on_null_time() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_on_null_time(), target); + } + + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; + if (this_._internal_on_negative_delta_time() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 4, this_._internal_on_negative_delta_time(), target); + } + + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; + if (this_._internal_on_zero_delta_time() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 5, this_._internal_on_zero_delta_time(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.big_value_context_, this_._impl_.big_value_context_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByEmOptions::ByteSizeLong(const MessageLite& base) { + const UpdateByEmOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByEmOptions::ByteSizeLong() const { + const UpdateByEmOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.big_value_context_); + } + } + { + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; + if (this_._internal_on_null_value() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_on_null_value()); + } + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; + if (this_._internal_on_nan_value() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_on_nan_value()); + } + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; + if (this_._internal_on_null_time() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_on_null_time()); + } + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; + if (this_._internal_on_negative_delta_time() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_on_negative_delta_time()); + } + // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; + if (this_._internal_on_zero_delta_time() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_on_zero_delta_time()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByEmOptions::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_big_value_context()->::io::deephaven::proto::backplane::grpc::MathContext::MergeFrom( - from._internal_big_value_context()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.big_value_context_ != nullptr); + if (_this->_impl_.big_value_context_ == nullptr) { + _this->_impl_.big_value_context_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MathContext>(arena, *from._impl_.big_value_context_); + } else { + _this->_impl_.big_value_context_->MergeFrom(*from._impl_.big_value_context_); + } } if (from._internal_on_null_value() != 0) { - _this->_internal_set_on_null_value(from._internal_on_null_value()); + _this->_impl_.on_null_value_ = from._impl_.on_null_value_; } if (from._internal_on_nan_value() != 0) { - _this->_internal_set_on_nan_value(from._internal_on_nan_value()); + _this->_impl_.on_nan_value_ = from._impl_.on_nan_value_; } if (from._internal_on_null_time() != 0) { - _this->_internal_set_on_null_time(from._internal_on_null_time()); + _this->_impl_.on_null_time_ = from._impl_.on_null_time_; } if (from._internal_on_negative_delta_time() != 0) { - _this->_internal_set_on_negative_delta_time(from._internal_on_negative_delta_time()); + _this->_impl_.on_negative_delta_time_ = from._impl_.on_negative_delta_time_; } if (from._internal_on_zero_delta_time() != 0) { - _this->_internal_set_on_zero_delta_time(from._internal_on_zero_delta_time()); + _this->_impl_.on_zero_delta_time_ = from._impl_.on_zero_delta_time_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9307,13 +10594,7 @@ void UpdateByEmOptions::CopyFrom(const UpdateByEmOptions& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByEmOptions::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByEmOptions::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByEmOptions::InternalSwap(UpdateByEmOptions* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -9327,9 +10608,7 @@ void UpdateByEmOptions::InternalSwap(UpdateByEmOptions* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata UpdateByEmOptions::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[13]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9338,7 +10617,11 @@ class UpdateByDeltaOptions::_Internal { }; UpdateByDeltaOptions::UpdateByDeltaOptions(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) } @@ -9366,24 +10649,34 @@ inline void UpdateByDeltaOptions::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByDeltaOptions::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.null_behavior_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByDeltaOptions::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByDeltaOptions::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByDeltaOptions_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByDeltaOptions::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByDeltaOptions::ByteSizeLong, + &UpdateByDeltaOptions::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByDeltaOptions, _impl_._cached_size_), + false, + }, + &UpdateByDeltaOptions::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByDeltaOptions::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByDeltaOptions::_table_ = { { @@ -9396,8 +10689,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByDeltaOptions::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_UpdateByDeltaOptions_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByDeltaOptions, _impl_.null_behavior_), 63>(), @@ -9414,55 +10711,74 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByDeltaOptions::_table_ = { }}, }; -::uint8_t* UpdateByDeltaOptions::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; - if (this->_internal_null_behavior() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_null_behavior(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - return target; -} - -::size_t UpdateByDeltaOptions::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByDeltaOptions::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; - if (this->_internal_null_behavior() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_null_behavior()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByDeltaOptions::_class_data_ = { - UpdateByDeltaOptions::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByDeltaOptions::GetClassData() const { - return &_class_data_; + _impl_.null_behavior_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByDeltaOptions::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByDeltaOptions::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByDeltaOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByDeltaOptions::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByDeltaOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; + if (this_._internal_null_behavior() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_null_behavior(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByDeltaOptions::ByteSizeLong(const MessageLite& base) { + const UpdateByDeltaOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByDeltaOptions::ByteSizeLong() const { + const UpdateByDeltaOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; + if (this_._internal_null_behavior() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_null_behavior()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByDeltaOptions::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) @@ -9471,7 +10787,7 @@ void UpdateByDeltaOptions::MergeImpl(::google::protobuf::Message& to_msg, const (void) cached_has_bits; if (from._internal_null_behavior() != 0) { - _this->_internal_set_null_behavior(from._internal_null_behavior()); + _this->_impl_.null_behavior_ = from._impl_.null_behavior_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9483,13 +10799,7 @@ void UpdateByDeltaOptions::CopyFrom(const UpdateByDeltaOptions& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByDeltaOptions::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByDeltaOptions::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByDeltaOptions::InternalSwap(UpdateByDeltaOptions* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -9497,68 +10807,50 @@ void UpdateByDeltaOptions::InternalSwap(UpdateByDeltaOptions* PROTOBUF_RESTRICT } ::google::protobuf::Metadata UpdateByDeltaOptions::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[14]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOptions::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_._has_bits_); - static void set_has_use_redirection(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_chunk_capacity(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_max_static_sparse_memory_overhead(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_initial_hash_table_size(HasBits* has_bits) { - (*has_bits)[0] |= 64u; - } - static void set_has_maximum_load_factor(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_target_load_factor(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } - static const ::io::deephaven::proto::backplane::grpc::MathContext& math_context(const UpdateByRequest_UpdateByOptions* msg); - static void set_has_math_context(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByRequest_UpdateByOptions::_Internal::math_context(const UpdateByRequest_UpdateByOptions* msg) { - return *msg->_impl_.math_context_; -} UpdateByRequest_UpdateByOptions::UpdateByRequest_UpdateByOptions(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOptions::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOptions::UpdateByRequest_UpdateByOptions( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOptions& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOptions* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.math_context_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MathContext>(arena, *from._impl_.math_context_) - : nullptr; + _impl_.math_context_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MathContext>( + arena, *from._impl_.math_context_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, use_redirection_), reinterpret_cast(&from._impl_) + @@ -9594,34 +10886,34 @@ inline void UpdateByRequest_UpdateByOptions::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOptions::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.math_context_ != nullptr); - _impl_.math_context_->Clear(); - } - if (cached_has_bits & 0x0000007eu) { - ::memset(&_impl_.use_redirection_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.initial_hash_table_size_) - - reinterpret_cast(&_impl_.use_redirection_)) + sizeof(_impl_.initial_hash_table_size_)); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOptions::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOptions::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOptions_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOptions::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOptions::ByteSizeLong, + &UpdateByRequest_UpdateByOptions::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOptions::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOptions::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 7, 1, 0, 2> UpdateByRequest_UpdateByOptions::_table_ = { { @@ -9634,8 +10926,12 @@ const ::_pbi::TcParseTable<3, 7, 1, 0, 2> UpdateByRequest_UpdateByOptions::_tabl 7, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOptions_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // optional bool use_redirection = 1; @@ -9689,135 +10985,158 @@ const ::_pbi::TcParseTable<3, 7, 1, 0, 2> UpdateByRequest_UpdateByOptions::_tabl }}, }; -::uint8_t* UpdateByRequest_UpdateByOptions::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional bool use_redirection = 1; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_use_redirection(), target); - } - - // optional int32 chunk_capacity = 2; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<2>( - stream, this->_internal_chunk_capacity(), target); - } - - // optional double max_static_sparse_memory_overhead = 3; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 3, this->_internal_max_static_sparse_memory_overhead(), target); - } - - // optional int32 initial_hash_table_size = 4; - if (cached_has_bits & 0x00000040u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<4>( - stream, this->_internal_initial_hash_table_size(), target); - } - - // optional double maximum_load_factor = 5; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 5, this->_internal_maximum_load_factor(), target); - } - - // optional double target_load_factor = 6; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 6, this->_internal_target_load_factor(), target); - } - - // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::math_context(this), - _Internal::math_context(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - return target; -} - -::size_t UpdateByRequest_UpdateByOptions::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOptions::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.math_context_); - } - - // optional bool use_redirection = 1; - if (cached_has_bits & 0x00000002u) { - total_size += 2; - } - - // optional int32 chunk_capacity = 2; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_chunk_capacity()); - } - - // optional double max_static_sparse_memory_overhead = 3; - if (cached_has_bits & 0x00000008u) { - total_size += 9; - } - - // optional double maximum_load_factor = 5; - if (cached_has_bits & 0x00000010u) { - total_size += 9; - } - - // optional double target_load_factor = 6; - if (cached_has_bits & 0x00000020u) { - total_size += 9; - } - - // optional int32 initial_hash_table_size = 4; - if (cached_has_bits & 0x00000040u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_initial_hash_table_size()); - } - + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(_impl_.math_context_ != nullptr); + _impl_.math_context_->Clear(); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOptions::_class_data_ = { - UpdateByRequest_UpdateByOptions::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOptions::GetClassData() const { - return &_class_data_; + if (cached_has_bits & 0x0000007eu) { + ::memset(&_impl_.use_redirection_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.initial_hash_table_size_) - + reinterpret_cast(&_impl_.use_redirection_)) + sizeof(_impl_.initial_hash_table_size_)); + } + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOptions::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOptions::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOptions::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional bool use_redirection = 1; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_use_redirection(), target); + } + + // optional int32 chunk_capacity = 2; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<2>( + stream, this_._internal_chunk_capacity(), target); + } + + // optional double max_static_sparse_memory_overhead = 3; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 3, this_._internal_max_static_sparse_memory_overhead(), target); + } + + // optional int32 initial_hash_table_size = 4; + if (cached_has_bits & 0x00000040u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<4>( + stream, this_._internal_initial_hash_table_size(), target); + } + + // optional double maximum_load_factor = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 5, this_._internal_maximum_load_factor(), target); + } + + // optional double target_load_factor = 6; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 6, this_._internal_target_load_factor(), target); + } + + // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.math_context_, this_._impl_.math_context_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOptions::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOptions& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOptions::ByteSizeLong() const { + const UpdateByRequest_UpdateByOptions& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000007fu) { + // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.math_context_); + } + // optional bool use_redirection = 1; + if (cached_has_bits & 0x00000002u) { + total_size += 2; + } + // optional int32 chunk_capacity = 2; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_chunk_capacity()); + } + // optional double max_static_sparse_memory_overhead = 3; + if (cached_has_bits & 0x00000008u) { + total_size += 9; + } + // optional double maximum_load_factor = 5; + if (cached_has_bits & 0x00000010u) { + total_size += 9; + } + // optional double target_load_factor = 6; + if (cached_has_bits & 0x00000020u) { + total_size += 9; + } + // optional int32 initial_hash_table_size = 4; + if (cached_has_bits & 0x00000040u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_initial_hash_table_size()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOptions::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -9826,8 +11145,13 @@ void UpdateByRequest_UpdateByOptions::MergeImpl(::google::protobuf::Message& to_ cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_math_context()->::io::deephaven::proto::backplane::grpc::MathContext::MergeFrom( - from._internal_math_context()); + ABSL_DCHECK(from._impl_.math_context_ != nullptr); + if (_this->_impl_.math_context_ == nullptr) { + _this->_impl_.math_context_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MathContext>(arena, *from._impl_.math_context_); + } else { + _this->_impl_.math_context_->MergeFrom(*from._impl_.math_context_); + } } if (cached_has_bits & 0x00000002u) { _this->_impl_.use_redirection_ = from._impl_.use_redirection_; @@ -9847,8 +11171,8 @@ void UpdateByRequest_UpdateByOptions::MergeImpl(::google::protobuf::Message& to_ if (cached_has_bits & 0x00000040u) { _this->_impl_.initial_hash_table_size_ = from._impl_.initial_hash_table_size_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -9859,13 +11183,7 @@ void UpdateByRequest_UpdateByOptions::CopyFrom(const UpdateByRequest_UpdateByOpt MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOptions::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOptions::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOptions::InternalSwap(UpdateByRequest_UpdateByOptions* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -9879,9 +11197,7 @@ void UpdateByRequest_UpdateByOptions::InternalSwap(UpdateByRequest_UpdateByOptio } ::google::protobuf::Metadata UpdateByRequest_UpdateByOptions::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[15]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9890,13 +11206,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu }; UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -9905,6 +11229,61 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -9914,9 +11293,7 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[16]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9925,13 +11302,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu }; UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -9940,6 +11325,61 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -9949,9 +11389,7 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[17]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9960,13 +11398,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu }; UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -9975,6 +11421,61 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -9984,9 +11485,7 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[18]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -9995,13 +11494,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu }; UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -10010,6 +11517,61 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -10019,9 +11581,7 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulative ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[19]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -10030,13 +11590,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill }; UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -10045,6 +11613,61 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::Upda // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -10054,60 +11677,53 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::Upda ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[20]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* msg); - static void set_has_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* msg) { - return *msg->_impl_.options_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_Internal::window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* msg) { - return *msg->_impl_.window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_) - : nullptr; - _impl_.window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>( + arena, *from._impl_.options_) + : nullptr; + _impl_.window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) } @@ -10137,35 +11753,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.window_scale_ != nullptr); - _impl_.window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_table_ = { { @@ -10178,8 +11793,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -10203,74 +11822,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::window_scale(this), - _Internal::window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.window_scale_); + ABSL_DCHECK(_impl_.window_scale_ != nullptr); + _impl_.window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.window_scale_, this_._impl_.window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -10279,14 +11927,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma:: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByEmOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_window_scale()); + ABSL_DCHECK(from._impl_.window_scale_ != nullptr); + if (_this->_impl_.window_scale_ == nullptr) { + _this->_impl_.window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_); + } else { + _this->_impl_.window_scale_->MergeFrom(*from._impl_.window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -10297,13 +11956,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma:: MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -10317,60 +11970,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma:: } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[21]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* msg); - static void set_has_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* msg) { - return *msg->_impl_.options_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_Internal::window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* msg) { - return *msg->_impl_.window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_) - : nullptr; - _impl_.window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>( + arena, *from._impl_.options_) + : nullptr; + _impl_.window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) } @@ -10400,35 +12046,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.window_scale_ != nullptr); - _impl_.window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_table_ = { { @@ -10441,8 +12086,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -10466,74 +12115,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::window_scale(this), - _Internal::window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.window_scale_); + ABSL_DCHECK(_impl_.window_scale_ != nullptr); + _impl_.window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.window_scale_, this_._impl_.window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -10542,14 +12220,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms:: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByEmOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_window_scale()); + ABSL_DCHECK(from._impl_.window_scale_ != nullptr); + if (_this->_impl_.window_scale_ == nullptr) { + _this->_impl_.window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_); + } else { + _this->_impl_.window_scale_->MergeFrom(*from._impl_.window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -10560,13 +12249,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms:: MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -10580,60 +12263,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms:: } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[22]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* msg); - static void set_has_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* msg) { - return *msg->_impl_.options_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_Internal::window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* msg) { - return *msg->_impl_.window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_) - : nullptr; - _impl_.window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>( + arena, *from._impl_.options_) + : nullptr; + _impl_.window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) } @@ -10663,35 +12339,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.window_scale_ != nullptr); - _impl_.window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_table_ = { { @@ -10704,8 +12379,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -10729,74 +12408,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::window_scale(this), - _Internal::window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.window_scale_); + ABSL_DCHECK(_impl_.window_scale_ != nullptr); + _impl_.window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.window_scale_, this_._impl_.window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -10805,14 +12513,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByEmOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_window_scale()); + ABSL_DCHECK(from._impl_.window_scale_ != nullptr); + if (_this->_impl_.window_scale_ == nullptr) { + _this->_impl_.window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_); + } else { + _this->_impl_.window_scale_->MergeFrom(*from._impl_.window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -10823,13 +12542,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -10843,60 +12556,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[23]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* msg); - static void set_has_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* msg) { - return *msg->_impl_.options_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_Internal::window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* msg) { - return *msg->_impl_.window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_) - : nullptr; - _impl_.window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>( + arena, *from._impl_.options_) + : nullptr; + _impl_.window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) } @@ -10926,35 +12632,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.window_scale_ != nullptr); - _impl_.window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_table_ = { { @@ -10967,8 +12672,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -10992,74 +12701,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::window_scale(this), - _Internal::window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.window_scale_); + ABSL_DCHECK(_impl_.window_scale_ != nullptr); + _impl_.window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.window_scale_, this_._impl_.window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11068,14 +12806,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByEmOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_window_scale()); + ABSL_DCHECK(from._impl_.window_scale_ != nullptr); + if (_this->_impl_.window_scale_ == nullptr) { + _this->_impl_.window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_); + } else { + _this->_impl_.window_scale_->MergeFrom(*from._impl_.window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11086,13 +12835,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11106,60 +12849,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[24]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* msg); - static void set_has_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* msg) { - return *msg->_impl_.options_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_Internal::window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* msg) { - return *msg->_impl_.window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_) - : nullptr; - _impl_.window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>( + arena, *from._impl_.options_) + : nullptr; + _impl_.window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) } @@ -11189,35 +12925,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.window_scale_ != nullptr); - _impl_.window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_table_ = { { @@ -11230,8 +12965,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -11255,74 +12994,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::window_scale(this), - _Internal::window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.window_scale_); + ABSL_DCHECK(_impl_.window_scale_ != nullptr); + _impl_.window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.window_scale_, this_._impl_.window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11331,14 +13099,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByEmOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_window_scale()); + ABSL_DCHECK(from._impl_.window_scale_ != nullptr); + if (_this->_impl_.window_scale_ == nullptr) { + _this->_impl_.window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.window_scale_); + } else { + _this->_impl_.window_scale_->MergeFrom(*from._impl_.window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11349,13 +13128,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11369,50 +13142,50 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[25]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_Internal::options(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* msg) { - return *msg->_impl_.options_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.options_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>(arena, *from._impl_.options_) - : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>( + arena, *from._impl_.options_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) } @@ -11436,29 +13209,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_table_ = { { @@ -11471,8 +13249,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation_Upda 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; {::_pbi::TcParser::FastMtS1, @@ -11489,68 +13271,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - return target; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - ::size_t total_size = 0; - +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) + ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; - cached_has_bits = _impl_._has_bits_[0]; + cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::GetClassData() const { - return &_class_data_; -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11561,13 +13376,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11576,60 +13385,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[26]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) } @@ -11659,35 +13461,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_table_ = { { @@ -11700,8 +13501,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -11725,74 +13530,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -11801,14 +13635,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -11819,13 +13664,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -11839,60 +13678,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[27]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) } @@ -11922,35 +13754,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_table_ = { { @@ -11963,8 +13794,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -11988,74 +13823,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12064,14 +13928,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12082,13 +13957,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -12102,60 +13971,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[28]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) } @@ -12185,35 +14047,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_table_ = { { @@ -12226,8 +14087,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -12251,74 +14116,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12327,14 +14221,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12345,13 +14250,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -12365,60 +14264,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[29]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) } @@ -12448,35 +14340,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_table_ = { { @@ -12489,8 +14380,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -12514,74 +14409,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12590,14 +14514,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12608,13 +14543,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -12628,60 +14557,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[30]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) } @@ -12711,35 +14633,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_table_ = { { @@ -12752,8 +14673,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -12777,74 +14702,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -12853,14 +14807,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -12871,13 +14836,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -12891,60 +14850,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[31]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) } @@ -12974,35 +14926,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_table_ = { { @@ -13015,8 +14966,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -13040,74 +14995,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -13116,14 +15100,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13134,13 +15129,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -13154,60 +15143,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[32]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) } @@ -13237,35 +15219,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_table_ = { { @@ -13278,8 +15259,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -13303,74 +15288,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -13379,14 +15393,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13397,13 +15422,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -13417,60 +15436,53 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[33]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) } @@ -13500,35 +15512,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_table_ = { { @@ -13541,8 +15552,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; {::_pbi::TcParser::FastMtS1, @@ -13566,74 +15581,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> UpdateByRequest_UpdateByOperation_Upda }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -13642,14 +15686,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13660,13 +15715,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -13680,41 +15729,30 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[34]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, weight_column_(arena, from.weight_column_) {} @@ -13722,19 +15760,23 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_U UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) } @@ -13766,36 +15808,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.weight_column_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 137, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_table_ = { { @@ -13808,8 +15848,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 137, 2> UpdateByRequest_UpdateByOperation_Up 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; @@ -13843,88 +15887,119 @@ const ::_pbi::TcParseTable<2, 3, 2, 137, 2> UpdateByRequest_UpdateByOperation_Up }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - // string weight_column = 3; - if (!this->_internal_weight_column().empty()) { - const std::string& _s = this->_internal_weight_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string weight_column = 3; - if (!this->_internal_weight_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_weight_column()); - } - + _impl_.weight_column_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + // string weight_column = 3; + if (!this_._internal_weight_column().empty()) { + const std::string& _s = this_._internal_weight_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string weight_column = 3; + if (!this_._internal_weight_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_weight_column()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -13936,14 +16011,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -13954,13 +16040,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -13977,41 +16057,30 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[35]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* msg); - static void set_has_reverse_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* msg); - static void set_has_forward_window_scale(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_Internal::reverse_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* msg) { - return *msg->_impl_.reverse_window_scale_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_Internal::forward_window_scale(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* msg) { - return *msg->_impl_.forward_window_scale_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, formula_(arena, from.formula_), @@ -14020,19 +16089,23 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_U UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_) - : nullptr; - _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_) - : nullptr; + _impl_.reverse_window_scale_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.reverse_window_scale_) + : nullptr; + _impl_.forward_window_scale_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>( + arena, *from._impl_.forward_window_scale_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) } @@ -14066,37 +16139,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.formula_.ClearToEmpty(); - _impl_.param_token_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); - _impl_.reverse_window_scale_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); - _impl_.forward_window_scale_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 145, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_table_ = { { @@ -14109,8 +16179,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 145, 2> UpdateByRequest_UpdateByOperation_Up 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string param_token = 4; {::_pbi::TcParser::FastUS1, @@ -14150,102 +16224,133 @@ const ::_pbi::TcParseTable<2, 4, 2, 145, 2> UpdateByRequest_UpdateByOperation_Up }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reverse_window_scale(this), - _Internal::reverse_window_scale(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::forward_window_scale(this), - _Internal::forward_window_scale(this).GetCachedSize(), target, stream); - } - - // string formula = 3; - if (!this->_internal_formula().empty()) { - const std::string& _s = this->_internal_formula(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // string param_token = 4; - if (!this->_internal_param_token().empty()) { - const std::string& _s = this->_internal_param_token(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token"); - target = stream->WriteStringMaybeAliased(4, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string formula = 3; - if (!this->_internal_formula().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_formula()); - } - - // string param_token = 4; - if (!this->_internal_param_token().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_param_token()); - } - + _impl_.formula_.ClearToEmpty(); + _impl_.param_token_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reverse_window_scale_); + ABSL_DCHECK(_impl_.reverse_window_scale_ != nullptr); + _impl_.reverse_window_scale_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.forward_window_scale_); + ABSL_DCHECK(_impl_.forward_window_scale_ != nullptr); + _impl_.forward_window_scale_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reverse_window_scale_, this_._impl_.reverse_window_scale_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.forward_window_scale_, this_._impl_.forward_window_scale_->GetCachedSize(), target, + stream); + } + + // string formula = 3; + if (!this_._internal_formula().empty()) { + const std::string& _s = this_._internal_formula(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // string param_token = 4; + if (!this_._internal_param_token().empty()) { + const std::string& _s = this_._internal_param_token(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token"); + target = stream->WriteStringMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string formula = 3; + if (!this_._internal_formula().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_formula()); + } + // string param_token = 4; + if (!this_._internal_param_token().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_param_token()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reverse_window_scale_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.forward_window_scale_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -14260,14 +16365,25 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_reverse_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_reverse_window_scale()); + ABSL_DCHECK(from._impl_.reverse_window_scale_ != nullptr); + if (_this->_impl_.reverse_window_scale_ == nullptr) { + _this->_impl_.reverse_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.reverse_window_scale_); + } else { + _this->_impl_.reverse_window_scale_->MergeFrom(*from._impl_.reverse_window_scale_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_forward_window_scale()->::io::deephaven::proto::backplane::grpc::UpdateByWindowScale::MergeFrom( - from._internal_forward_window_scale()); + ABSL_DCHECK(from._impl_.forward_window_scale_ != nullptr); + if (_this->_impl_.forward_window_scale_ == nullptr) { + _this->_impl_.forward_window_scale_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(arena, *from._impl_.forward_window_scale_); + } else { + _this->_impl_.forward_window_scale_->MergeFrom(*from._impl_.forward_window_scale_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -14278,13 +16394,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -14302,102 +16412,16 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRolli } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[36]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& sum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& product(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& fill(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& ema(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& rolling_sum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& rolling_group(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& rolling_avg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& rolling_min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& rolling_max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& rolling_product(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& delta(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& ems(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& em_min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& em_max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& em_std(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& rolling_count(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& rolling_std(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& rolling_wavg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& rolling_formula(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::sum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.sum_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.min_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.max_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::product(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.product_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::fill(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.fill_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::ema(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.ema_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_sum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_sum_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_group(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_group_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_avg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_avg_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_min_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_max_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_product(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_product_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::delta(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.delta_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::ems(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.ems_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::em_min(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.em_min_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::em_max(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.em_max_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::em_std(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.em_std_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_count(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_count_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_std(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_std_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_wavg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_wavg_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_Internal::rolling_formula(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* msg) { - return *msg->_impl_.type_.rolling_formula_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* sum) { ::google::protobuf::Arena* message_arena = GetArena(); clear_type(); @@ -14672,13 +16696,17 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocate // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) } UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -14686,77 +16714,81 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_U UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; case kSum: - _impl_.type_.sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(arena, *from._impl_.type_.sum_); + _impl_.type_.sum_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(arena, *from._impl_.type_.sum_); break; case kMin: - _impl_.type_.min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(arena, *from._impl_.type_.min_); + _impl_.type_.min_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(arena, *from._impl_.type_.min_); break; case kMax: - _impl_.type_.max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(arena, *from._impl_.type_.max_); + _impl_.type_.max_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(arena, *from._impl_.type_.max_); break; case kProduct: - _impl_.type_.product_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(arena, *from._impl_.type_.product_); + _impl_.type_.product_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(arena, *from._impl_.type_.product_); break; case kFill: - _impl_.type_.fill_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(arena, *from._impl_.type_.fill_); + _impl_.type_.fill_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(arena, *from._impl_.type_.fill_); break; case kEma: - _impl_.type_.ema_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(arena, *from._impl_.type_.ema_); + _impl_.type_.ema_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(arena, *from._impl_.type_.ema_); break; case kRollingSum: - _impl_.type_.rolling_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(arena, *from._impl_.type_.rolling_sum_); + _impl_.type_.rolling_sum_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(arena, *from._impl_.type_.rolling_sum_); break; case kRollingGroup: - _impl_.type_.rolling_group_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(arena, *from._impl_.type_.rolling_group_); + _impl_.type_.rolling_group_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(arena, *from._impl_.type_.rolling_group_); break; case kRollingAvg: - _impl_.type_.rolling_avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(arena, *from._impl_.type_.rolling_avg_); + _impl_.type_.rolling_avg_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(arena, *from._impl_.type_.rolling_avg_); break; case kRollingMin: - _impl_.type_.rolling_min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(arena, *from._impl_.type_.rolling_min_); + _impl_.type_.rolling_min_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(arena, *from._impl_.type_.rolling_min_); break; case kRollingMax: - _impl_.type_.rolling_max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(arena, *from._impl_.type_.rolling_max_); + _impl_.type_.rolling_max_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(arena, *from._impl_.type_.rolling_max_); break; case kRollingProduct: - _impl_.type_.rolling_product_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(arena, *from._impl_.type_.rolling_product_); + _impl_.type_.rolling_product_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(arena, *from._impl_.type_.rolling_product_); break; case kDelta: - _impl_.type_.delta_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(arena, *from._impl_.type_.delta_); + _impl_.type_.delta_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(arena, *from._impl_.type_.delta_); break; case kEms: - _impl_.type_.ems_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(arena, *from._impl_.type_.ems_); + _impl_.type_.ems_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(arena, *from._impl_.type_.ems_); break; case kEmMin: - _impl_.type_.em_min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(arena, *from._impl_.type_.em_min_); + _impl_.type_.em_min_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(arena, *from._impl_.type_.em_min_); break; case kEmMax: - _impl_.type_.em_max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(arena, *from._impl_.type_.em_max_); + _impl_.type_.em_max_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(arena, *from._impl_.type_.em_max_); break; case kEmStd: - _impl_.type_.em_std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(arena, *from._impl_.type_.em_std_); + _impl_.type_.em_std_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(arena, *from._impl_.type_.em_std_); break; case kRollingCount: - _impl_.type_.rolling_count_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(arena, *from._impl_.type_.rolling_count_); + _impl_.type_.rolling_count_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(arena, *from._impl_.type_.rolling_count_); break; case kRollingStd: - _impl_.type_.rolling_std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(arena, *from._impl_.type_.rolling_std_); + _impl_.type_.rolling_std_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(arena, *from._impl_.type_.rolling_std_); break; case kRollingWavg: - _impl_.type_.rolling_wavg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(arena, *from._impl_.type_.rolling_wavg_); + _impl_.type_.rolling_wavg_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(arena, *from._impl_.type_.rolling_wavg_); break; case kRollingFormula: - _impl_.type_.rolling_formula_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(arena, *from._impl_.type_.rolling_formula_); + _impl_.type_.rolling_formula_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(arena, *from._impl_.type_.rolling_formula_); break; } @@ -14787,131 +16819,173 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::Share void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kSum: { if (GetArena() == nullptr) { delete _impl_.type_.sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sum_); } break; } case kMin: { if (GetArena() == nullptr) { delete _impl_.type_.min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.min_); } break; } case kMax: { if (GetArena() == nullptr) { delete _impl_.type_.max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.max_); } break; } case kProduct: { if (GetArena() == nullptr) { delete _impl_.type_.product_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.product_); } break; } case kFill: { if (GetArena() == nullptr) { delete _impl_.type_.fill_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.fill_); } break; } case kEma: { if (GetArena() == nullptr) { delete _impl_.type_.ema_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ema_); } break; } case kRollingSum: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_sum_); } break; } case kRollingGroup: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_group_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_group_); } break; } case kRollingAvg: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_avg_); } break; } case kRollingMin: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_min_); } break; } case kRollingMax: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_max_); } break; } case kRollingProduct: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_product_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_product_); } break; } case kDelta: { if (GetArena() == nullptr) { delete _impl_.type_.delta_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.delta_); } break; } case kEms: { if (GetArena() == nullptr) { delete _impl_.type_.ems_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ems_); } break; } case kEmMin: { if (GetArena() == nullptr) { delete _impl_.type_.em_min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_min_); } break; } case kEmMax: { if (GetArena() == nullptr) { delete _impl_.type_.em_max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_max_); } break; } case kEmStd: { if (GetArena() == nullptr) { delete _impl_.type_.em_std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_std_); } break; } case kRollingCount: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_count_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_count_); } break; } case kRollingStd: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_std_); } break; } case kRollingWavg: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_wavg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_wavg_); } break; } case kRollingFormula: { if (GetArena() == nullptr) { delete _impl_.type_.rolling_formula_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_formula_); } break; } @@ -14923,24 +16997,34 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_type() } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 21, 21, 0, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_table_ = { { @@ -14953,8 +17037,12 @@ const ::_pbi::TcParseTable<0, 21, 21, 0, 2> UpdateByRequest_UpdateByOperation_Up 21, // num_field_entries 21, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -14962,19 +17050,19 @@ const ::_pbi::TcParseTable<0, 21, 21, 0, 2> UpdateByRequest_UpdateByOperation_Up }}, {{ // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum sum = 1; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.sum_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin min = 2; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.min_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax max = 3; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.max_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct product = 4; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.product_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill fill = 5; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.fill_), _Internal::kOneofCaseOffset + 0, 4, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma ema = 6; {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.ema_), _Internal::kOneofCaseOffset + 0, 5, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, @@ -15024,11 +17112,11 @@ const ::_pbi::TcParseTable<0, 21, 21, 0, 2> UpdateByRequest_UpdateByOperation_Up {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_formula_), _Internal::kOneofCaseOffset + 0, 20, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, }}, {{ - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>()}, @@ -15049,418 +17137,531 @@ const ::_pbi::TcParseTable<0, 21, 21, 0, 2> UpdateByRequest_UpdateByOperation_Up }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - switch (type_case()) { - case kSum: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::sum(this), - _Internal::sum(this).GetCachedSize(), target, stream); - break; - } - case kMin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::min(this), - _Internal::min(this).GetCachedSize(), target, stream); - break; - } - case kMax: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::max(this), - _Internal::max(this).GetCachedSize(), target, stream); - break; - } - case kProduct: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::product(this), - _Internal::product(this).GetCachedSize(), target, stream); - break; - } - case kFill: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::fill(this), - _Internal::fill(this).GetCachedSize(), target, stream); - break; - } - case kEma: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::ema(this), - _Internal::ema(this).GetCachedSize(), target, stream); - break; - } - case kRollingSum: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::rolling_sum(this), - _Internal::rolling_sum(this).GetCachedSize(), target, stream); - break; - } - case kRollingGroup: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::rolling_group(this), - _Internal::rolling_group(this).GetCachedSize(), target, stream); - break; - } - case kRollingAvg: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::rolling_avg(this), - _Internal::rolling_avg(this).GetCachedSize(), target, stream); - break; - } - case kRollingMin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 10, _Internal::rolling_min(this), - _Internal::rolling_min(this).GetCachedSize(), target, stream); - break; - } - case kRollingMax: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 11, _Internal::rolling_max(this), - _Internal::rolling_max(this).GetCachedSize(), target, stream); - break; - } - case kRollingProduct: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 12, _Internal::rolling_product(this), - _Internal::rolling_product(this).GetCachedSize(), target, stream); - break; - } - case kDelta: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 13, _Internal::delta(this), - _Internal::delta(this).GetCachedSize(), target, stream); - break; - } - case kEms: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 14, _Internal::ems(this), - _Internal::ems(this).GetCachedSize(), target, stream); - break; - } - case kEmMin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 15, _Internal::em_min(this), - _Internal::em_min(this).GetCachedSize(), target, stream); - break; - } - case kEmMax: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 16, _Internal::em_max(this), - _Internal::em_max(this).GetCachedSize(), target, stream); - break; - } - case kEmStd: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 17, _Internal::em_std(this), - _Internal::em_std(this).GetCachedSize(), target, stream); - break; - } - case kRollingCount: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 18, _Internal::rolling_count(this), - _Internal::rolling_count(this).GetCachedSize(), target, stream); - break; - } - case kRollingStd: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 19, _Internal::rolling_std(this), - _Internal::rolling_std(this).GetCachedSize(), target, stream); - break; - } - case kRollingWavg: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 20, _Internal::rolling_wavg(this), - _Internal::rolling_wavg(this).GetCachedSize(), target, stream); - break; - } - case kRollingFormula: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 21, _Internal::rolling_formula(this), - _Internal::rolling_formula(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - return target; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - ::size_t total_size = 0; - +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.type_case()) { + case kSum: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.type_.sum_, this_._impl_.type_.sum_->GetCachedSize(), target, + stream); + break; + } + case kMin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.type_.min_, this_._impl_.type_.min_->GetCachedSize(), target, + stream); + break; + } + case kMax: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.type_.max_, this_._impl_.type_.max_->GetCachedSize(), target, + stream); + break; + } + case kProduct: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.type_.product_, this_._impl_.type_.product_->GetCachedSize(), target, + stream); + break; + } + case kFill: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.type_.fill_, this_._impl_.type_.fill_->GetCachedSize(), target, + stream); + break; + } + case kEma: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.type_.ema_, this_._impl_.type_.ema_->GetCachedSize(), target, + stream); + break; + } + case kRollingSum: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.type_.rolling_sum_, this_._impl_.type_.rolling_sum_->GetCachedSize(), target, + stream); + break; + } + case kRollingGroup: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.type_.rolling_group_, this_._impl_.type_.rolling_group_->GetCachedSize(), target, + stream); + break; + } + case kRollingAvg: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.type_.rolling_avg_, this_._impl_.type_.rolling_avg_->GetCachedSize(), target, + stream); + break; + } + case kRollingMin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, *this_._impl_.type_.rolling_min_, this_._impl_.type_.rolling_min_->GetCachedSize(), target, + stream); + break; + } + case kRollingMax: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 11, *this_._impl_.type_.rolling_max_, this_._impl_.type_.rolling_max_->GetCachedSize(), target, + stream); + break; + } + case kRollingProduct: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 12, *this_._impl_.type_.rolling_product_, this_._impl_.type_.rolling_product_->GetCachedSize(), target, + stream); + break; + } + case kDelta: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 13, *this_._impl_.type_.delta_, this_._impl_.type_.delta_->GetCachedSize(), target, + stream); + break; + } + case kEms: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 14, *this_._impl_.type_.ems_, this_._impl_.type_.ems_->GetCachedSize(), target, + stream); + break; + } + case kEmMin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 15, *this_._impl_.type_.em_min_, this_._impl_.type_.em_min_->GetCachedSize(), target, + stream); + break; + } + case kEmMax: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 16, *this_._impl_.type_.em_max_, this_._impl_.type_.em_max_->GetCachedSize(), target, + stream); + break; + } + case kEmStd: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 17, *this_._impl_.type_.em_std_, this_._impl_.type_.em_std_->GetCachedSize(), target, + stream); + break; + } + case kRollingCount: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 18, *this_._impl_.type_.rolling_count_, this_._impl_.type_.rolling_count_->GetCachedSize(), target, + stream); + break; + } + case kRollingStd: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 19, *this_._impl_.type_.rolling_std_, this_._impl_.type_.rolling_std_->GetCachedSize(), target, + stream); + break; + } + case kRollingWavg: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 20, *this_._impl_.type_.rolling_wavg_, this_._impl_.type_.rolling_wavg_->GetCachedSize(), target, + stream); + break; + } + case kRollingFormula: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 21, *this_._impl_.type_.rolling_formula_, this_._impl_.type_.rolling_formula_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum sum = 1; + case kSum: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.sum_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin min = 2; + case kMin: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.min_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax max = 3; + case kMax: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.max_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct product = 4; + case kProduct: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.product_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill fill = 5; + case kFill: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.fill_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma ema = 6; + case kEma: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.ema_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum rolling_sum = 7; + case kRollingSum: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_sum_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup rolling_group = 8; + case kRollingGroup: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_group_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg rolling_avg = 9; + case kRollingAvg: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_avg_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin rolling_min = 10; + case kRollingMin: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_min_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax rolling_max = 11; + case kRollingMax: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_max_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct rolling_product = 12; + case kRollingProduct: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_product_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta delta = 13; + case kDelta: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.delta_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms ems = 14; + case kEms: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.ems_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin em_min = 15; + case kEmMin: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.em_min_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax em_max = 16; + case kEmMax: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.em_max_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd em_std = 17; + case kEmStd: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.em_std_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount rolling_count = 18; + case kRollingCount: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_count_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd rolling_std = 19; + case kRollingStd: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_std_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg rolling_wavg = 20; + case kRollingWavg: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_wavg_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula rolling_formula = 21; + case kRollingFormula: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.rolling_formula_); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) + ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum sum = 1; - case kSum: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.sum_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin min = 2; - case kMin: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.min_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax max = 3; - case kMax: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.max_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct product = 4; - case kProduct: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.product_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill fill = 5; - case kFill: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.fill_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma ema = 6; - case kEma: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.ema_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum rolling_sum = 7; - case kRollingSum: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_sum_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup rolling_group = 8; - case kRollingGroup: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_group_); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg rolling_avg = 9; - case kRollingAvg: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_avg_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin rolling_min = 10; - case kRollingMin: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_min_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax rolling_max = 11; - case kRollingMax: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_max_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct rolling_product = 12; - case kRollingProduct: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_product_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta delta = 13; - case kDelta: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.delta_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms ems = 14; - case kEms: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.ems_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin em_min = 15; - case kEmMin: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.em_min_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax em_max = 16; - case kEmMax: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.em_max_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd em_std = 17; - case kEmStd: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.em_std_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount rolling_count = 18; - case kRollingCount: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_count_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd rolling_std = 19; - case kRollingStd: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_std_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg rolling_wavg = 20; - case kRollingWavg: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_wavg_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula rolling_formula = 21; - case kRollingFormula: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.rolling_formula_); - break; - } - case TYPE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::GetClassData() const { - return &_class_data_; -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - switch (from.type_case()) { - case kSum: { - _this->_internal_mutable_sum()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::MergeFrom( - from._internal_sum()); - break; - } - case kMin: { - _this->_internal_mutable_min()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::MergeFrom( - from._internal_min()); - break; - } - case kMax: { - _this->_internal_mutable_max()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::MergeFrom( - from._internal_max()); - break; - } - case kProduct: { - _this->_internal_mutable_product()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::MergeFrom( - from._internal_product()); - break; - } - case kFill: { - _this->_internal_mutable_fill()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::MergeFrom( - from._internal_fill()); - break; - } - case kEma: { - _this->_internal_mutable_ema()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeFrom( - from._internal_ema()); - break; - } - case kRollingSum: { - _this->_internal_mutable_rolling_sum()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeFrom( - from._internal_rolling_sum()); - break; - } - case kRollingGroup: { - _this->_internal_mutable_rolling_group()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeFrom( - from._internal_rolling_group()); - break; - } - case kRollingAvg: { - _this->_internal_mutable_rolling_avg()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeFrom( - from._internal_rolling_avg()); - break; - } - case kRollingMin: { - _this->_internal_mutable_rolling_min()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeFrom( - from._internal_rolling_min()); - break; - } - case kRollingMax: { - _this->_internal_mutable_rolling_max()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeFrom( - from._internal_rolling_max()); - break; - } - case kRollingProduct: { - _this->_internal_mutable_rolling_product()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeFrom( - from._internal_rolling_product()); - break; - } - case kDelta: { - _this->_internal_mutable_delta()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeFrom( - from._internal_delta()); - break; - } - case kEms: { - _this->_internal_mutable_ems()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeFrom( - from._internal_ems()); - break; - } - case kEmMin: { - _this->_internal_mutable_em_min()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeFrom( - from._internal_em_min()); - break; - } - case kEmMax: { - _this->_internal_mutable_em_max()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeFrom( - from._internal_em_max()); - break; - } - case kEmStd: { - _this->_internal_mutable_em_std()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeFrom( - from._internal_em_std()); - break; - } - case kRollingCount: { - _this->_internal_mutable_rolling_count()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeFrom( - from._internal_rolling_count()); - break; - } - case kRollingStd: { - _this->_internal_mutable_rolling_std()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeFrom( - from._internal_rolling_std()); - break; - } - case kRollingWavg: { - _this->_internal_mutable_rolling_wavg()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeFrom( - from._internal_rolling_wavg()); - break; - } - case kRollingFormula: { - _this->_internal_mutable_rolling_formula()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeFrom( - from._internal_rolling_formula()); - break; - } - case TYPE_NOT_SET: { - break; + switch (oneof_from_case) { + case kSum: { + if (oneof_needs_init) { + _this->_impl_.type_.sum_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(arena, *from._impl_.type_.sum_); + } else { + _this->_impl_.type_.sum_->MergeFrom(from._internal_sum()); + } + break; + } + case kMin: { + if (oneof_needs_init) { + _this->_impl_.type_.min_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(arena, *from._impl_.type_.min_); + } else { + _this->_impl_.type_.min_->MergeFrom(from._internal_min()); + } + break; + } + case kMax: { + if (oneof_needs_init) { + _this->_impl_.type_.max_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(arena, *from._impl_.type_.max_); + } else { + _this->_impl_.type_.max_->MergeFrom(from._internal_max()); + } + break; + } + case kProduct: { + if (oneof_needs_init) { + _this->_impl_.type_.product_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(arena, *from._impl_.type_.product_); + } else { + _this->_impl_.type_.product_->MergeFrom(from._internal_product()); + } + break; + } + case kFill: { + if (oneof_needs_init) { + _this->_impl_.type_.fill_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(arena, *from._impl_.type_.fill_); + } else { + _this->_impl_.type_.fill_->MergeFrom(from._internal_fill()); + } + break; + } + case kEma: { + if (oneof_needs_init) { + _this->_impl_.type_.ema_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(arena, *from._impl_.type_.ema_); + } else { + _this->_impl_.type_.ema_->MergeFrom(from._internal_ema()); + } + break; + } + case kRollingSum: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_sum_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(arena, *from._impl_.type_.rolling_sum_); + } else { + _this->_impl_.type_.rolling_sum_->MergeFrom(from._internal_rolling_sum()); + } + break; + } + case kRollingGroup: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_group_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(arena, *from._impl_.type_.rolling_group_); + } else { + _this->_impl_.type_.rolling_group_->MergeFrom(from._internal_rolling_group()); + } + break; + } + case kRollingAvg: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_avg_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(arena, *from._impl_.type_.rolling_avg_); + } else { + _this->_impl_.type_.rolling_avg_->MergeFrom(from._internal_rolling_avg()); + } + break; + } + case kRollingMin: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_min_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(arena, *from._impl_.type_.rolling_min_); + } else { + _this->_impl_.type_.rolling_min_->MergeFrom(from._internal_rolling_min()); + } + break; + } + case kRollingMax: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_max_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(arena, *from._impl_.type_.rolling_max_); + } else { + _this->_impl_.type_.rolling_max_->MergeFrom(from._internal_rolling_max()); + } + break; + } + case kRollingProduct: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_product_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(arena, *from._impl_.type_.rolling_product_); + } else { + _this->_impl_.type_.rolling_product_->MergeFrom(from._internal_rolling_product()); + } + break; + } + case kDelta: { + if (oneof_needs_init) { + _this->_impl_.type_.delta_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(arena, *from._impl_.type_.delta_); + } else { + _this->_impl_.type_.delta_->MergeFrom(from._internal_delta()); + } + break; + } + case kEms: { + if (oneof_needs_init) { + _this->_impl_.type_.ems_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(arena, *from._impl_.type_.ems_); + } else { + _this->_impl_.type_.ems_->MergeFrom(from._internal_ems()); + } + break; + } + case kEmMin: { + if (oneof_needs_init) { + _this->_impl_.type_.em_min_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(arena, *from._impl_.type_.em_min_); + } else { + _this->_impl_.type_.em_min_->MergeFrom(from._internal_em_min()); + } + break; + } + case kEmMax: { + if (oneof_needs_init) { + _this->_impl_.type_.em_max_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(arena, *from._impl_.type_.em_max_); + } else { + _this->_impl_.type_.em_max_->MergeFrom(from._internal_em_max()); + } + break; + } + case kEmStd: { + if (oneof_needs_init) { + _this->_impl_.type_.em_std_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(arena, *from._impl_.type_.em_std_); + } else { + _this->_impl_.type_.em_std_->MergeFrom(from._internal_em_std()); + } + break; + } + case kRollingCount: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_count_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(arena, *from._impl_.type_.rolling_count_); + } else { + _this->_impl_.type_.rolling_count_->MergeFrom(from._internal_rolling_count()); + } + break; + } + case kRollingStd: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_std_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(arena, *from._impl_.type_.rolling_std_); + } else { + _this->_impl_.type_.rolling_std_->MergeFrom(from._internal_rolling_std()); + } + break; + } + case kRollingWavg: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_wavg_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(arena, *from._impl_.type_.rolling_wavg_); + } else { + _this->_impl_.type_.rolling_wavg_->MergeFrom(from._internal_rolling_wavg()); + } + break; + } + case kRollingFormula: { + if (oneof_needs_init) { + _this->_impl_.type_.rolling_formula_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(arena, *from._impl_.type_.rolling_formula_); + } else { + _this->_impl_.type_.rolling_formula_->MergeFrom(from._internal_rolling_formula()); + } + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -15473,13 +17674,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::CopyFrom(con MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -15488,34 +17683,30 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::InternalSwap } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[37]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation_UpdateByColumn::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& spec(const UpdateByRequest_UpdateByOperation_UpdateByColumn* msg); - static void set_has_spec(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& UpdateByRequest_UpdateByOperation_UpdateByColumn::_Internal::spec(const UpdateByRequest_UpdateByOperation_UpdateByColumn* msg) { - return *msg->_impl_.spec_; -} UpdateByRequest_UpdateByOperation_UpdateByColumn::UpdateByRequest_UpdateByOperation_UpdateByColumn(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, match_pairs_{visibility, arena, from.match_pairs_} {} @@ -15523,16 +17714,20 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn:: UpdateByRequest_UpdateByOperation_UpdateByColumn::UpdateByRequest_UpdateByOperation_UpdateByColumn( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation_UpdateByColumn* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.spec_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>(arena, *from._impl_.spec_) - : nullptr; + _impl_.spec_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>( + arena, *from._impl_.spec_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) } @@ -15557,30 +17752,34 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.match_pairs_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.spec_ != nullptr); - _impl_.spec_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation_UpdateByColumn::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation_UpdateByColumn::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation_UpdateByColumn::ByteSizeLong, + &UpdateByRequest_UpdateByOperation_UpdateByColumn::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation_UpdateByColumn::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 102, 2> UpdateByRequest_UpdateByOperation_UpdateByColumn::_table_ = { { @@ -15593,8 +17792,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 102, 2> UpdateByRequest_UpdateByOperation_Up 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string match_pairs = 2; {::_pbi::TcParser::FastUR1, @@ -15620,83 +17823,123 @@ const ::_pbi::TcParseTable<1, 2, 1, 102, 2> UpdateByRequest_UpdateByOperation_Up }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::spec(this), - _Internal::spec(this).GetCachedSize(), target, stream); - } - - // repeated string match_pairs = 2; - for (int i = 0, n = this->_internal_match_pairs_size(); i < n; ++i) { - const auto& s = this->_internal_match_pairs().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs"); - target = stream->WriteString(2, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - return target; -} - -::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string match_pairs = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_match_pairs().size()); - for (int i = 0, n = _internal_match_pairs().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_match_pairs().Get(i)); - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; + _impl_.match_pairs_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.spec_); + ABSL_DCHECK(_impl_.spec_ != nullptr); + _impl_.spec_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation_UpdateByColumn::_class_data_ = { - UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation_UpdateByColumn::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation_UpdateByColumn::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.spec_, this_._impl_.spec_->GetCachedSize(), target, + stream); + } + + // repeated string match_pairs = 2; + for (int i = 0, n = this_._internal_match_pairs_size(); i < n; ++i) { + const auto& s = this_._internal_match_pairs().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs"); + target = stream->WriteString(2, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation_UpdateByColumn& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation_UpdateByColumn::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation_UpdateByColumn& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string match_pairs = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_match_pairs().size()); + for (int i = 0, n = this_._internal_match_pairs().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_match_pairs().Get(i)); + } + } + } + { + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.spec_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; _this->_internal_mutable_match_pairs()->MergeFrom(from._internal_match_pairs()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_spec()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeFrom( - from._internal_spec()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.spec_ != nullptr); + if (_this->_impl_.spec_ == nullptr) { + _this->_impl_.spec_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>(arena, *from._impl_.spec_); + } else { + _this->_impl_.spec_->MergeFrom(*from._impl_.spec_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -15707,13 +17950,7 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn::CopyFrom(const UpdateByRe MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation_UpdateByColumn::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation_UpdateByColumn::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation_UpdateByColumn::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -15723,22 +17960,16 @@ void UpdateByRequest_UpdateByOperation_UpdateByColumn::InternalSwap(UpdateByRequ } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[38]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest_UpdateByOperation::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& column(const UpdateByRequest_UpdateByOperation* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& UpdateByRequest_UpdateByOperation::_Internal::column(const UpdateByRequest_UpdateByOperation* msg) { - return *msg->_impl_.type_.column_; -} void UpdateByRequest_UpdateByOperation::set_allocated_column(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* column) { ::google::protobuf::Arena* message_arena = GetArena(); clear_type(); @@ -15753,13 +17984,17 @@ void UpdateByRequest_UpdateByOperation::set_allocated_column(::io::deephaven::pr // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) } UpdateByRequest_UpdateByOperation::UpdateByRequest_UpdateByOperation(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -15767,17 +18002,21 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation::Impl_::Impl_( UpdateByRequest_UpdateByOperation::UpdateByRequest_UpdateByOperation( ::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest_UpdateByOperation* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; case kColumn: - _impl_.type_.column_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(arena, *from._impl_.type_.column_); + _impl_.type_.column_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(arena, *from._impl_.type_.column_); break; } @@ -15808,11 +18047,13 @@ inline void UpdateByRequest_UpdateByOperation::SharedDtor() { void UpdateByRequest_UpdateByOperation::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kColumn: { if (GetArena() == nullptr) { delete _impl_.type_.column_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.column_); } break; } @@ -15824,24 +18065,34 @@ void UpdateByRequest_UpdateByOperation::clear_type() { } -PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest_UpdateByOperation::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest_UpdateByOperation::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_UpdateByOperation_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest_UpdateByOperation::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest_UpdateByOperation::ByteSizeLong, + &UpdateByRequest_UpdateByOperation::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation, _impl_._cached_size_), + false, + }, + &UpdateByRequest_UpdateByOperation::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest_UpdateByOperation::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation::_table_ = { { @@ -15854,8 +18105,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation::_ta 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_UpdateByOperation_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -15870,75 +18125,108 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> UpdateByRequest_UpdateByOperation::_ta }}, }; -::uint8_t* UpdateByRequest_UpdateByOperation::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) +PROTOBUF_NOINLINE void UpdateByRequest_UpdateByOperation::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; - if (type_case() == kColumn) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::column(this), - _Internal::column(this).GetCachedSize(), target, stream); - } + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - return target; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -::size_t UpdateByRequest_UpdateByOperation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - ::size_t total_size = 0; - +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest_UpdateByOperation::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest_UpdateByOperation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest_UpdateByOperation::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest_UpdateByOperation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; + if (this_.type_case() == kColumn) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.type_.column_, this_._impl_.type_.column_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest_UpdateByOperation::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest_UpdateByOperation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest_UpdateByOperation::ByteSizeLong() const { + const UpdateByRequest_UpdateByOperation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; + case kColumn: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.column_); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest_UpdateByOperation::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) + ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; - case kColumn: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.column_); - break; - } - case TYPE_NOT_SET: { - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest_UpdateByOperation::_class_data_ = { - UpdateByRequest_UpdateByOperation::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest_UpdateByOperation::GetClassData() const { - return &_class_data_; -} - -void UpdateByRequest_UpdateByOperation::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - switch (from.type_case()) { - case kColumn: { - _this->_internal_mutable_column()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeFrom( - from._internal_column()); - break; - } - case TYPE_NOT_SET: { - break; + switch (oneof_from_case) { + case kColumn: { + if (oneof_needs_init) { + _this->_impl_.type_.column_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(arena, *from._impl_.type_.column_); + } else { + _this->_impl_.type_.column_->MergeFrom(from._internal_column()); + } + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -15951,13 +18239,7 @@ void UpdateByRequest_UpdateByOperation::CopyFrom(const UpdateByRequest_UpdateByO MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest_UpdateByOperation::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest_UpdateByOperation::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest_UpdateByOperation::InternalSwap(UpdateByRequest_UpdateByOperation* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -15966,53 +18248,35 @@ void UpdateByRequest_UpdateByOperation::InternalSwap(UpdateByRequest_UpdateByOpe } ::google::protobuf::Metadata UpdateByRequest_UpdateByOperation::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[39]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UpdateByRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const UpdateByRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const UpdateByRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& options(const UpdateByRequest* msg); - static void set_has_options(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& UpdateByRequest::_Internal::result_id(const UpdateByRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& UpdateByRequest::_Internal::source_id(const UpdateByRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& UpdateByRequest::_Internal::options(const UpdateByRequest* msg) { - return *msg->_impl_.options_; -} void UpdateByRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } UpdateByRequest::UpdateByRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest) } inline PROTOBUF_NDEBUG_INLINE UpdateByRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, operations_{visibility, arena, from.operations_}, @@ -16021,22 +18285,26 @@ inline PROTOBUF_NDEBUG_INLINE UpdateByRequest::Impl_::Impl_( UpdateByRequest::UpdateByRequest( ::google::protobuf::Arena* arena, const UpdateByRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UpdateByRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.options_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>(arena, *from._impl_.options_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.options_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>( + arena, *from._impl_.options_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByRequest) } @@ -16069,41 +18337,34 @@ inline void UpdateByRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UpdateByRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.operations_.Clear(); - _impl_.group_by_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.options_ != nullptr); - _impl_.options_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UpdateByRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UpdateByRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UpdateByRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UpdateByRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UpdateByRequest::ByteSizeLong, + &UpdateByRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_._cached_size_), + false, + }, + &UpdateByRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UpdateByRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 4, 74, 2> UpdateByRequest::_table_ = { { @@ -16116,8 +18377,12 @@ const ::_pbi::TcParseTable<3, 5, 4, 74, 2> UpdateByRequest::_table_ = { 5, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UpdateByRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -16167,115 +18432,158 @@ const ::_pbi::TcParseTable<3, 5, 4, 74, 2> UpdateByRequest::_table_ = { }}, }; -::uint8_t* UpdateByRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::options(this), - _Internal::options(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; - for (unsigned i = 0, - n = static_cast(this->_internal_operations_size()); i < n; i++) { - const auto& repfield = this->_internal_operations().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(4, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated string group_by_columns = 5; - for (int i = 0, n = this->_internal_group_by_columns_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest) - return target; -} - -::size_t UpdateByRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UpdateByRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; - total_size += 1UL * this->_internal_operations_size(); - for (const auto& msg : this->_internal_operations()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string group_by_columns = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_columns().size()); - for (int i = 0, n = _internal_group_by_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_columns().Get(i)); - } + _impl_.operations_.Clear(); + _impl_.group_by_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.options_); + ABSL_DCHECK(_impl_.options_ != nullptr); + _impl_.options_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UpdateByRequest::_class_data_ = { - UpdateByRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UpdateByRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UpdateByRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UpdateByRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UpdateByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UpdateByRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UpdateByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.options_, this_._impl_.options_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; + for (unsigned i = 0, n = static_cast( + this_._internal_operations_size()); + i < n; i++) { + const auto& repfield = this_._internal_operations().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated string group_by_columns = 5; + for (int i = 0, n = this_._internal_group_by_columns_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UpdateByRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UpdateByRequest::ByteSizeLong(const MessageLite& base) { + const UpdateByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UpdateByRequest::ByteSizeLong() const { + const UpdateByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; + { + total_size += 1UL * this_._internal_operations_size(); + for (const auto& msg : this_._internal_operations()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string group_by_columns = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_columns().size()); + for (int i = 0, n = this_._internal_group_by_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.options_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UpdateByRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -16287,18 +18595,34 @@ void UpdateByRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goo cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_options()->::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions::MergeFrom( - from._internal_options()); + ABSL_DCHECK(from._impl_.options_ != nullptr); + if (_this->_impl_.options_ == nullptr) { + _this->_impl_.options_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>(arena, *from._impl_.options_); + } else { + _this->_impl_.options_->MergeFrom(*from._impl_.options_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16309,13 +18633,7 @@ void UpdateByRequest::CopyFrom(const UpdateByRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool UpdateByRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UpdateByRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UpdateByRequest::InternalSwap(UpdateByRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -16331,46 +18649,35 @@ void UpdateByRequest::InternalSwap(UpdateByRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata UpdateByRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[40]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SelectDistinctRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const SelectDistinctRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const SelectDistinctRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SelectDistinctRequest::_Internal::result_id(const SelectDistinctRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SelectDistinctRequest::_Internal::source_id(const SelectDistinctRequest* msg) { - return *msg->_impl_.source_id_; -} void SelectDistinctRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SelectDistinctRequest::SelectDistinctRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) } inline PROTOBUF_NDEBUG_INLINE SelectDistinctRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, column_names_{visibility, arena, from.column_names_} {} @@ -16378,19 +18685,23 @@ inline PROTOBUF_NDEBUG_INLINE SelectDistinctRequest::Impl_::Impl_( SelectDistinctRequest::SelectDistinctRequest( ::google::protobuf::Arena* arena, const SelectDistinctRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SelectDistinctRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) } @@ -16421,36 +18732,34 @@ inline void SelectDistinctRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SelectDistinctRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_names_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SelectDistinctRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SelectDistinctRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SelectDistinctRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SelectDistinctRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SelectDistinctRequest::ByteSizeLong, + &SelectDistinctRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_._cached_size_), + false, + }, + &SelectDistinctRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SelectDistinctRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectDistinctRequest::_table_ = { { @@ -16463,8 +18772,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectDistinctRequest::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SelectDistinctRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -16498,88 +18811,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 76, 2> SelectDistinctRequest::_table_ = { }}, }; -::uint8_t* SelectDistinctRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated string column_names = 3; - for (int i = 0, n = this->_internal_column_names_size(); i < n; ++i) { - const auto& s = this->_internal_column_names().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - return target; -} - -::size_t SelectDistinctRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SelectDistinctRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string column_names = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_column_names().size()); - for (int i = 0, n = _internal_column_names().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_column_names().Get(i)); - } + _impl_.column_names_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SelectDistinctRequest::_class_data_ = { - SelectDistinctRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SelectDistinctRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SelectDistinctRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SelectDistinctRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SelectDistinctRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SelectDistinctRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SelectDistinctRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated string column_names = 3; + for (int i = 0, n = this_._internal_column_names_size(); i < n; ++i) { + const auto& s = this_._internal_column_names().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SelectDistinctRequest::ByteSizeLong(const MessageLite& base) { + const SelectDistinctRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SelectDistinctRequest::ByteSizeLong() const { + const SelectDistinctRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string column_names = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_column_names().size()); + for (int i = 0, n = this_._internal_column_names().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_names().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SelectDistinctRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -16589,14 +18937,25 @@ void SelectDistinctRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16607,13 +18966,7 @@ void SelectDistinctRequest::CopyFrom(const SelectDistinctRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SelectDistinctRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SelectDistinctRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SelectDistinctRequest::InternalSwap(SelectDistinctRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -16628,46 +18981,35 @@ void SelectDistinctRequest::InternalSwap(SelectDistinctRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata SelectDistinctRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[41]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class DropColumnsRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const DropColumnsRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const DropColumnsRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& DropColumnsRequest::_Internal::result_id(const DropColumnsRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& DropColumnsRequest::_Internal::source_id(const DropColumnsRequest* msg) { - return *msg->_impl_.source_id_; -} void DropColumnsRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } DropColumnsRequest::DropColumnsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.DropColumnsRequest) } inline PROTOBUF_NDEBUG_INLINE DropColumnsRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, column_names_{visibility, arena, from.column_names_} {} @@ -16675,19 +19017,23 @@ inline PROTOBUF_NDEBUG_INLINE DropColumnsRequest::Impl_::Impl_( DropColumnsRequest::DropColumnsRequest( ::google::protobuf::Arena* arena, const DropColumnsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE DropColumnsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DropColumnsRequest) } @@ -16718,36 +19064,34 @@ inline void DropColumnsRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void DropColumnsRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_names_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* DropColumnsRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + DropColumnsRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_DropColumnsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &DropColumnsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &DropColumnsRequest::ByteSizeLong, + &DropColumnsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_._cached_size_), + false, + }, + &DropColumnsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* DropColumnsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 73, 2> DropColumnsRequest::_table_ = { { @@ -16760,8 +19104,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 73, 2> DropColumnsRequest::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_DropColumnsRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -16795,88 +19143,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 73, 2> DropColumnsRequest::_table_ = { }}, }; -::uint8_t* DropColumnsRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated string column_names = 3; - for (int i = 0, n = this->_internal_column_names_size(); i < n; ++i) { - const auto& s = this->_internal_column_names().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - return target; -} - -::size_t DropColumnsRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void DropColumnsRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string column_names = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_column_names().size()); - for (int i = 0, n = _internal_column_names().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_column_names().Get(i)); - } + _impl_.column_names_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData DropColumnsRequest::_class_data_ = { - DropColumnsRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* DropColumnsRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void DropColumnsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* DropColumnsRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const DropColumnsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* DropColumnsRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const DropColumnsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated string column_names = 3; + for (int i = 0, n = this_._internal_column_names_size(); i < n; ++i) { + const auto& s = this_._internal_column_names().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.DropColumnsRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t DropColumnsRequest::ByteSizeLong(const MessageLite& base) { + const DropColumnsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t DropColumnsRequest::ByteSizeLong() const { + const DropColumnsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string column_names = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_column_names().size()); + for (int i = 0, n = this_._internal_column_names().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_names().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void DropColumnsRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -16886,14 +19269,25 @@ void DropColumnsRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -16904,13 +19298,7 @@ void DropColumnsRequest::CopyFrom(const DropColumnsRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool DropColumnsRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* DropColumnsRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void DropColumnsRequest::InternalSwap(DropColumnsRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -16925,46 +19313,35 @@ void DropColumnsRequest::InternalSwap(DropColumnsRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata DropColumnsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[42]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UnstructuredFilterTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const UnstructuredFilterTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const UnstructuredFilterTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& UnstructuredFilterTableRequest::_Internal::result_id(const UnstructuredFilterTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& UnstructuredFilterTableRequest::_Internal::source_id(const UnstructuredFilterTableRequest* msg) { - return *msg->_impl_.source_id_; -} void UnstructuredFilterTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } UnstructuredFilterTableRequest::UnstructuredFilterTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) } inline PROTOBUF_NDEBUG_INLINE UnstructuredFilterTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, filters_{visibility, arena, from.filters_} {} @@ -16972,19 +19349,23 @@ inline PROTOBUF_NDEBUG_INLINE UnstructuredFilterTableRequest::Impl_::Impl_( UnstructuredFilterTableRequest::UnstructuredFilterTableRequest( ::google::protobuf::Arena* arena, const UnstructuredFilterTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UnstructuredFilterTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) } @@ -17015,36 +19396,34 @@ inline void UnstructuredFilterTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UnstructuredFilterTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.filters_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UnstructuredFilterTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UnstructuredFilterTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UnstructuredFilterTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UnstructuredFilterTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UnstructuredFilterTableRequest::ByteSizeLong, + &UnstructuredFilterTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_._cached_size_), + false, + }, + &UnstructuredFilterTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UnstructuredFilterTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 80, 2> UnstructuredFilterTableRequest::_table_ = { { @@ -17057,8 +19436,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 80, 2> UnstructuredFilterTableRequest::_tabl 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UnstructuredFilterTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -17092,88 +19475,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 80, 2> UnstructuredFilterTableRequest::_tabl }}, }; -::uint8_t* UnstructuredFilterTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated string filters = 3; - for (int i = 0, n = this->_internal_filters_size(); i < n; ++i) { - const auto& s = this->_internal_filters().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - return target; -} - -::size_t UnstructuredFilterTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UnstructuredFilterTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string filters = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_filters().size()); - for (int i = 0, n = _internal_filters().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_filters().Get(i)); - } + _impl_.filters_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UnstructuredFilterTableRequest::_class_data_ = { - UnstructuredFilterTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UnstructuredFilterTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UnstructuredFilterTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UnstructuredFilterTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UnstructuredFilterTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UnstructuredFilterTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UnstructuredFilterTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated string filters = 3; + for (int i = 0, n = this_._internal_filters_size(); i < n; ++i) { + const auto& s = this_._internal_filters().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UnstructuredFilterTableRequest::ByteSizeLong(const MessageLite& base) { + const UnstructuredFilterTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UnstructuredFilterTableRequest::ByteSizeLong() const { + const UnstructuredFilterTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string filters = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_filters().size()); + for (int i = 0, n = this_._internal_filters().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_filters().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UnstructuredFilterTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -17183,14 +19601,25 @@ void UnstructuredFilterTableRequest::MergeImpl(::google::protobuf::Message& to_m cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -17201,13 +19630,7 @@ void UnstructuredFilterTableRequest::CopyFrom(const UnstructuredFilterTableReque MergeFrom(from); } -PROTOBUF_NOINLINE bool UnstructuredFilterTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UnstructuredFilterTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UnstructuredFilterTableRequest::InternalSwap(UnstructuredFilterTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -17222,65 +19645,58 @@ void UnstructuredFilterTableRequest::InternalSwap(UnstructuredFilterTableRequest } ::google::protobuf::Metadata UnstructuredFilterTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[43]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HeadOrTailRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const HeadOrTailRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const HeadOrTailRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailRequest::_Internal::result_id(const HeadOrTailRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailRequest::_Internal::source_id(const HeadOrTailRequest* msg) { - return *msg->_impl_.source_id_; -} void HeadOrTailRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } HeadOrTailRequest::HeadOrTailRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) } inline PROTOBUF_NDEBUG_INLINE HeadOrTailRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} HeadOrTailRequest::HeadOrTailRequest( ::google::protobuf::Arena* arena, const HeadOrTailRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HeadOrTailRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; _impl_.num_rows_ = from._impl_.num_rows_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) @@ -17311,36 +19727,34 @@ inline void HeadOrTailRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HeadOrTailRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_.num_rows_ = ::int64_t{0}; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HeadOrTailRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HeadOrTailRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HeadOrTailRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HeadOrTailRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HeadOrTailRequest::ByteSizeLong, + &HeadOrTailRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_._cached_size_), + false, + }, + &HeadOrTailRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HeadOrTailRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 0, 2> HeadOrTailRequest::_table_ = { { @@ -17353,8 +19767,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 0, 2> HeadOrTailRequest::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HeadOrTailRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -17385,87 +19803,118 @@ const ::_pbi::TcParseTable<2, 3, 2, 0, 2> HeadOrTailRequest::_table_ = { }}, }; -::uint8_t* HeadOrTailRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // sint64 num_rows = 3 [jstype = JS_STRING]; - if (this->_internal_num_rows() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 3, this->_internal_num_rows(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - return target; -} - -::size_t HeadOrTailRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HeadOrTailRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - // sint64 num_rows = 3 [jstype = JS_STRING]; - if (this->_internal_num_rows() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_num_rows()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HeadOrTailRequest::_class_data_ = { - HeadOrTailRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HeadOrTailRequest::GetClassData() const { - return &_class_data_; + _impl_.num_rows_ = ::int64_t{0}; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HeadOrTailRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HeadOrTailRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HeadOrTailRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HeadOrTailRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HeadOrTailRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // sint64 num_rows = 3 [jstype = JS_STRING]; + if (this_._internal_num_rows() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 3, this_._internal_num_rows(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HeadOrTailRequest::ByteSizeLong(const MessageLite& base) { + const HeadOrTailRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HeadOrTailRequest::ByteSizeLong() const { + const HeadOrTailRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + { + // sint64 num_rows = 3 [jstype = JS_STRING]; + if (this_._internal_num_rows() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_num_rows()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HeadOrTailRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -17474,17 +19923,28 @@ void HeadOrTailRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::g cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } if (from._internal_num_rows() != 0) { - _this->_internal_set_num_rows(from._internal_num_rows()); + _this->_impl_.num_rows_ = from._impl_.num_rows_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -17495,13 +19955,7 @@ void HeadOrTailRequest::CopyFrom(const HeadOrTailRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool HeadOrTailRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HeadOrTailRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HeadOrTailRequest::InternalSwap(HeadOrTailRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -17515,46 +19969,35 @@ void HeadOrTailRequest::InternalSwap(HeadOrTailRequest* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata HeadOrTailRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[44]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class HeadOrTailByRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const HeadOrTailByRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const HeadOrTailByRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailByRequest::_Internal::result_id(const HeadOrTailByRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailByRequest::_Internal::source_id(const HeadOrTailByRequest* msg) { - return *msg->_impl_.source_id_; -} void HeadOrTailByRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } HeadOrTailByRequest::HeadOrTailByRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) } inline PROTOBUF_NDEBUG_INLINE HeadOrTailByRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, group_by_column_specs_{visibility, arena, from.group_by_column_specs_} {} @@ -17562,19 +20005,23 @@ inline PROTOBUF_NDEBUG_INLINE HeadOrTailByRequest::Impl_::Impl_( HeadOrTailByRequest::HeadOrTailByRequest( ::google::protobuf::Arena* arena, const HeadOrTailByRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE HeadOrTailByRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; _impl_.num_rows_ = from._impl_.num_rows_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) @@ -17606,37 +20053,34 @@ inline void HeadOrTailByRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void HeadOrTailByRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.group_by_column_specs_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_.num_rows_ = ::int64_t{0}; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* HeadOrTailByRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + HeadOrTailByRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_HeadOrTailByRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &HeadOrTailByRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &HeadOrTailByRequest::ByteSizeLong, + &HeadOrTailByRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_._cached_size_), + false, + }, + &HeadOrTailByRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* HeadOrTailByRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 83, 2> HeadOrTailByRequest::_table_ = { { @@ -17649,8 +20093,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 83, 2> HeadOrTailByRequest::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_HeadOrTailByRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string group_by_column_specs = 4; {::_pbi::TcParser::FastUR1, @@ -17689,101 +20137,138 @@ const ::_pbi::TcParseTable<2, 4, 2, 83, 2> HeadOrTailByRequest::_table_ = { }}, }; -::uint8_t* HeadOrTailByRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // sint64 num_rows = 3 [jstype = JS_STRING]; - if (this->_internal_num_rows() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 3, this->_internal_num_rows(), target); - } - - // repeated string group_by_column_specs = 4; - for (int i = 0, n = this->_internal_group_by_column_specs_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_column_specs().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs"); - target = stream->WriteString(4, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - return target; -} - -::size_t HeadOrTailByRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void HeadOrTailByRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string group_by_column_specs = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_column_specs().size()); - for (int i = 0, n = _internal_group_by_column_specs().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_column_specs().Get(i)); - } + _impl_.group_by_column_specs_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - } - // sint64 num_rows = 3 [jstype = JS_STRING]; - if (this->_internal_num_rows() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_num_rows()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData HeadOrTailByRequest::_class_data_ = { - HeadOrTailByRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* HeadOrTailByRequest::GetClassData() const { - return &_class_data_; + _impl_.num_rows_ = ::int64_t{0}; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void HeadOrTailByRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* HeadOrTailByRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const HeadOrTailByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* HeadOrTailByRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const HeadOrTailByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // sint64 num_rows = 3 [jstype = JS_STRING]; + if (this_._internal_num_rows() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 3, this_._internal_num_rows(), target); + } + + // repeated string group_by_column_specs = 4; + for (int i = 0, n = this_._internal_group_by_column_specs_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_column_specs().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs"); + target = stream->WriteString(4, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t HeadOrTailByRequest::ByteSizeLong(const MessageLite& base) { + const HeadOrTailByRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t HeadOrTailByRequest::ByteSizeLong() const { + const HeadOrTailByRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string group_by_column_specs = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_column_specs().size()); + for (int i = 0, n = this_._internal_group_by_column_specs().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_column_specs().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + { + // sint64 num_rows = 3 [jstype = JS_STRING]; + if (this_._internal_num_rows() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_num_rows()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void HeadOrTailByRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -17793,17 +20278,28 @@ void HeadOrTailByRequest::MergeImpl(::google::protobuf::Message& to_msg, const : cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } if (from._internal_num_rows() != 0) { - _this->_internal_set_num_rows(from._internal_num_rows()); + _this->_impl_.num_rows_ = from._impl_.num_rows_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -17814,13 +20310,7 @@ void HeadOrTailByRequest::CopyFrom(const HeadOrTailByRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool HeadOrTailByRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* HeadOrTailByRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void HeadOrTailByRequest::InternalSwap(HeadOrTailByRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -17835,46 +20325,35 @@ void HeadOrTailByRequest::InternalSwap(HeadOrTailByRequest* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata HeadOrTailByRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[45]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class UngroupRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const UngroupRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const UngroupRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& UngroupRequest::_Internal::result_id(const UngroupRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& UngroupRequest::_Internal::source_id(const UngroupRequest* msg) { - return *msg->_impl_.source_id_; -} void UngroupRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } UngroupRequest::UngroupRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.UngroupRequest) } inline PROTOBUF_NDEBUG_INLINE UngroupRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_ungroup_{visibility, arena, from.columns_to_ungroup_} {} @@ -17882,19 +20361,23 @@ inline PROTOBUF_NDEBUG_INLINE UngroupRequest::Impl_::Impl_( UngroupRequest::UngroupRequest( ::google::protobuf::Arena* arena, const UngroupRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE UngroupRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; _impl_.null_fill_ = from._impl_.null_fill_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UngroupRequest) @@ -17926,37 +20409,34 @@ inline void UngroupRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void UngroupRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UngroupRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_ungroup_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_.null_fill_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* UngroupRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + UngroupRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_UngroupRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &UngroupRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &UngroupRequest::ByteSizeLong, + &UngroupRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_._cached_size_), + false, + }, + &UngroupRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* UngroupRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 75, 2> UngroupRequest::_table_ = { { @@ -17969,8 +20449,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 75, 2> UngroupRequest::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_UngroupRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UngroupRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string columns_to_ungroup = 4; {::_pbi::TcParser::FastUR1, @@ -18009,100 +20493,137 @@ const ::_pbi::TcParseTable<2, 4, 2, 75, 2> UngroupRequest::_table_ = { }}, }; -::uint8_t* UngroupRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UngroupRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // bool null_fill = 3; - if (this->_internal_null_fill() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_null_fill(), target); - } - - // repeated string columns_to_ungroup = 4; - for (int i = 0, n = this->_internal_columns_to_ungroup_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_ungroup().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup"); - target = stream->WriteString(4, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UngroupRequest) - return target; -} - -::size_t UngroupRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UngroupRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void UngroupRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.UngroupRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_ungroup = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_ungroup().size()); - for (int i = 0, n = _internal_columns_to_ungroup().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_ungroup().Get(i)); - } + _impl_.columns_to_ungroup_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - // bool null_fill = 3; - if (this->_internal_null_fill() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData UngroupRequest::_class_data_ = { - UngroupRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* UngroupRequest::GetClassData() const { - return &_class_data_; + _impl_.null_fill_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void UngroupRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* UngroupRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const UngroupRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* UngroupRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const UngroupRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.UngroupRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // bool null_fill = 3; + if (this_._internal_null_fill() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_null_fill(), target); + } + + // repeated string columns_to_ungroup = 4; + for (int i = 0, n = this_._internal_columns_to_ungroup_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_ungroup().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup"); + target = stream->WriteString(4, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.UngroupRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t UngroupRequest::ByteSizeLong(const MessageLite& base) { + const UngroupRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t UngroupRequest::ByteSizeLong() const { + const UngroupRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.UngroupRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_ungroup = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_ungroup().size()); + for (int i = 0, n = this_._internal_columns_to_ungroup().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_ungroup().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + { + // bool null_fill = 3; + if (this_._internal_null_fill() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void UngroupRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.UngroupRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -18112,17 +20633,28 @@ void UngroupRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } if (from._internal_null_fill() != 0) { - _this->_internal_set_null_fill(from._internal_null_fill()); + _this->_impl_.null_fill_ = from._impl_.null_fill_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -18133,13 +20665,7 @@ void UngroupRequest::CopyFrom(const UngroupRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool UngroupRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* UngroupRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void UngroupRequest::InternalSwap(UngroupRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -18154,39 +20680,35 @@ void UngroupRequest::InternalSwap(UngroupRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata UngroupRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[46]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MergeTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const MergeTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& MergeTablesRequest::_Internal::result_id(const MergeTablesRequest* msg) { - return *msg->_impl_.result_id_; -} void MergeTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } MergeTablesRequest::MergeTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MergeTablesRequest) } inline PROTOBUF_NDEBUG_INLINE MergeTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, source_ids_{visibility, arena, from.source_ids_}, @@ -18195,16 +20717,20 @@ inline PROTOBUF_NDEBUG_INLINE MergeTablesRequest::Impl_::Impl_( MergeTablesRequest::MergeTablesRequest( ::google::protobuf::Arena* arena, const MergeTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MergeTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MergeTablesRequest) } @@ -18231,31 +20757,34 @@ inline void MergeTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MergeTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.source_ids_.Clear(); - _impl_.key_column_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MergeTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MergeTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MergeTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MergeTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MergeTablesRequest::ByteSizeLong, + &MergeTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_._cached_size_), + false, + }, + &MergeTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MergeTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 71, 2> MergeTablesRequest::_table_ = { { @@ -18268,8 +20797,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 71, 2> MergeTablesRequest::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MergeTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -18303,87 +20836,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 71, 2> MergeTablesRequest::_table_ = { }}, }; -::uint8_t* MergeTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_source_ids_size()); i < n; i++) { - const auto& repfield = this->_internal_source_ids().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - // string key_column = 3; - if (!this->_internal_key_column().empty()) { - const std::string& _s = this->_internal_key_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - return target; -} - -::size_t MergeTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MergeTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; - total_size += 1UL * this->_internal_source_ids_size(); - for (const auto& msg : this->_internal_source_ids()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string key_column = 3; - if (!this->_internal_key_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_key_column()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + _impl_.source_ids_.Clear(); + _impl_.key_column_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MergeTablesRequest::_class_data_ = { - MergeTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MergeTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MergeTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MergeTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MergeTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MergeTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MergeTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_source_ids_size()); + i < n; i++) { + const auto& repfield = this_._internal_source_ids().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + // string key_column = 3; + if (!this_._internal_key_column().empty()) { + const std::string& _s = this_._internal_key_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MergeTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MergeTablesRequest::ByteSizeLong(const MessageLite& base) { + const MergeTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MergeTablesRequest::ByteSizeLong() const { + const MergeTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; + { + total_size += 1UL * this_._internal_source_ids_size(); + for (const auto& msg : this_._internal_source_ids()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string key_column = 3; + if (!this_._internal_key_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_key_column()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MergeTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -18394,10 +20963,17 @@ void MergeTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: if (!from._internal_key_column().empty()) { _this->_internal_set_key_column(from._internal_key_column()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -18408,13 +20984,7 @@ void MergeTablesRequest::CopyFrom(const MergeTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MergeTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MergeTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MergeTablesRequest::InternalSwap(MergeTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -18427,65 +20997,58 @@ void MergeTablesRequest::InternalSwap(MergeTablesRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata MergeTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[47]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SnapshotTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const SnapshotTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const SnapshotTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotTableRequest::_Internal::result_id(const SnapshotTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotTableRequest::_Internal::source_id(const SnapshotTableRequest* msg) { - return *msg->_impl_.source_id_; -} void SnapshotTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SnapshotTableRequest::SnapshotTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) } inline PROTOBUF_NDEBUG_INLINE SnapshotTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} SnapshotTableRequest::SnapshotTableRequest( ::google::protobuf::Arena* arena, const SnapshotTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SnapshotTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) } @@ -18515,35 +21078,34 @@ inline void SnapshotTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SnapshotTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SnapshotTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SnapshotTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SnapshotTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SnapshotTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SnapshotTableRequest::ByteSizeLong, + &SnapshotTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_._cached_size_), + false, + }, + &SnapshotTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SnapshotTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> SnapshotTableRequest::_table_ = { { @@ -18556,8 +21118,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> SnapshotTableRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SnapshotTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; {::_pbi::TcParser::FastMtS1, @@ -18581,74 +21147,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> SnapshotTableRequest::_table_ = { }}, }; -::uint8_t* SnapshotTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - return target; -} - -::size_t SnapshotTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SnapshotTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SnapshotTableRequest::_class_data_ = { - SnapshotTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SnapshotTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SnapshotTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SnapshotTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SnapshotTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SnapshotTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SnapshotTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SnapshotTableRequest::ByteSizeLong(const MessageLite& base) { + const SnapshotTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SnapshotTableRequest::ByteSizeLong() const { + const SnapshotTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SnapshotTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -18657,14 +21252,25 @@ void SnapshotTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -18675,13 +21281,7 @@ void SnapshotTableRequest::CopyFrom(const SnapshotTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SnapshotTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SnapshotTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SnapshotTableRequest::InternalSwap(SnapshotTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -18695,53 +21295,35 @@ void SnapshotTableRequest::InternalSwap(SnapshotTableRequest* PROTOBUF_RESTRICT } ::google::protobuf::Metadata SnapshotTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[48]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SnapshotWhenTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const SnapshotWhenTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& base_id(const SnapshotWhenTableRequest* msg); - static void set_has_base_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& trigger_id(const SnapshotWhenTableRequest* msg); - static void set_has_trigger_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotWhenTableRequest::_Internal::result_id(const SnapshotWhenTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::_Internal::base_id(const SnapshotWhenTableRequest* msg) { - return *msg->_impl_.base_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::_Internal::trigger_id(const SnapshotWhenTableRequest* msg) { - return *msg->_impl_.trigger_id_; -} void SnapshotWhenTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SnapshotWhenTableRequest::SnapshotWhenTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) } inline PROTOBUF_NDEBUG_INLINE SnapshotWhenTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, stamp_columns_{visibility, arena, from.stamp_columns_} {} @@ -18749,22 +21331,26 @@ inline PROTOBUF_NDEBUG_INLINE SnapshotWhenTableRequest::Impl_::Impl_( SnapshotWhenTableRequest::SnapshotWhenTableRequest( ::google::protobuf::Arena* arena, const SnapshotWhenTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SnapshotWhenTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.base_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.base_id_) - : nullptr; - _impl_.trigger_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.trigger_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.base_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.base_id_) + : nullptr; + _impl_.trigger_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.trigger_id_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, initial_), reinterpret_cast(&from._impl_) + @@ -18803,43 +21389,34 @@ inline void SnapshotWhenTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SnapshotWhenTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.stamp_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.base_id_ != nullptr); - _impl_.base_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.trigger_id_ != nullptr); - _impl_.trigger_id_->Clear(); - } - } - ::memset(&_impl_.initial_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.history_) - - reinterpret_cast(&_impl_.initial_)) + sizeof(_impl_.history_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SnapshotWhenTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SnapshotWhenTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SnapshotWhenTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SnapshotWhenTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SnapshotWhenTableRequest::ByteSizeLong, + &SnapshotWhenTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_._cached_size_), + false, + }, + &SnapshotWhenTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SnapshotWhenTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 7, 3, 80, 2> SnapshotWhenTableRequest::_table_ = { { @@ -18852,8 +21429,12 @@ const ::_pbi::TcParseTable<3, 7, 3, 80, 2> SnapshotWhenTableRequest::_table_ = { 7, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SnapshotWhenTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -18912,137 +21493,177 @@ const ::_pbi::TcParseTable<3, 7, 3, 80, 2> SnapshotWhenTableRequest::_table_ = { }}, }; -::uint8_t* SnapshotWhenTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::base_id(this), - _Internal::base_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::trigger_id(this), - _Internal::trigger_id(this).GetCachedSize(), target, stream); - } - - // bool initial = 4; - if (this->_internal_initial() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_initial(), target); - } - - // bool incremental = 5; - if (this->_internal_incremental() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_incremental(), target); - } - - // bool history = 6; - if (this->_internal_history() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 6, this->_internal_history(), target); - } - - // repeated string stamp_columns = 7; - for (int i = 0, n = this->_internal_stamp_columns_size(); i < n; ++i) { - const auto& s = this->_internal_stamp_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns"); - target = stream->WriteString(7, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - return target; -} - -::size_t SnapshotWhenTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SnapshotWhenTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string stamp_columns = 7; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_stamp_columns().size()); - for (int i = 0, n = _internal_stamp_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_stamp_columns().Get(i)); - } + _impl_.stamp_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.base_id_); + ABSL_DCHECK(_impl_.base_id_ != nullptr); + _impl_.base_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.trigger_id_); + ABSL_DCHECK(_impl_.trigger_id_ != nullptr); + _impl_.trigger_id_->Clear(); } - - } - // bool initial = 4; - if (this->_internal_initial() != 0) { - total_size += 2; - } - - // bool incremental = 5; - if (this->_internal_incremental() != 0) { - total_size += 2; - } - - // bool history = 6; - if (this->_internal_history() != 0) { - total_size += 2; } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SnapshotWhenTableRequest::_class_data_ = { - SnapshotWhenTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SnapshotWhenTableRequest::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.initial_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.history_) - + reinterpret_cast(&_impl_.initial_)) + sizeof(_impl_.history_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SnapshotWhenTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SnapshotWhenTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SnapshotWhenTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SnapshotWhenTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SnapshotWhenTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.base_id_, this_._impl_.base_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.trigger_id_, this_._impl_.trigger_id_->GetCachedSize(), target, + stream); + } + + // bool initial = 4; + if (this_._internal_initial() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_initial(), target); + } + + // bool incremental = 5; + if (this_._internal_incremental() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_incremental(), target); + } + + // bool history = 6; + if (this_._internal_history() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 6, this_._internal_history(), target); + } + + // repeated string stamp_columns = 7; + for (int i = 0, n = this_._internal_stamp_columns_size(); i < n; ++i) { + const auto& s = this_._internal_stamp_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns"); + target = stream->WriteString(7, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SnapshotWhenTableRequest::ByteSizeLong(const MessageLite& base) { + const SnapshotWhenTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SnapshotWhenTableRequest::ByteSizeLong() const { + const SnapshotWhenTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string stamp_columns = 7; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_stamp_columns().size()); + for (int i = 0, n = this_._internal_stamp_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_stamp_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.base_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.trigger_id_); + } + } + { + // bool initial = 4; + if (this_._internal_initial() != 0) { + total_size += 2; + } + // bool incremental = 5; + if (this_._internal_incremental() != 0) { + total_size += 2; + } + // bool history = 6; + if (this_._internal_history() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SnapshotWhenTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -19052,27 +21673,43 @@ void SnapshotWhenTableRequest::MergeImpl(::google::protobuf::Message& to_msg, co cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_base_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_base_id()); + ABSL_DCHECK(from._impl_.base_id_ != nullptr); + if (_this->_impl_.base_id_ == nullptr) { + _this->_impl_.base_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.base_id_); + } else { + _this->_impl_.base_id_->MergeFrom(*from._impl_.base_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_trigger_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_trigger_id()); + ABSL_DCHECK(from._impl_.trigger_id_ != nullptr); + if (_this->_impl_.trigger_id_ == nullptr) { + _this->_impl_.trigger_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.trigger_id_); + } else { + _this->_impl_.trigger_id_->MergeFrom(*from._impl_.trigger_id_); + } } } if (from._internal_initial() != 0) { - _this->_internal_set_initial(from._internal_initial()); + _this->_impl_.initial_ = from._impl_.initial_; } if (from._internal_incremental() != 0) { - _this->_internal_set_incremental(from._internal_incremental()); + _this->_impl_.incremental_ = from._impl_.incremental_; } if (from._internal_history() != 0) { - _this->_internal_set_history(from._internal_history()); + _this->_impl_.history_ = from._impl_.history_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19083,13 +21720,7 @@ void SnapshotWhenTableRequest::CopyFrom(const SnapshotWhenTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SnapshotWhenTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SnapshotWhenTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SnapshotWhenTableRequest::InternalSwap(SnapshotWhenTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -19104,53 +21735,35 @@ void SnapshotWhenTableRequest::InternalSwap(SnapshotWhenTableRequest* PROTOBUF_R } ::google::protobuf::Metadata SnapshotWhenTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[49]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CrossJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const CrossJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const CrossJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const CrossJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& CrossJoinTablesRequest::_Internal::result_id(const CrossJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::_Internal::left_id(const CrossJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::_Internal::right_id(const CrossJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void CrossJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } CrossJoinTablesRequest::CrossJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE CrossJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -19159,22 +21772,26 @@ inline PROTOBUF_NDEBUG_INLINE CrossJoinTablesRequest::Impl_::Impl_( CrossJoinTablesRequest::CrossJoinTablesRequest( ::google::protobuf::Arena* arena, const CrossJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CrossJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; _impl_.reserve_bits_ = from._impl_.reserve_bits_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) @@ -19208,42 +21825,34 @@ inline void CrossJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CrossJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_.reserve_bits_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CrossJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CrossJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CrossJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CrossJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CrossJoinTablesRequest::ByteSizeLong, + &CrossJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_._cached_size_), + false, + }, + &CrossJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CrossJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 3, 95, 2> CrossJoinTablesRequest::_table_ = { { @@ -19256,8 +21865,12 @@ const ::_pbi::TcParseTable<3, 6, 3, 95, 2> CrossJoinTablesRequest::_table_ = { 6, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CrossJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -19312,128 +21925,172 @@ const ::_pbi::TcParseTable<3, 6, 3, 95, 2> CrossJoinTablesRequest::_table_ = { }}, }; -::uint8_t* CrossJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 4; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match"); - target = stream->WriteString(4, s, target); - } - - // repeated string columns_to_add = 5; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add"); - target = stream->WriteString(5, s, target); - } - - // int32 reserve_bits = 6; - if (this->_internal_reserve_bits() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<6>( - stream, this->_internal_reserve_bits(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - return target; -} - -::size_t CrossJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CrossJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - - } - // int32 reserve_bits = 6; - if (this->_internal_reserve_bits() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_reserve_bits()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CrossJoinTablesRequest::_class_data_ = { - CrossJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CrossJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_.reserve_bits_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CrossJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CrossJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CrossJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CrossJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CrossJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 4; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match"); + target = stream->WriteString(4, s, target); + } + + // repeated string columns_to_add = 5; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add"); + target = stream->WriteString(5, s, target); + } + + // int32 reserve_bits = 6; + if (this_._internal_reserve_bits() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<6>( + stream, this_._internal_reserve_bits(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CrossJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const CrossJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CrossJoinTablesRequest::ByteSizeLong() const { + const CrossJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + { + // int32 reserve_bits = 6; + if (this_._internal_reserve_bits() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_reserve_bits()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CrossJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -19444,21 +22101,37 @@ void CrossJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, cons cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } if (from._internal_reserve_bits() != 0) { - _this->_internal_set_reserve_bits(from._internal_reserve_bits()); + _this->_impl_.reserve_bits_ = from._impl_.reserve_bits_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19469,13 +22142,7 @@ void CrossJoinTablesRequest::CopyFrom(const CrossJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CrossJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CrossJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CrossJoinTablesRequest::InternalSwap(CrossJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -19491,53 +22158,35 @@ void CrossJoinTablesRequest::InternalSwap(CrossJoinTablesRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata CrossJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[50]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class NaturalJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const NaturalJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const NaturalJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const NaturalJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& NaturalJoinTablesRequest::_Internal::result_id(const NaturalJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::_Internal::left_id(const NaturalJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::_Internal::right_id(const NaturalJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void NaturalJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } NaturalJoinTablesRequest::NaturalJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE NaturalJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -19546,22 +22195,26 @@ inline PROTOBUF_NDEBUG_INLINE NaturalJoinTablesRequest::Impl_::Impl_( NaturalJoinTablesRequest::NaturalJoinTablesRequest( ::google::protobuf::Arena* arena, const NaturalJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE NaturalJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) } @@ -19594,41 +22247,34 @@ inline void NaturalJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void NaturalJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* NaturalJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + NaturalJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_NaturalJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &NaturalJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &NaturalJoinTablesRequest::ByteSizeLong, + &NaturalJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_._cached_size_), + false, + }, + &NaturalJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* NaturalJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 97, 2> NaturalJoinTablesRequest::_table_ = { { @@ -19641,8 +22287,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 97, 2> NaturalJoinTablesRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_NaturalJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -19692,115 +22342,157 @@ const ::_pbi::TcParseTable<3, 5, 3, 97, 2> NaturalJoinTablesRequest::_table_ = { }}, }; -::uint8_t* NaturalJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 4; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match"); - target = stream->WriteString(4, s, target); - } - - // repeated string columns_to_add = 5; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - return target; -} - -::size_t NaturalJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void NaturalJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData NaturalJoinTablesRequest::_class_data_ = { - NaturalJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* NaturalJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void NaturalJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* NaturalJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const NaturalJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* NaturalJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const NaturalJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 4; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match"); + target = stream->WriteString(4, s, target); + } + + // repeated string columns_to_add = 5; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t NaturalJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const NaturalJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t NaturalJoinTablesRequest::ByteSizeLong() const { + const NaturalJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void NaturalJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -19811,18 +22503,34 @@ void NaturalJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, co cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -19833,13 +22541,7 @@ void NaturalJoinTablesRequest::CopyFrom(const NaturalJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool NaturalJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* NaturalJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void NaturalJoinTablesRequest::InternalSwap(NaturalJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -19855,53 +22557,35 @@ void NaturalJoinTablesRequest::InternalSwap(NaturalJoinTablesRequest* PROTOBUF_R } ::google::protobuf::Metadata NaturalJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[51]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ExactJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const ExactJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const ExactJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const ExactJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ExactJoinTablesRequest::_Internal::result_id(const ExactJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::_Internal::left_id(const ExactJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::_Internal::right_id(const ExactJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void ExactJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ExactJoinTablesRequest::ExactJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE ExactJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -19910,22 +22594,26 @@ inline PROTOBUF_NDEBUG_INLINE ExactJoinTablesRequest::Impl_::Impl_( ExactJoinTablesRequest::ExactJoinTablesRequest( ::google::protobuf::Arena* arena, const ExactJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ExactJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) } @@ -19958,41 +22646,34 @@ inline void ExactJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ExactJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ExactJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ExactJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ExactJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ExactJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ExactJoinTablesRequest::ByteSizeLong, + &ExactJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_._cached_size_), + false, + }, + &ExactJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ExactJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 95, 2> ExactJoinTablesRequest::_table_ = { { @@ -20005,8 +22686,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 95, 2> ExactJoinTablesRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ExactJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -20056,115 +22741,157 @@ const ::_pbi::TcParseTable<3, 5, 3, 95, 2> ExactJoinTablesRequest::_table_ = { }}, }; -::uint8_t* ExactJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 4; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match"); - target = stream->WriteString(4, s, target); - } - - // repeated string columns_to_add = 5; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - return target; -} - -::size_t ExactJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ExactJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ExactJoinTablesRequest::_class_data_ = { - ExactJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ExactJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ExactJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ExactJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ExactJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ExactJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ExactJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 4; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match"); + target = stream->WriteString(4, s, target); + } + + // repeated string columns_to_add = 5; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ExactJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const ExactJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ExactJoinTablesRequest::ByteSizeLong() const { + const ExactJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ExactJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -20175,18 +22902,34 @@ void ExactJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, cons cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -20197,13 +22940,7 @@ void ExactJoinTablesRequest::CopyFrom(const ExactJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ExactJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ExactJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ExactJoinTablesRequest::InternalSwap(ExactJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -20219,53 +22956,35 @@ void ExactJoinTablesRequest::InternalSwap(ExactJoinTablesRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata ExactJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[52]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class LeftJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const LeftJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const LeftJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const LeftJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& LeftJoinTablesRequest::_Internal::result_id(const LeftJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::_Internal::left_id(const LeftJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::_Internal::right_id(const LeftJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void LeftJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } LeftJoinTablesRequest::LeftJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE LeftJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -20274,22 +22993,26 @@ inline PROTOBUF_NDEBUG_INLINE LeftJoinTablesRequest::Impl_::Impl_( LeftJoinTablesRequest::LeftJoinTablesRequest( ::google::protobuf::Arena* arena, const LeftJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE LeftJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) } @@ -20322,41 +23045,34 @@ inline void LeftJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void LeftJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* LeftJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + LeftJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_LeftJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &LeftJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &LeftJoinTablesRequest::ByteSizeLong, + &LeftJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_._cached_size_), + false, + }, + &LeftJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* LeftJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 94, 2> LeftJoinTablesRequest::_table_ = { { @@ -20369,8 +23085,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 94, 2> LeftJoinTablesRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_LeftJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -20420,115 +23140,157 @@ const ::_pbi::TcParseTable<3, 5, 3, 94, 2> LeftJoinTablesRequest::_table_ = { }}, }; -::uint8_t* LeftJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 4; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match"); - target = stream->WriteString(4, s, target); - } - - // repeated string columns_to_add = 5; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - return target; -} - -::size_t LeftJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void LeftJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData LeftJoinTablesRequest::_class_data_ = { - LeftJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* LeftJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void LeftJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* LeftJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const LeftJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* LeftJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const LeftJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 4; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match"); + target = stream->WriteString(4, s, target); + } + + // repeated string columns_to_add = 5; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t LeftJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const LeftJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t LeftJoinTablesRequest::ByteSizeLong() const { + const LeftJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void LeftJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -20539,18 +23301,34 @@ void LeftJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -20561,13 +23339,7 @@ void LeftJoinTablesRequest::CopyFrom(const LeftJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool LeftJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* LeftJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void LeftJoinTablesRequest::InternalSwap(LeftJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -20583,53 +23355,35 @@ void LeftJoinTablesRequest::InternalSwap(LeftJoinTablesRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata LeftJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[53]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AsOfJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const AsOfJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const AsOfJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const AsOfJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AsOfJoinTablesRequest::_Internal::result_id(const AsOfJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::_Internal::left_id(const AsOfJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::_Internal::right_id(const AsOfJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void AsOfJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } AsOfJoinTablesRequest::AsOfJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE AsOfJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -20638,22 +23392,26 @@ inline PROTOBUF_NDEBUG_INLINE AsOfJoinTablesRequest::Impl_::Impl_( AsOfJoinTablesRequest::AsOfJoinTablesRequest( ::google::protobuf::Arena* arena, const AsOfJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AsOfJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; _impl_.as_of_match_rule_ = from._impl_.as_of_match_rule_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) @@ -20687,42 +23445,34 @@ inline void AsOfJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AsOfJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_.as_of_match_rule_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AsOfJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AsOfJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AsOfJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AsOfJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AsOfJoinTablesRequest::ByteSizeLong, + &AsOfJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_._cached_size_), + false, + }, + &AsOfJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AsOfJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 3, 94, 2> AsOfJoinTablesRequest::_table_ = { { @@ -20735,8 +23485,12 @@ const ::_pbi::TcParseTable<3, 6, 3, 94, 2> AsOfJoinTablesRequest::_table_ = { 6, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AsOfJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -20791,128 +23545,172 @@ const ::_pbi::TcParseTable<3, 6, 3, 94, 2> AsOfJoinTablesRequest::_table_ = { }}, }; -::uint8_t* AsOfJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 4; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match"); - target = stream->WriteString(4, s, target); - } - - // repeated string columns_to_add = 5; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add"); - target = stream->WriteString(5, s, target); - } - - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; - if (this->_internal_as_of_match_rule() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 7, this->_internal_as_of_match_rule(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - return target; -} - -::size_t AsOfJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AsOfJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - - } - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; - if (this->_internal_as_of_match_rule() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_as_of_match_rule()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AsOfJoinTablesRequest::_class_data_ = { - AsOfJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AsOfJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_.as_of_match_rule_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AsOfJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AsOfJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AsOfJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AsOfJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AsOfJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 4; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match"); + target = stream->WriteString(4, s, target); + } + + // repeated string columns_to_add = 5; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add"); + target = stream->WriteString(5, s, target); + } + + // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; + if (this_._internal_as_of_match_rule() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 7, this_._internal_as_of_match_rule(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AsOfJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const AsOfJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AsOfJoinTablesRequest::ByteSizeLong() const { + const AsOfJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + { + // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; + if (this_._internal_as_of_match_rule() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_as_of_match_rule()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AsOfJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -20923,21 +23721,37 @@ void AsOfJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } if (from._internal_as_of_match_rule() != 0) { - _this->_internal_set_as_of_match_rule(from._internal_as_of_match_rule()); + _this->_impl_.as_of_match_rule_ = from._impl_.as_of_match_rule_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -20948,13 +23762,7 @@ void AsOfJoinTablesRequest::CopyFrom(const AsOfJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AsOfJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AsOfJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AsOfJoinTablesRequest::InternalSwap(AsOfJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -20970,53 +23778,35 @@ void AsOfJoinTablesRequest::InternalSwap(AsOfJoinTablesRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata AsOfJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[54]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AjRajTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const AjRajTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const AjRajTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const AjRajTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AjRajTablesRequest::_Internal::result_id(const AjRajTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::_Internal::left_id(const AjRajTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::_Internal::right_id(const AjRajTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void AjRajTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } AjRajTablesRequest::AjRajTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) } inline PROTOBUF_NDEBUG_INLINE AjRajTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, exact_match_columns_{visibility, arena, from.exact_match_columns_}, @@ -21026,22 +23816,26 @@ inline PROTOBUF_NDEBUG_INLINE AjRajTablesRequest::Impl_::Impl_( AjRajTablesRequest::AjRajTablesRequest( ::google::protobuf::Arena* arena, const AjRajTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AjRajTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) } @@ -21076,42 +23870,34 @@ inline void AjRajTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AjRajTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.exact_match_columns_.Clear(); - _impl_.columns_to_add_.Clear(); - _impl_.as_of_column_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AjRajTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AjRajTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AjRajTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AjRajTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AjRajTablesRequest::ByteSizeLong, + &AjRajTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_._cached_size_), + false, + }, + &AjRajTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AjRajTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 3, 106, 2> AjRajTablesRequest::_table_ = { { @@ -21124,8 +23910,12 @@ const ::_pbi::TcParseTable<3, 6, 3, 106, 2> AjRajTablesRequest::_table_ = { 6, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AjRajTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -21181,129 +23971,173 @@ const ::_pbi::TcParseTable<3, 6, 3, 106, 2> AjRajTablesRequest::_table_ = { }}, }; -::uint8_t* AjRajTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string exact_match_columns = 4; - for (int i = 0, n = this->_internal_exact_match_columns_size(); i < n; ++i) { - const auto& s = this->_internal_exact_match_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns"); - target = stream->WriteString(4, s, target); - } - - // string as_of_column = 5; - if (!this->_internal_as_of_column().empty()) { - const std::string& _s = this->_internal_as_of_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // repeated string columns_to_add = 6; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add"); - target = stream->WriteString(6, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - return target; -} - -::size_t AjRajTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AjRajTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string exact_match_columns = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_exact_match_columns().size()); - for (int i = 0, n = _internal_exact_match_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_exact_match_columns().Get(i)); - } - // repeated string columns_to_add = 6; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } - // string as_of_column = 5; - if (!this->_internal_as_of_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_as_of_column()); - } - + _impl_.exact_match_columns_.Clear(); + _impl_.columns_to_add_.Clear(); + _impl_.as_of_column_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AjRajTablesRequest::_class_data_ = { - AjRajTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AjRajTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AjRajTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AjRajTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AjRajTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AjRajTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AjRajTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string exact_match_columns = 4; + for (int i = 0, n = this_._internal_exact_match_columns_size(); i < n; ++i) { + const auto& s = this_._internal_exact_match_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns"); + target = stream->WriteString(4, s, target); + } + + // string as_of_column = 5; + if (!this_._internal_as_of_column().empty()) { + const std::string& _s = this_._internal_as_of_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // repeated string columns_to_add = 6; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add"); + target = stream->WriteString(6, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AjRajTablesRequest::ByteSizeLong(const MessageLite& base) { + const AjRajTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AjRajTablesRequest::ByteSizeLong() const { + const AjRajTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string exact_match_columns = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_exact_match_columns().size()); + for (int i = 0, n = this_._internal_exact_match_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_exact_match_columns().Get(i)); + } + } + // repeated string columns_to_add = 6; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + { + // string as_of_column = 5; + if (!this_._internal_as_of_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_as_of_column()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AjRajTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -21317,18 +24151,34 @@ void AjRajTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -21339,13 +24189,7 @@ void AjRajTablesRequest::CopyFrom(const AjRajTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AjRajTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AjRajTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AjRajTablesRequest::InternalSwap(AjRajTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -21364,34 +24208,30 @@ void AjRajTablesRequest::InternalSwap(AjRajTablesRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata AjRajTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[55]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MultiJoinInput::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const MultiJoinInput* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::TableReference& MultiJoinInput::_Internal::source_id(const MultiJoinInput* msg) { - return *msg->_impl_.source_id_; -} MultiJoinInput::MultiJoinInput(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MultiJoinInput) } inline PROTOBUF_NDEBUG_INLINE MultiJoinInput::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MultiJoinInput& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_}, @@ -21400,16 +24240,20 @@ inline PROTOBUF_NDEBUG_INLINE MultiJoinInput::Impl_::Impl_( MultiJoinInput::MultiJoinInput( ::google::protobuf::Arena* arena, const MultiJoinInput& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MultiJoinInput* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MultiJoinInput) } @@ -21435,31 +24279,34 @@ inline void MultiJoinInput::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MultiJoinInput::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - _impl_.columns_to_add_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MultiJoinInput::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MultiJoinInput::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MultiJoinInput_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MultiJoinInput::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MultiJoinInput::ByteSizeLong, + &MultiJoinInput::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_._cached_size_), + false, + }, + &MultiJoinInput::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MultiJoinInput::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 1, 87, 2> MultiJoinInput::_table_ = { { @@ -21472,8 +24319,12 @@ const ::_pbi::TcParseTable<2, 3, 1, 87, 2> MultiJoinInput::_table_ = { 3, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MultiJoinInput_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MultiJoinInput>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; @@ -21507,87 +24358,124 @@ const ::_pbi::TcParseTable<2, 3, 1, 87, 2> MultiJoinInput::_table_ = { }}, }; -::uint8_t* MultiJoinInput::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated string columns_to_match = 2; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match"); - target = stream->WriteString(2, s, target); - } - - // repeated string columns_to_add = 3; - for (int i = 0, n = this->_internal_columns_to_add_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_add().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add"); - target = stream->WriteString(3, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MultiJoinInput) - return target; -} - -::size_t MultiJoinInput::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MultiJoinInput::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } - // repeated string columns_to_add = 3; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_add().size()); - for (int i = 0, n = _internal_columns_to_add().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_add().Get(i)); - } - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + _impl_.columns_to_match_.Clear(); + _impl_.columns_to_add_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MultiJoinInput::_class_data_ = { - MultiJoinInput::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MultiJoinInput::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MultiJoinInput::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MultiJoinInput::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MultiJoinInput& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MultiJoinInput::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MultiJoinInput& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated string columns_to_match = 2; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match"); + target = stream->WriteString(2, s, target); + } + + // repeated string columns_to_add = 3; + for (int i = 0, n = this_._internal_columns_to_add_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_add().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add"); + target = stream->WriteString(3, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MultiJoinInput) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MultiJoinInput::ByteSizeLong(const MessageLite& base) { + const MultiJoinInput& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MultiJoinInput::ByteSizeLong() const { + const MultiJoinInput& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + // repeated string columns_to_add = 3; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_add().size()); + for (int i = 0, n = this_._internal_columns_to_add().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_add().Get(i)); + } + } + } + { + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MultiJoinInput::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -21595,10 +24483,17 @@ void MultiJoinInput::MergeImpl(::google::protobuf::Message& to_msg, const ::goog _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -21609,13 +24504,7 @@ void MultiJoinInput::CopyFrom(const MultiJoinInput& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MultiJoinInput::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MultiJoinInput::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MultiJoinInput::InternalSwap(MultiJoinInput* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -21626,39 +24515,35 @@ void MultiJoinInput::InternalSwap(MultiJoinInput* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MultiJoinInput::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[56]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MultiJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const MultiJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& MultiJoinTablesRequest::_Internal::result_id(const MultiJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} void MultiJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } MultiJoinTablesRequest::MultiJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE MultiJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, multi_join_inputs_{visibility, arena, from.multi_join_inputs_} {} @@ -21666,16 +24551,20 @@ inline PROTOBUF_NDEBUG_INLINE MultiJoinTablesRequest::Impl_::Impl_( MultiJoinTablesRequest::MultiJoinTablesRequest( ::google::protobuf::Arena* arena, const MultiJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MultiJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) } @@ -21700,30 +24589,34 @@ inline void MultiJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MultiJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.multi_join_inputs_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MultiJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MultiJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MultiJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MultiJoinTablesRequest::ByteSizeLong, + &MultiJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_._cached_size_), + false, + }, + &MultiJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MultiJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* MultiJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MultiJoinTablesRequest::_table_ = { { @@ -21736,8 +24629,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MultiJoinTablesRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MultiJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; {::_pbi::TcParser::FastMtR1, @@ -21761,73 +24658,107 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MultiJoinTablesRequest::_table_ = { }}, }; -::uint8_t* MultiJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_multi_join_inputs_size()); i < n; i++) { - const auto& repfield = this->_internal_multi_join_inputs().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - return target; -} - -::size_t MultiJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MultiJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; - total_size += 1UL * this->_internal_multi_join_inputs_size(); - for (const auto& msg : this->_internal_multi_join_inputs()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + _impl_.multi_join_inputs_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MultiJoinTablesRequest::_class_data_ = { - MultiJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MultiJoinTablesRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MultiJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MultiJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MultiJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MultiJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MultiJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_multi_join_inputs_size()); + i < n; i++) { + const auto& repfield = this_._internal_multi_join_inputs().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MultiJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const MultiJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MultiJoinTablesRequest::ByteSizeLong() const { + const MultiJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; + { + total_size += 1UL * this_._internal_multi_join_inputs_size(); + for (const auto& msg : this_._internal_multi_join_inputs()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MultiJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -21835,10 +24766,17 @@ void MultiJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, cons _this->_internal_mutable_multi_join_inputs()->MergeFrom( from._internal_multi_join_inputs()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -21849,13 +24787,7 @@ void MultiJoinTablesRequest::CopyFrom(const MultiJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MultiJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MultiJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MultiJoinTablesRequest::InternalSwap(MultiJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -21865,53 +24797,35 @@ void MultiJoinTablesRequest::InternalSwap(MultiJoinTablesRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata MultiJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[57]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class RangeJoinTablesRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const RangeJoinTablesRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const RangeJoinTablesRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const RangeJoinTablesRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& RangeJoinTablesRequest::_Internal::result_id(const RangeJoinTablesRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::_Internal::left_id(const RangeJoinTablesRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::_Internal::right_id(const RangeJoinTablesRequest* msg) { - return *msg->_impl_.right_id_; -} void RangeJoinTablesRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } RangeJoinTablesRequest::RangeJoinTablesRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) } inline PROTOBUF_NDEBUG_INLINE RangeJoinTablesRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, exact_match_columns_{visibility, arena, from.exact_match_columns_}, @@ -21924,22 +24838,26 @@ inline PROTOBUF_NDEBUG_INLINE RangeJoinTablesRequest::Impl_::Impl_( RangeJoinTablesRequest::RangeJoinTablesRequest( ::google::protobuf::Arena* arena, const RangeJoinTablesRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE RangeJoinTablesRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, range_start_rule_), reinterpret_cast(&from._impl_) + @@ -21987,48 +24905,34 @@ inline void RangeJoinTablesRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void RangeJoinTablesRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.exact_match_columns_.Clear(); - _impl_.aggregations_.Clear(); - _impl_.left_start_column_.ClearToEmpty(); - _impl_.right_range_column_.ClearToEmpty(); - _impl_.left_end_column_.ClearToEmpty(); - _impl_.range_match_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - ::memset(&_impl_.range_start_rule_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.range_end_rule_) - - reinterpret_cast(&_impl_.range_start_rule_)) + sizeof(_impl_.range_end_rule_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* RangeJoinTablesRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + RangeJoinTablesRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_RangeJoinTablesRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &RangeJoinTablesRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &RangeJoinTablesRequest::ByteSizeLong, + &RangeJoinTablesRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_._cached_size_), + false, + }, + &RangeJoinTablesRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* RangeJoinTablesRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<4, 11, 4, 153, 2> RangeJoinTablesRequest::_table_ = { { @@ -22041,8 +24945,12 @@ const ::_pbi::TcParseTable<4, 11, 4, 153, 2> RangeJoinTablesRequest::_table_ = { 11, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_RangeJoinTablesRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -22134,197 +25042,245 @@ const ::_pbi::TcParseTable<4, 11, 4, 153, 2> RangeJoinTablesRequest::_table_ = { }}, }; -::uint8_t* RangeJoinTablesRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // repeated string exact_match_columns = 4; - for (int i = 0, n = this->_internal_exact_match_columns_size(); i < n; ++i) { - const auto& s = this->_internal_exact_match_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns"); - target = stream->WriteString(4, s, target); - } - - // string left_start_column = 5; - if (!this->_internal_left_start_column().empty()) { - const std::string& _s = this->_internal_left_start_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; - if (this->_internal_range_start_rule() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 6, this->_internal_range_start_rule(), target); - } - - // string right_range_column = 7; - if (!this->_internal_right_range_column().empty()) { - const std::string& _s = this->_internal_right_range_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column"); - target = stream->WriteStringMaybeAliased(7, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; - if (this->_internal_range_end_rule() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 8, this->_internal_range_end_rule(), target); - } - - // string left_end_column = 9; - if (!this->_internal_left_end_column().empty()) { - const std::string& _s = this->_internal_left_end_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column"); - target = stream->WriteStringMaybeAliased(9, _s, target); - } - - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; - for (unsigned i = 0, - n = static_cast(this->_internal_aggregations_size()); i < n; i++) { - const auto& repfield = this->_internal_aggregations().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(10, repfield, repfield.GetCachedSize(), target, stream); - } - - // string range_match = 11; - if (!this->_internal_range_match().empty()) { - const std::string& _s = this->_internal_range_match(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match"); - target = stream->WriteStringMaybeAliased(11, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - return target; -} - -::size_t RangeJoinTablesRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void RangeJoinTablesRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string exact_match_columns = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_exact_match_columns().size()); - for (int i = 0, n = _internal_exact_match_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_exact_match_columns().Get(i)); - } - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; - total_size += 1UL * this->_internal_aggregations_size(); - for (const auto& msg : this->_internal_aggregations()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string left_start_column = 5; - if (!this->_internal_left_start_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_left_start_column()); - } - - // string right_range_column = 7; - if (!this->_internal_right_range_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_right_range_column()); - } - - // string left_end_column = 9; - if (!this->_internal_left_end_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_left_end_column()); - } - - // string range_match = 11; - if (!this->_internal_range_match().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_range_match()); - } - + _impl_.exact_match_columns_.Clear(); + _impl_.aggregations_.Clear(); + _impl_.left_start_column_.ClearToEmpty(); + _impl_.right_range_column_.ClearToEmpty(); + _impl_.left_end_column_.ClearToEmpty(); + _impl_.range_match_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - - } - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; - if (this->_internal_range_start_rule() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_range_start_rule()); - } - - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; - if (this->_internal_range_end_rule() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_range_end_rule()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData RangeJoinTablesRequest::_class_data_ = { - RangeJoinTablesRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* RangeJoinTablesRequest::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.range_start_rule_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.range_end_rule_) - + reinterpret_cast(&_impl_.range_start_rule_)) + sizeof(_impl_.range_end_rule_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void RangeJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* RangeJoinTablesRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const RangeJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* RangeJoinTablesRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const RangeJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // repeated string exact_match_columns = 4; + for (int i = 0, n = this_._internal_exact_match_columns_size(); i < n; ++i) { + const auto& s = this_._internal_exact_match_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns"); + target = stream->WriteString(4, s, target); + } + + // string left_start_column = 5; + if (!this_._internal_left_start_column().empty()) { + const std::string& _s = this_._internal_left_start_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; + if (this_._internal_range_start_rule() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 6, this_._internal_range_start_rule(), target); + } + + // string right_range_column = 7; + if (!this_._internal_right_range_column().empty()) { + const std::string& _s = this_._internal_right_range_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column"); + target = stream->WriteStringMaybeAliased(7, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; + if (this_._internal_range_end_rule() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 8, this_._internal_range_end_rule(), target); + } + + // string left_end_column = 9; + if (!this_._internal_left_end_column().empty()) { + const std::string& _s = this_._internal_left_end_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column"); + target = stream->WriteStringMaybeAliased(9, _s, target); + } + + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; + for (unsigned i = 0, n = static_cast( + this_._internal_aggregations_size()); + i < n; i++) { + const auto& repfield = this_._internal_aggregations().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, repfield, repfield.GetCachedSize(), + target, stream); + } + + // string range_match = 11; + if (!this_._internal_range_match().empty()) { + const std::string& _s = this_._internal_range_match(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match"); + target = stream->WriteStringMaybeAliased(11, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t RangeJoinTablesRequest::ByteSizeLong(const MessageLite& base) { + const RangeJoinTablesRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t RangeJoinTablesRequest::ByteSizeLong() const { + const RangeJoinTablesRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string exact_match_columns = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_exact_match_columns().size()); + for (int i = 0, n = this_._internal_exact_match_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_exact_match_columns().Get(i)); + } + } + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; + { + total_size += 1UL * this_._internal_aggregations_size(); + for (const auto& msg : this_._internal_aggregations()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string left_start_column = 5; + if (!this_._internal_left_start_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_left_start_column()); + } + // string right_range_column = 7; + if (!this_._internal_right_range_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_right_range_column()); + } + // string left_end_column = 9; + if (!this_._internal_left_end_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_left_end_column()); + } + // string range_match = 11; + if (!this_._internal_range_match().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_range_match()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + { + // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; + if (this_._internal_range_start_rule() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_range_start_rule()); + } + // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; + if (this_._internal_range_end_rule() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_range_end_rule()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void RangeJoinTablesRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -22348,24 +25304,40 @@ void RangeJoinTablesRequest::MergeImpl(::google::protobuf::Message& to_msg, cons cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } if (from._internal_range_start_rule() != 0) { - _this->_internal_set_range_start_rule(from._internal_range_start_rule()); + _this->_impl_.range_start_rule_ = from._impl_.range_start_rule_; } if (from._internal_range_end_rule() != 0) { - _this->_internal_set_range_end_rule(from._internal_range_end_rule()); + _this->_impl_.range_end_rule_ = from._impl_.range_end_rule_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -22376,13 +25348,7 @@ void RangeJoinTablesRequest::CopyFrom(const RangeJoinTablesRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool RangeJoinTablesRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* RangeJoinTablesRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void RangeJoinTablesRequest::InternalSwap(RangeJoinTablesRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -22404,9 +25370,7 @@ void RangeJoinTablesRequest::InternalSwap(RangeJoinTablesRequest* PROTOBUF_RESTR } ::google::protobuf::Metadata RangeJoinTablesRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[58]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -22415,13 +25379,17 @@ class ComboAggregateRequest_Aggregate::_Internal { }; ComboAggregateRequest_Aggregate::ComboAggregateRequest_Aggregate(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) } inline PROTOBUF_NDEBUG_INLINE ComboAggregateRequest_Aggregate::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate& from_msg) : match_pairs_{visibility, arena, from.match_pairs_}, column_name_(arena, from.column_name_), _cached_size_{0} {} @@ -22429,12 +25397,16 @@ inline PROTOBUF_NDEBUG_INLINE ComboAggregateRequest_Aggregate::Impl_::Impl_( ComboAggregateRequest_Aggregate::ComboAggregateRequest_Aggregate( ::google::protobuf::Arena* arena, const ComboAggregateRequest_Aggregate& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ComboAggregateRequest_Aggregate* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, type_), reinterpret_cast(&from._impl_) + @@ -22472,28 +25444,34 @@ inline void ComboAggregateRequest_Aggregate::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ComboAggregateRequest_Aggregate::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.match_pairs_.Clear(); - _impl_.column_name_.ClearToEmpty(); - ::memset(&_impl_.type_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.percentile_) - - reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.percentile_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ComboAggregateRequest_Aggregate::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ComboAggregateRequest_Aggregate::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ComboAggregateRequest_Aggregate_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ComboAggregateRequest_Aggregate::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ComboAggregateRequest_Aggregate::ByteSizeLong, + &ComboAggregateRequest_Aggregate::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_._cached_size_), + false, + }, + &ComboAggregateRequest_Aggregate::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ComboAggregateRequest_Aggregate::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 0, 96, 2> ComboAggregateRequest_Aggregate::_table_ = { { @@ -22506,8 +25484,12 @@ const ::_pbi::TcParseTable<3, 5, 0, 96, 2> ComboAggregateRequest_Aggregate::_tab 5, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_ComboAggregateRequest_Aggregate_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; @@ -22555,117 +25537,133 @@ const ::_pbi::TcParseTable<3, 5, 0, 96, 2> ComboAggregateRequest_Aggregate::_tab }}, }; -::uint8_t* ComboAggregateRequest_Aggregate::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; - if (this->_internal_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_type(), target); - } - - // repeated string match_pairs = 2; - for (int i = 0, n = this->_internal_match_pairs_size(); i < n; ++i) { - const auto& s = this->_internal_match_pairs().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs"); - target = stream->WriteString(2, s, target); - } - - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // double percentile = 4; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 4, this->_internal_percentile(), target); - } - - // bool avg_median = 5; - if (this->_internal_avg_median() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_avg_median(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - return target; -} - -::size_t ComboAggregateRequest_Aggregate::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ComboAggregateRequest_Aggregate::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string match_pairs = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_match_pairs().size()); - for (int i = 0, n = _internal_match_pairs().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_match_pairs().Get(i)); - } - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; - if (this->_internal_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); - } - - // bool avg_median = 5; - if (this->_internal_avg_median() != 0) { - total_size += 2; - } - - // double percentile = 4; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - total_size += 9; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ComboAggregateRequest_Aggregate::_class_data_ = { - ComboAggregateRequest_Aggregate::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ComboAggregateRequest_Aggregate::GetClassData() const { - return &_class_data_; + _impl_.match_pairs_.Clear(); + _impl_.column_name_.ClearToEmpty(); + ::memset(&_impl_.type_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.percentile_) - + reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.percentile_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ComboAggregateRequest_Aggregate::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ComboAggregateRequest_Aggregate::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ComboAggregateRequest_Aggregate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ComboAggregateRequest_Aggregate::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ComboAggregateRequest_Aggregate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; + if (this_._internal_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_type(), target); + } + + // repeated string match_pairs = 2; + for (int i = 0, n = this_._internal_match_pairs_size(); i < n; ++i) { + const auto& s = this_._internal_match_pairs().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs"); + target = stream->WriteString(2, s, target); + } + + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // double percentile = 4; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 4, this_._internal_percentile(), target); + } + + // bool avg_median = 5; + if (this_._internal_avg_median() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_avg_median(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ComboAggregateRequest_Aggregate::ByteSizeLong(const MessageLite& base) { + const ComboAggregateRequest_Aggregate& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ComboAggregateRequest_Aggregate::ByteSizeLong() const { + const ComboAggregateRequest_Aggregate& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string match_pairs = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_match_pairs().size()); + for (int i = 0, n = this_._internal_match_pairs().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_match_pairs().Get(i)); + } + } + } + { + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; + if (this_._internal_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_type()); + } + // bool avg_median = 5; + if (this_._internal_avg_median() != 0) { + total_size += 2; + } + // double percentile = 4; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ComboAggregateRequest_Aggregate::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) @@ -22678,18 +25676,13 @@ void ComboAggregateRequest_Aggregate::MergeImpl(::google::protobuf::Message& to_ _this->_internal_set_column_name(from._internal_column_name()); } if (from._internal_type() != 0) { - _this->_internal_set_type(from._internal_type()); + _this->_impl_.type_ = from._impl_.type_; } if (from._internal_avg_median() != 0) { - _this->_internal_set_avg_median(from._internal_avg_median()); + _this->_impl_.avg_median_ = from._impl_.avg_median_; } - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = from._internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - _this->_internal_set_percentile(from._internal_percentile()); + if (::absl::bit_cast<::uint64_t>(from._internal_percentile()) != 0) { + _this->_impl_.percentile_ = from._impl_.percentile_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -22701,13 +25694,7 @@ void ComboAggregateRequest_Aggregate::CopyFrom(const ComboAggregateRequest_Aggre MergeFrom(from); } -PROTOBUF_NOINLINE bool ComboAggregateRequest_Aggregate::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ComboAggregateRequest_Aggregate::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ComboAggregateRequest_Aggregate::InternalSwap(ComboAggregateRequest_Aggregate* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -22724,46 +25711,35 @@ void ComboAggregateRequest_Aggregate::InternalSwap(ComboAggregateRequest_Aggrega } ::google::protobuf::Metadata ComboAggregateRequest_Aggregate::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[59]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ComboAggregateRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const ComboAggregateRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const ComboAggregateRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ComboAggregateRequest::_Internal::result_id(const ComboAggregateRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& ComboAggregateRequest::_Internal::source_id(const ComboAggregateRequest* msg) { - return *msg->_impl_.source_id_; -} void ComboAggregateRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ComboAggregateRequest::ComboAggregateRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) } inline PROTOBUF_NDEBUG_INLINE ComboAggregateRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, aggregates_{visibility, arena, from.aggregates_}, @@ -22772,19 +25748,23 @@ inline PROTOBUF_NDEBUG_INLINE ComboAggregateRequest::Impl_::Impl_( ComboAggregateRequest::ComboAggregateRequest( ::google::protobuf::Arena* arena, const ComboAggregateRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ComboAggregateRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; _impl_.force_combo_ = from._impl_.force_combo_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) @@ -22817,38 +25797,34 @@ inline void ComboAggregateRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ComboAggregateRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.aggregates_.Clear(); - _impl_.group_by_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_.force_combo_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ComboAggregateRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ComboAggregateRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ComboAggregateRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ComboAggregateRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ComboAggregateRequest::ByteSizeLong, + &ComboAggregateRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_._cached_size_), + false, + }, + &ComboAggregateRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ComboAggregateRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 80, 2> ComboAggregateRequest::_table_ = { { @@ -22861,8 +25837,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 80, 2> ComboAggregateRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ComboAggregateRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -22911,114 +25891,156 @@ const ::_pbi::TcParseTable<3, 5, 3, 80, 2> ComboAggregateRequest::_table_ = { }}, }; -::uint8_t* ComboAggregateRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) +PROTOBUF_NOINLINE void ComboAggregateRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + _impl_.aggregates_.Clear(); + _impl_.group_by_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); + } + if (cached_has_bits & 0x00000002u) { + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); + } } + _impl_.force_combo_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_aggregates_size()); i < n; i++) { - const auto& repfield = this->_internal_aggregates().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated string group_by_columns = 4; - for (int i = 0, n = this->_internal_group_by_columns_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns"); - target = stream->WriteString(4, s, target); - } - - // bool force_combo = 5; - if (this->_internal_force_combo() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_force_combo(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) - return target; -} - -::size_t ComboAggregateRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; - total_size += 1UL * this->_internal_aggregates_size(); - for (const auto& msg : this->_internal_aggregates()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string group_by_columns = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_columns().size()); - for (int i = 0, n = _internal_group_by_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_columns().Get(i)); - } - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); - } - - } - // bool force_combo = 5; - if (this->_internal_force_combo() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ComboAggregateRequest::_class_data_ = { - ComboAggregateRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ComboAggregateRequest::GetClassData() const { - return &_class_data_; -} - -void ComboAggregateRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ComboAggregateRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ComboAggregateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ComboAggregateRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ComboAggregateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_aggregates_size()); + i < n; i++) { + const auto& repfield = this_._internal_aggregates().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated string group_by_columns = 4; + for (int i = 0, n = this_._internal_group_by_columns_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns"); + target = stream->WriteString(4, s, target); + } + + // bool force_combo = 5; + if (this_._internal_force_combo() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_force_combo(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ComboAggregateRequest::ByteSizeLong(const MessageLite& base) { + const ComboAggregateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ComboAggregateRequest::ByteSizeLong() const { + const ComboAggregateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; + { + total_size += 1UL * this_._internal_aggregates_size(); + for (const auto& msg : this_._internal_aggregates()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string group_by_columns = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_columns().size()); + for (int i = 0, n = this_._internal_group_by_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + { + // bool force_combo = 5; + if (this_._internal_force_combo() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ComboAggregateRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -23030,17 +26052,28 @@ void ComboAggregateRequest::MergeImpl(::google::protobuf::Message& to_msg, const cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } if (from._internal_force_combo() != 0) { - _this->_internal_set_force_combo(from._internal_force_combo()); + _this->_impl_.force_combo_ = from._impl_.force_combo_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -23051,13 +26084,7 @@ void ComboAggregateRequest::CopyFrom(const ComboAggregateRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ComboAggregateRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ComboAggregateRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ComboAggregateRequest::InternalSwap(ComboAggregateRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -23073,53 +26100,35 @@ void ComboAggregateRequest::InternalSwap(ComboAggregateRequest* PROTOBUF_RESTRIC } ::google::protobuf::Metadata ComboAggregateRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[60]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggregateAllRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const AggregateAllRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const AggregateAllRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::AggSpec& spec(const AggregateAllRequest* msg); - static void set_has_spec(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateAllRequest::_Internal::result_id(const AggregateAllRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateAllRequest::_Internal::source_id(const AggregateAllRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec& AggregateAllRequest::_Internal::spec(const AggregateAllRequest* msg) { - return *msg->_impl_.spec_; -} void AggregateAllRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } AggregateAllRequest::AggregateAllRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggregateAllRequest) } inline PROTOBUF_NDEBUG_INLINE AggregateAllRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, group_by_columns_{visibility, arena, from.group_by_columns_} {} @@ -23127,22 +26136,26 @@ inline PROTOBUF_NDEBUG_INLINE AggregateAllRequest::Impl_::Impl_( AggregateAllRequest::AggregateAllRequest( ::google::protobuf::Arena* arena, const AggregateAllRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggregateAllRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.spec_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec>(arena, *from._impl_.spec_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.spec_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>( + arena, *from._impl_.spec_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggregateAllRequest) } @@ -23174,40 +26187,34 @@ inline void AggregateAllRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggregateAllRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.group_by_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.spec_ != nullptr); - _impl_.spec_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggregateAllRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggregateAllRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggregateAllRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggregateAllRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggregateAllRequest::ByteSizeLong, + &AggregateAllRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_._cached_size_), + false, + }, + &AggregateAllRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggregateAllRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 3, 78, 2> AggregateAllRequest::_table_ = { { @@ -23220,8 +26227,12 @@ const ::_pbi::TcParseTable<2, 4, 3, 78, 2> AggregateAllRequest::_table_ = { 4, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AggregateAllRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string group_by_columns = 4; {::_pbi::TcParser::FastUR1, @@ -23261,101 +26272,139 @@ const ::_pbi::TcParseTable<2, 4, 3, 78, 2> AggregateAllRequest::_table_ = { }}, }; -::uint8_t* AggregateAllRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::spec(this), - _Internal::spec(this).GetCachedSize(), target, stream); - } - - // repeated string group_by_columns = 4; - for (int i = 0, n = this->_internal_group_by_columns_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns"); - target = stream->WriteString(4, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - return target; -} - -::size_t AggregateAllRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggregateAllRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string group_by_columns = 4; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_columns().size()); - for (int i = 0, n = _internal_group_by_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_columns().Get(i)); - } + _impl_.group_by_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.spec_); + ABSL_DCHECK(_impl_.spec_ != nullptr); + _impl_.spec_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggregateAllRequest::_class_data_ = { - AggregateAllRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggregateAllRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggregateAllRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggregateAllRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggregateAllRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggregateAllRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggregateAllRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.spec_, this_._impl_.spec_->GetCachedSize(), target, + stream); + } + + // repeated string group_by_columns = 4; + for (int i = 0, n = this_._internal_group_by_columns_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns"); + target = stream->WriteString(4, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggregateAllRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggregateAllRequest::ByteSizeLong(const MessageLite& base) { + const AggregateAllRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggregateAllRequest::ByteSizeLong() const { + const AggregateAllRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string group_by_columns = 4; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_columns().size()); + for (int i = 0, n = this_._internal_group_by_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.spec_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggregateAllRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -23365,18 +26414,34 @@ void AggregateAllRequest::MergeImpl(::google::protobuf::Message& to_msg, const : cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_spec()->::io::deephaven::proto::backplane::grpc::AggSpec::MergeFrom( - from._internal_spec()); + ABSL_DCHECK(from._impl_.spec_ != nullptr); + if (_this->_impl_.spec_ == nullptr) { + _this->_impl_.spec_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>(arena, *from._impl_.spec_); + } else { + _this->_impl_.spec_->MergeFrom(*from._impl_.spec_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -23387,13 +26452,7 @@ void AggregateAllRequest::CopyFrom(const AggregateAllRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggregateAllRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggregateAllRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggregateAllRequest::InternalSwap(AggregateAllRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -23408,24 +26467,24 @@ void AggregateAllRequest::InternalSwap(AggregateAllRequest* PROTOBUF_RESTRICT ot } ::google::protobuf::Metadata AggregateAllRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[61]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggSpec_AggSpecApproximatePercentile::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_._has_bits_); - static void set_has_compression(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_._has_bits_); }; AggSpec_AggSpecApproximatePercentile::AggSpec_AggSpecApproximatePercentile(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) } @@ -23458,26 +26517,34 @@ inline void AggSpec_AggSpecApproximatePercentile::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecApproximatePercentile::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.percentile_ = 0; - _impl_.compression_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecApproximatePercentile::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecApproximatePercentile::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecApproximatePercentile_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecApproximatePercentile::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecApproximatePercentile::ByteSizeLong, + &AggSpec_AggSpecApproximatePercentile::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecApproximatePercentile::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecApproximatePercentile::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecApproximatePercentile::_table_ = { { @@ -23490,8 +26557,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecApproximatePercentile:: 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecApproximatePercentile_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional double compression = 2; {::_pbi::TcParser::FastF64S1, @@ -23514,78 +26585,92 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecApproximatePercentile:: }}, }; -::uint8_t* AggSpec_AggSpecApproximatePercentile::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // double percentile = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 1, this->_internal_percentile(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // optional double compression = 2; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 2, this->_internal_compression(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - return target; -} - -::size_t AggSpec_AggSpecApproximatePercentile::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecApproximatePercentile::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // double percentile = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - total_size += 9; - } - - // optional double compression = 2; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 9; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecApproximatePercentile::_class_data_ = { - AggSpec_AggSpecApproximatePercentile::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecApproximatePercentile::GetClassData() const { - return &_class_data_; + _impl_.percentile_ = 0; + _impl_.compression_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecApproximatePercentile::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecApproximatePercentile::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecApproximatePercentile& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecApproximatePercentile::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecApproximatePercentile& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // double percentile = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 1, this_._internal_percentile(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional double compression = 2; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 2, this_._internal_compression(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecApproximatePercentile::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecApproximatePercentile& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecApproximatePercentile::ByteSizeLong() const { + const AggSpec_AggSpecApproximatePercentile& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // double percentile = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + total_size += 9; + } + } + { + // optional double compression = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecApproximatePercentile::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) @@ -23593,17 +26678,14 @@ void AggSpec_AggSpecApproximatePercentile::MergeImpl(::google::protobuf::Message ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = from._internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - _this->_internal_set_percentile(from._internal_percentile()); + if (::absl::bit_cast<::uint64_t>(from._internal_percentile()) != 0) { + _this->_impl_.percentile_ = from._impl_.percentile_; } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_set_compression(from._internal_compression()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _this->_impl_.compression_ = from._impl_.compression_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -23614,13 +26696,7 @@ void AggSpec_AggSpecApproximatePercentile::CopyFrom(const AggSpec_AggSpecApproxi MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecApproximatePercentile::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecApproximatePercentile::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecApproximatePercentile::InternalSwap(AggSpec_AggSpecApproximatePercentile* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -23634,9 +26710,7 @@ void AggSpec_AggSpecApproximatePercentile::InternalSwap(AggSpec_AggSpecApproxima } ::google::protobuf::Metadata AggSpec_AggSpecApproximatePercentile::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[62]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -23645,7 +26719,11 @@ class AggSpec_AggSpecCountDistinct::_Internal { }; AggSpec_AggSpecCountDistinct::AggSpec_AggSpecCountDistinct(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) } @@ -23673,24 +26751,34 @@ inline void AggSpec_AggSpecCountDistinct::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecCountDistinct::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.count_nulls_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecCountDistinct::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecCountDistinct::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecCountDistinct_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecCountDistinct::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecCountDistinct::ByteSizeLong, + &AggSpec_AggSpecCountDistinct::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecCountDistinct, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecCountDistinct::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecCountDistinct::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecCountDistinct::_table_ = { { @@ -23703,8 +26791,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecCountDistinct::_table_ 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecCountDistinct_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool count_nulls = 1; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -23721,54 +26813,73 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecCountDistinct::_table_ }}, }; -::uint8_t* AggSpec_AggSpecCountDistinct::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool count_nulls = 1; - if (this->_internal_count_nulls() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_count_nulls(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - return target; -} - -::size_t AggSpec_AggSpecCountDistinct::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecCountDistinct::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bool count_nulls = 1; - if (this->_internal_count_nulls() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecCountDistinct::_class_data_ = { - AggSpec_AggSpecCountDistinct::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecCountDistinct::GetClassData() const { - return &_class_data_; + _impl_.count_nulls_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecCountDistinct::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecCountDistinct::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecCountDistinct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecCountDistinct::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecCountDistinct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool count_nulls = 1; + if (this_._internal_count_nulls() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_count_nulls(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecCountDistinct::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecCountDistinct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecCountDistinct::ByteSizeLong() const { + const AggSpec_AggSpecCountDistinct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // bool count_nulls = 1; + if (this_._internal_count_nulls() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecCountDistinct::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) @@ -23777,7 +26888,7 @@ void AggSpec_AggSpecCountDistinct::MergeImpl(::google::protobuf::Message& to_msg (void) cached_has_bits; if (from._internal_count_nulls() != 0) { - _this->_internal_set_count_nulls(from._internal_count_nulls()); + _this->_impl_.count_nulls_ = from._impl_.count_nulls_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -23789,13 +26900,7 @@ void AggSpec_AggSpecCountDistinct::CopyFrom(const AggSpec_AggSpecCountDistinct& MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecCountDistinct::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecCountDistinct::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecCountDistinct::InternalSwap(AggSpec_AggSpecCountDistinct* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -23803,9 +26908,7 @@ void AggSpec_AggSpecCountDistinct::InternalSwap(AggSpec_AggSpecCountDistinct* PR } ::google::protobuf::Metadata AggSpec_AggSpecCountDistinct::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[63]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -23814,7 +26917,11 @@ class AggSpec_AggSpecDistinct::_Internal { }; AggSpec_AggSpecDistinct::AggSpec_AggSpecDistinct(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) } @@ -23842,24 +26949,34 @@ inline void AggSpec_AggSpecDistinct::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecDistinct::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.include_nulls_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecDistinct::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecDistinct_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecDistinct::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecDistinct::ByteSizeLong, + &AggSpec_AggSpecDistinct::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecDistinct, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecDistinct::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecDistinct::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* AggSpec_AggSpecDistinct::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecDistinct::_table_ = { { @@ -23872,8 +26989,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecDistinct::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecDistinct_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool include_nulls = 1; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -23890,54 +27011,73 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecDistinct::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecDistinct::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool include_nulls = 1; - if (this->_internal_include_nulls() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_include_nulls(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - return target; -} - -::size_t AggSpec_AggSpecDistinct::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecDistinct::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bool include_nulls = 1; - if (this->_internal_include_nulls() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecDistinct::_class_data_ = { - AggSpec_AggSpecDistinct::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecDistinct::GetClassData() const { - return &_class_data_; + _impl_.include_nulls_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecDistinct::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecDistinct::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecDistinct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecDistinct::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecDistinct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool include_nulls = 1; + if (this_._internal_include_nulls() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_include_nulls(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecDistinct::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecDistinct& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecDistinct::ByteSizeLong() const { + const AggSpec_AggSpecDistinct& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // bool include_nulls = 1; + if (this_._internal_include_nulls() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecDistinct::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) @@ -23946,7 +27086,7 @@ void AggSpec_AggSpecDistinct::MergeImpl(::google::protobuf::Message& to_msg, con (void) cached_has_bits; if (from._internal_include_nulls() != 0) { - _this->_internal_set_include_nulls(from._internal_include_nulls()); + _this->_impl_.include_nulls_ = from._impl_.include_nulls_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -23958,13 +27098,7 @@ void AggSpec_AggSpecDistinct::CopyFrom(const AggSpec_AggSpecDistinct& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecDistinct::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecDistinct::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecDistinct::InternalSwap(AggSpec_AggSpecDistinct* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -23972,9 +27106,7 @@ void AggSpec_AggSpecDistinct::InternalSwap(AggSpec_AggSpecDistinct* PROTOBUF_RES } ::google::protobuf::Metadata AggSpec_AggSpecDistinct::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[64]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -23983,13 +27115,17 @@ class AggSpec_AggSpecFormula::_Internal { }; AggSpec_AggSpecFormula::AggSpec_AggSpecFormula(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecFormula::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& from_msg) : formula_(arena, from.formula_), param_token_(arena, from.param_token_), _cached_size_{0} {} @@ -23997,12 +27133,16 @@ inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecFormula::Impl_::Impl_( AggSpec_AggSpecFormula::AggSpec_AggSpecFormula( ::google::protobuf::Arena* arena, const AggSpec_AggSpecFormula& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecFormula* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) } @@ -24028,25 +27168,34 @@ inline void AggSpec_AggSpecFormula::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecFormula::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.formula_.ClearToEmpty(); - _impl_.param_token_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecFormula::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecFormula::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecFormula_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecFormula::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecFormula::ByteSizeLong, + &AggSpec_AggSpecFormula::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFormula, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecFormula::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecFormula::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 83, 2> AggSpec_AggSpecFormula::_table_ = { { @@ -24059,8 +27208,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 83, 2> AggSpec_AggSpecFormula::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecFormula_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string param_token = 2; {::_pbi::TcParser::FastUS1, @@ -24087,79 +27240,99 @@ const ::_pbi::TcParseTable<1, 2, 0, 83, 2> AggSpec_AggSpecFormula::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecFormula::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) +PROTOBUF_NOINLINE void AggSpec_AggSpecFormula::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string formula = 1; - if (!this->_internal_formula().empty()) { - const std::string& _s = this->_internal_formula(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // string param_token = 2; - if (!this->_internal_param_token().empty()) { - const std::string& _s = this->_internal_param_token(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - return target; + _impl_.formula_.ClearToEmpty(); + _impl_.param_token_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -::size_t AggSpec_AggSpecFormula::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - ::size_t total_size = 0; - +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecFormula::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecFormula& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecFormula::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecFormula& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string formula = 1; + if (!this_._internal_formula().empty()) { + const std::string& _s = this_._internal_formula(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // string param_token = 2; + if (!this_._internal_param_token().empty()) { + const std::string& _s = this_._internal_param_token(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecFormula::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecFormula& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecFormula::ByteSizeLong() const { + const AggSpec_AggSpecFormula& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string formula = 1; + if (!this_._internal_formula().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_formula()); + } + // string param_token = 2; + if (!this_._internal_param_token().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_param_token()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecFormula::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) + ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string formula = 1; - if (!this->_internal_formula().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_formula()); - } - - // string param_token = 2; - if (!this->_internal_param_token().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_param_token()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecFormula::_class_data_ = { - AggSpec_AggSpecFormula::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecFormula::GetClassData() const { - return &_class_data_; -} - -void AggSpec_AggSpecFormula::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_formula().empty()) { - _this->_internal_set_formula(from._internal_formula()); + if (!from._internal_formula().empty()) { + _this->_internal_set_formula(from._internal_formula()); } if (!from._internal_param_token().empty()) { _this->_internal_set_param_token(from._internal_param_token()); @@ -24174,13 +27347,7 @@ void AggSpec_AggSpecFormula::CopyFrom(const AggSpec_AggSpecFormula& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecFormula::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecFormula::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecFormula::InternalSwap(AggSpec_AggSpecFormula* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -24191,9 +27358,7 @@ void AggSpec_AggSpecFormula::InternalSwap(AggSpec_AggSpecFormula* PROTOBUF_RESTR } ::google::protobuf::Metadata AggSpec_AggSpecFormula::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[65]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -24202,7 +27367,11 @@ class AggSpec_AggSpecMedian::_Internal { }; AggSpec_AggSpecMedian::AggSpec_AggSpecMedian(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) } @@ -24230,24 +27399,34 @@ inline void AggSpec_AggSpecMedian::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecMedian::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.average_evenly_divided_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecMedian::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecMedian::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecMedian_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecMedian::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecMedian::ByteSizeLong, + &AggSpec_AggSpecMedian::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecMedian, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecMedian::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecMedian::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecMedian::_table_ = { { @@ -24260,8 +27439,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecMedian::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecMedian_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool average_evenly_divided = 1; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -24278,54 +27461,73 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecMedian::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecMedian::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool average_evenly_divided = 1; - if (this->_internal_average_evenly_divided() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_average_evenly_divided(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - return target; -} - -::size_t AggSpec_AggSpecMedian::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecMedian::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bool average_evenly_divided = 1; - if (this->_internal_average_evenly_divided() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecMedian::_class_data_ = { - AggSpec_AggSpecMedian::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecMedian::GetClassData() const { - return &_class_data_; + _impl_.average_evenly_divided_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecMedian::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecMedian::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecMedian& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecMedian::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecMedian& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool average_evenly_divided = 1; + if (this_._internal_average_evenly_divided() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_average_evenly_divided(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecMedian::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecMedian& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecMedian::ByteSizeLong() const { + const AggSpec_AggSpecMedian& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // bool average_evenly_divided = 1; + if (this_._internal_average_evenly_divided() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecMedian::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) @@ -24334,7 +27536,7 @@ void AggSpec_AggSpecMedian::MergeImpl(::google::protobuf::Message& to_msg, const (void) cached_has_bits; if (from._internal_average_evenly_divided() != 0) { - _this->_internal_set_average_evenly_divided(from._internal_average_evenly_divided()); + _this->_impl_.average_evenly_divided_ = from._impl_.average_evenly_divided_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -24346,13 +27548,7 @@ void AggSpec_AggSpecMedian::CopyFrom(const AggSpec_AggSpecMedian& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecMedian::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecMedian::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecMedian::InternalSwap(AggSpec_AggSpecMedian* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -24360,9 +27556,7 @@ void AggSpec_AggSpecMedian::InternalSwap(AggSpec_AggSpecMedian* PROTOBUF_RESTRIC } ::google::protobuf::Metadata AggSpec_AggSpecMedian::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[66]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -24371,7 +27565,11 @@ class AggSpec_AggSpecPercentile::_Internal { }; AggSpec_AggSpecPercentile::AggSpec_AggSpecPercentile(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) } @@ -24404,26 +27602,34 @@ inline void AggSpec_AggSpecPercentile::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecPercentile::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - ::memset(&_impl_.percentile_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.average_evenly_divided_) - - reinterpret_cast(&_impl_.percentile_)) + sizeof(_impl_.average_evenly_divided_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecPercentile::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecPercentile::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecPercentile_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecPercentile::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecPercentile::ByteSizeLong, + &AggSpec_AggSpecPercentile::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecPercentile::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecPercentile::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecPercentile::_table_ = { { @@ -24436,8 +27642,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecPercentile::_table_ = { 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecPercentile_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool average_evenly_divided = 2; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -24460,76 +27670,87 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> AggSpec_AggSpecPercentile::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecPercentile::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // double percentile = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 1, this->_internal_percentile(), target); - } - - // bool average_evenly_divided = 2; - if (this->_internal_average_evenly_divided() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_average_evenly_divided(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - return target; -} - -::size_t AggSpec_AggSpecPercentile::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecPercentile::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // double percentile = 1; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = this->_internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - total_size += 9; - } - - // bool average_evenly_divided = 2; - if (this->_internal_average_evenly_divided() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecPercentile::_class_data_ = { - AggSpec_AggSpecPercentile::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecPercentile::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.percentile_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.average_evenly_divided_) - + reinterpret_cast(&_impl_.percentile_)) + sizeof(_impl_.average_evenly_divided_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecPercentile::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecPercentile::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecPercentile& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecPercentile::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecPercentile& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // double percentile = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 1, this_._internal_percentile(), target); + } + + // bool average_evenly_divided = 2; + if (this_._internal_average_evenly_divided() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_average_evenly_divided(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecPercentile::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecPercentile& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecPercentile::ByteSizeLong() const { + const AggSpec_AggSpecPercentile& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // double percentile = 1; + if (::absl::bit_cast<::uint64_t>(this_._internal_percentile()) != 0) { + total_size += 9; + } + // bool average_evenly_divided = 2; + if (this_._internal_average_evenly_divided() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecPercentile::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) @@ -24537,16 +27758,11 @@ void AggSpec_AggSpecPercentile::MergeImpl(::google::protobuf::Message& to_msg, c ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - static_assert(sizeof(::uint64_t) == sizeof(double), - "Code assumes ::uint64_t and double are the same size."); - double tmp_percentile = from._internal_percentile(); - ::uint64_t raw_percentile; - memcpy(&raw_percentile, &tmp_percentile, sizeof(tmp_percentile)); - if (raw_percentile != 0) { - _this->_internal_set_percentile(from._internal_percentile()); + if (::absl::bit_cast<::uint64_t>(from._internal_percentile()) != 0) { + _this->_impl_.percentile_ = from._impl_.percentile_; } if (from._internal_average_evenly_divided() != 0) { - _this->_internal_set_average_evenly_divided(from._internal_average_evenly_divided()); + _this->_impl_.average_evenly_divided_ = from._impl_.average_evenly_divided_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -24558,13 +27774,7 @@ void AggSpec_AggSpecPercentile::CopyFrom(const AggSpec_AggSpecPercentile& from) MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecPercentile::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecPercentile::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecPercentile::InternalSwap(AggSpec_AggSpecPercentile* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -24577,9 +27787,7 @@ void AggSpec_AggSpecPercentile::InternalSwap(AggSpec_AggSpecPercentile* PROTOBUF } ::google::protobuf::Metadata AggSpec_AggSpecPercentile::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[67]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -24588,25 +27796,33 @@ class AggSpec_AggSpecSorted::_Internal { }; AggSpec_AggSpecSorted::AggSpec_AggSpecSorted(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecSorted::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& from_msg) : columns_{visibility, arena, from.columns_}, _cached_size_{0} {} AggSpec_AggSpecSorted::AggSpec_AggSpecSorted( ::google::protobuf::Arena* arena, const AggSpec_AggSpecSorted& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecSorted* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) } @@ -24629,24 +27845,34 @@ inline void AggSpec_AggSpecSorted::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecSorted::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecSorted::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecSorted::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecSorted_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecSorted::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecSorted::ByteSizeLong, + &AggSpec_AggSpecSorted::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSorted, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecSorted::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecSorted::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AggSpec_AggSpecSorted::_table_ = { { @@ -24659,8 +27885,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AggSpec_AggSpecSorted::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AggSpec_AggSpecSorted_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; {::_pbi::TcParser::FastMtR1, @@ -24677,56 +27907,81 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AggSpec_AggSpecSorted::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecSorted::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_columns_size()); i < n; i++) { - const auto& repfield = this->_internal_columns().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - return target; -} - -::size_t AggSpec_AggSpecSorted::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecSorted::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; - total_size += 1UL * this->_internal_columns_size(); - for (const auto& msg : this->_internal_columns()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecSorted::_class_data_ = { - AggSpec_AggSpecSorted::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecSorted::GetClassData() const { - return &_class_data_; + _impl_.columns_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecSorted::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecSorted::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecSorted& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecSorted::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecSorted& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_columns_size()); + i < n; i++) { + const auto& repfield = this_._internal_columns().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecSorted::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecSorted& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecSorted::ByteSizeLong() const { + const AggSpec_AggSpecSorted& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; + { + total_size += 1UL * this_._internal_columns_size(); + for (const auto& msg : this_._internal_columns()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecSorted::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) @@ -24746,13 +28001,7 @@ void AggSpec_AggSpecSorted::CopyFrom(const AggSpec_AggSpecSorted& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecSorted::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecSorted::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecSorted::InternalSwap(AggSpec_AggSpecSorted* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -24760,9 +28009,7 @@ void AggSpec_AggSpecSorted::InternalSwap(AggSpec_AggSpecSorted* PROTOBUF_RESTRIC } ::google::protobuf::Metadata AggSpec_AggSpecSorted::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[68]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -24771,25 +28018,33 @@ class AggSpec_AggSpecSortedColumn::_Internal { }; AggSpec_AggSpecSortedColumn::AggSpec_AggSpecSortedColumn(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecSortedColumn::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} AggSpec_AggSpecSortedColumn::AggSpec_AggSpecSortedColumn( ::google::protobuf::Arena* arena, const AggSpec_AggSpecSortedColumn& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecSortedColumn* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) } @@ -24813,24 +28068,34 @@ inline void AggSpec_AggSpecSortedColumn::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecSortedColumn::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecSortedColumn::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecSortedColumn::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecSortedColumn_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecSortedColumn::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecSortedColumn::ByteSizeLong, + &AggSpec_AggSpecSortedColumn::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSortedColumn, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecSortedColumn::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecSortedColumn::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 81, 2> AggSpec_AggSpecSortedColumn::_table_ = { { @@ -24843,8 +28108,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 81, 2> AggSpec_AggSpecSortedColumn::_table_ 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecSortedColumn_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column_name = 1; {::_pbi::TcParser::FastUS1, @@ -24864,56 +28133,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 81, 2> AggSpec_AggSpecSortedColumn::_table_ }}, }; -::uint8_t* AggSpec_AggSpecSortedColumn::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - return target; -} - -::size_t AggSpec_AggSpecSortedColumn::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecSortedColumn::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecSortedColumn::_class_data_ = { - AggSpec_AggSpecSortedColumn::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecSortedColumn::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecSortedColumn::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecSortedColumn::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecSortedColumn& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecSortedColumn::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecSortedColumn& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecSortedColumn::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecSortedColumn& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecSortedColumn::ByteSizeLong() const { + const AggSpec_AggSpecSortedColumn& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecSortedColumn::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) @@ -24934,13 +28222,7 @@ void AggSpec_AggSpecSortedColumn::CopyFrom(const AggSpec_AggSpecSortedColumn& fr MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecSortedColumn::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecSortedColumn::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecSortedColumn::InternalSwap(AggSpec_AggSpecSortedColumn* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -24950,24 +28232,24 @@ void AggSpec_AggSpecSortedColumn::InternalSwap(AggSpec_AggSpecSortedColumn* PROT } ::google::protobuf::Metadata AggSpec_AggSpecSortedColumn::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[69]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggSpec_AggSpecTDigest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_._has_bits_); - static void set_has_compression(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_._has_bits_); }; AggSpec_AggSpecTDigest::AggSpec_AggSpecTDigest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) } @@ -24995,25 +28277,34 @@ inline void AggSpec_AggSpecTDigest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecTDigest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.compression_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecTDigest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecTDigest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecTDigest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecTDigest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecTDigest::ByteSizeLong, + &AggSpec_AggSpecTDigest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecTDigest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecTDigest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecTDigest::_table_ = { { @@ -25026,8 +28317,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecTDigest::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecTDigest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional double compression = 1; {::_pbi::TcParser::FastF64S1, @@ -25044,56 +28339,77 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecTDigest::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecTDigest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional double compression = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 1, this->_internal_compression(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - return target; -} - -::size_t AggSpec_AggSpecTDigest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecTDigest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional double compression = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 9; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecTDigest::_class_data_ = { - AggSpec_AggSpecTDigest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecTDigest::GetClassData() const { - return &_class_data_; + _impl_.compression_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecTDigest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecTDigest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecTDigest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecTDigest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecTDigest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional double compression = 1; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 1, this_._internal_compression(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecTDigest::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecTDigest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecTDigest::ByteSizeLong() const { + const AggSpec_AggSpecTDigest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // optional double compression = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 9; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecTDigest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) @@ -25101,9 +28417,11 @@ void AggSpec_AggSpecTDigest::MergeImpl(::google::protobuf::Message& to_msg, cons ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_set_compression(from._internal_compression()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _this->_impl_.compression_ = from._impl_.compression_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -25114,13 +28432,7 @@ void AggSpec_AggSpecTDigest::CopyFrom(const AggSpec_AggSpecTDigest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecTDigest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecTDigest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecTDigest::InternalSwap(AggSpec_AggSpecTDigest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -25129,50 +28441,50 @@ void AggSpec_AggSpecTDigest::InternalSwap(AggSpec_AggSpecTDigest* PROTOBUF_RESTR } ::google::protobuf::Metadata AggSpec_AggSpecTDigest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[70]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggSpec_AggSpecUnique::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& non_unique_sentinel(const AggSpec_AggSpecUnique* msg); - static void set_has_non_unique_sentinel(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& AggSpec_AggSpecUnique::_Internal::non_unique_sentinel(const AggSpec_AggSpecUnique* msg) { - return *msg->_impl_.non_unique_sentinel_; -} AggSpec_AggSpecUnique::AggSpec_AggSpecUnique(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecUnique::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} AggSpec_AggSpecUnique::AggSpec_AggSpecUnique( ::google::protobuf::Arena* arena, const AggSpec_AggSpecUnique& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecUnique* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.non_unique_sentinel_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>(arena, *from._impl_.non_unique_sentinel_) - : nullptr; + _impl_.non_unique_sentinel_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>( + arena, *from._impl_.non_unique_sentinel_) + : nullptr; _impl_.include_nulls_ = from._impl_.include_nulls_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) @@ -25202,30 +28514,34 @@ inline void AggSpec_AggSpecUnique::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecUnique::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.non_unique_sentinel_ != nullptr); - _impl_.non_unique_sentinel_->Clear(); - } - _impl_.include_nulls_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecUnique::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecUnique::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecUnique_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecUnique::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecUnique::ByteSizeLong, + &AggSpec_AggSpecUnique::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecUnique::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecUnique::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 0, 2> AggSpec_AggSpecUnique::_table_ = { { @@ -25238,8 +28554,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> AggSpec_AggSpecUnique::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AggSpec_AggSpecUnique_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; {::_pbi::TcParser::FastMtS1, @@ -25262,83 +28582,119 @@ const ::_pbi::TcParseTable<1, 2, 1, 0, 2> AggSpec_AggSpecUnique::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecUnique::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bool include_nulls = 1; - if (this->_internal_include_nulls() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 1, this->_internal_include_nulls(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::non_unique_sentinel(this), - _Internal::non_unique_sentinel(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - return target; -} - -::size_t AggSpec_AggSpecUnique::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecUnique::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.non_unique_sentinel_); - } - - // bool include_nulls = 1; - if (this->_internal_include_nulls() != 0) { - total_size += 2; + ABSL_DCHECK(_impl_.non_unique_sentinel_ != nullptr); + _impl_.non_unique_sentinel_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecUnique::_class_data_ = { - AggSpec_AggSpecUnique::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecUnique::GetClassData() const { - return &_class_data_; + _impl_.include_nulls_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecUnique::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecUnique::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecUnique& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecUnique::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecUnique& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bool include_nulls = 1; + if (this_._internal_include_nulls() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 1, this_._internal_include_nulls(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.non_unique_sentinel_, this_._impl_.non_unique_sentinel_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecUnique::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecUnique& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecUnique::ByteSizeLong() const { + const AggSpec_AggSpecUnique& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.non_unique_sentinel_); + } + } + { + // bool include_nulls = 1; + if (this_._internal_include_nulls() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecUnique::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_non_unique_sentinel()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel::MergeFrom( - from._internal_non_unique_sentinel()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.non_unique_sentinel_ != nullptr); + if (_this->_impl_.non_unique_sentinel_ == nullptr) { + _this->_impl_.non_unique_sentinel_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>(arena, *from._impl_.non_unique_sentinel_); + } else { + _this->_impl_.non_unique_sentinel_->MergeFrom(*from._impl_.non_unique_sentinel_); + } } if (from._internal_include_nulls() != 0) { - _this->_internal_set_include_nulls(from._internal_include_nulls()); + _this->_impl_.include_nulls_ = from._impl_.include_nulls_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -25349,13 +28705,7 @@ void AggSpec_AggSpecUnique::CopyFrom(const AggSpec_AggSpecUnique& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecUnique::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecUnique::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecUnique::InternalSwap(AggSpec_AggSpecUnique* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -25369,26 +28719,28 @@ void AggSpec_AggSpecUnique::InternalSwap(AggSpec_AggSpecUnique* PROTOBUF_RESTRIC } ::google::protobuf::Metadata AggSpec_AggSpecUnique::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[71]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggSpec_AggSpecNonUniqueSentinel::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_._oneof_case_); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel, _impl_._oneof_case_); }; AggSpec_AggSpecNonUniqueSentinel::AggSpec_AggSpecNonUniqueSentinel(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecNonUniqueSentinel::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -25396,12 +28748,16 @@ inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecNonUniqueSentinel::Impl_::Impl_( AggSpec_AggSpecNonUniqueSentinel::AggSpec_AggSpecNonUniqueSentinel( ::google::protobuf::Arena* arena, const AggSpec_AggSpecNonUniqueSentinel& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecNonUniqueSentinel* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; @@ -25464,7 +28820,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::SharedDtor() { void AggSpec_AggSpecNonUniqueSentinel::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kNullValue: { // No need to clear @@ -25514,24 +28870,34 @@ void AggSpec_AggSpecNonUniqueSentinel::clear_type() { } -PROTOBUF_NOINLINE void AggSpec_AggSpecNonUniqueSentinel::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec_AggSpecNonUniqueSentinel::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecNonUniqueSentinel::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecNonUniqueSentinel_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecNonUniqueSentinel::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecNonUniqueSentinel::ByteSizeLong, + &AggSpec_AggSpecNonUniqueSentinel::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecNonUniqueSentinel::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecNonUniqueSentinel::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 10, 0, 95, 2> AggSpec_AggSpecNonUniqueSentinel::_table_ = { { @@ -25544,8 +28910,12 @@ const ::_pbi::TcParseTable<0, 10, 0, 95, 2> AggSpec_AggSpecNonUniqueSentinel::_t 10, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecNonUniqueSentinel_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -25590,219 +28960,251 @@ const ::_pbi::TcParseTable<0, 10, 0, 95, 2> AggSpec_AggSpecNonUniqueSentinel::_t }}, }; -::uint8_t* AggSpec_AggSpecNonUniqueSentinel::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (type_case()) { - case kNullValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_null_value(), target); - break; - } - case kStringValue: { - const std::string& _s = this->_internal_string_value(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value"); - target = stream->WriteStringMaybeAliased(2, _s, target); - break; - } - case kIntValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 3, this->_internal_int_value(), target); - break; - } - case kLongValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 4, this->_internal_long_value(), target); - break; - } - case kFloatValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray( - 5, this->_internal_float_value(), target); - break; - } - case kDoubleValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 6, this->_internal_double_value(), target); - break; - } - case kBoolValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 7, this->_internal_bool_value(), target); - break; - } - case kByteValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 8, this->_internal_byte_value(), target); - break; - } - case kShortValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 9, this->_internal_short_value(), target); - break; - } - case kCharValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 10, this->_internal_char_value(), target); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - return target; -} - -::size_t AggSpec_AggSpecNonUniqueSentinel::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecNonUniqueSentinel::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.NullValue null_value = 1; - case kNullValue: { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_null_value()); - break; - } - // string string_value = 2; - case kStringValue: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_string_value()); - break; - } - // sint32 int_value = 3; - case kIntValue: { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_int_value()); - break; - } - // sint64 long_value = 4 [jstype = JS_STRING]; - case kLongValue: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_long_value()); - break; - } - // float float_value = 5; - case kFloatValue: { - total_size += 5; - break; - } - // double double_value = 6; - case kDoubleValue: { - total_size += 9; - break; - } - // bool bool_value = 7; - case kBoolValue: { - total_size += 2; - break; - } - // sint32 byte_value = 8; - case kByteValue: { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_byte_value()); - break; - } - // sint32 short_value = 9; - case kShortValue: { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_short_value()); - break; - } - // sint32 char_value = 10; - case kCharValue: { - total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( - this->_internal_char_value()); - break; - } - case TYPE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecNonUniqueSentinel::_class_data_ = { - AggSpec_AggSpecNonUniqueSentinel::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecNonUniqueSentinel::GetClassData() const { - return &_class_data_; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecNonUniqueSentinel::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecNonUniqueSentinel::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecNonUniqueSentinel& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecNonUniqueSentinel::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecNonUniqueSentinel& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.type_case()) { + case kNullValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_null_value(), target); + break; + } + case kStringValue: { + const std::string& _s = this_._internal_string_value(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value"); + target = stream->WriteStringMaybeAliased(2, _s, target); + break; + } + case kIntValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 3, this_._internal_int_value(), target); + break; + } + case kLongValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 4, this_._internal_long_value(), target); + break; + } + case kFloatValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray( + 5, this_._internal_float_value(), target); + break; + } + case kDoubleValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 6, this_._internal_double_value(), target); + break; + } + case kBoolValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 7, this_._internal_bool_value(), target); + break; + } + case kByteValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 8, this_._internal_byte_value(), target); + break; + } + case kShortValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 9, this_._internal_short_value(), target); + break; + } + case kCharValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 10, this_._internal_char_value(), target); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecNonUniqueSentinel::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecNonUniqueSentinel& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecNonUniqueSentinel::ByteSizeLong() const { + const AggSpec_AggSpecNonUniqueSentinel& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.NullValue null_value = 1; + case kNullValue: { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_null_value()); + break; + } + // string string_value = 2; + case kStringValue: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_string_value()); + break; + } + // sint32 int_value = 3; + case kIntValue: { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_int_value()); + break; + } + // sint64 long_value = 4 [jstype = JS_STRING]; + case kLongValue: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_long_value()); + break; + } + // float float_value = 5; + case kFloatValue: { + total_size += 5; + break; + } + // double double_value = 6; + case kDoubleValue: { + total_size += 9; + break; + } + // bool bool_value = 7; + case kBoolValue: { + total_size += 2; + break; + } + // sint32 byte_value = 8; + case kByteValue: { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_byte_value()); + break; + } + // sint32 short_value = 9; + case kShortValue: { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_short_value()); + break; + } + // sint32 char_value = 10; + case kCharValue: { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this_._internal_char_value()); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecNonUniqueSentinel::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.type_case()) { - case kNullValue: { - _this->_internal_set_null_value(from._internal_null_value()); - break; - } - case kStringValue: { - _this->_internal_set_string_value(from._internal_string_value()); - break; - } - case kIntValue: { - _this->_internal_set_int_value(from._internal_int_value()); - break; - } - case kLongValue: { - _this->_internal_set_long_value(from._internal_long_value()); - break; - } - case kFloatValue: { - _this->_internal_set_float_value(from._internal_float_value()); - break; - } - case kDoubleValue: { - _this->_internal_set_double_value(from._internal_double_value()); - break; - } - case kBoolValue: { - _this->_internal_set_bool_value(from._internal_bool_value()); - break; - } - case kByteValue: { - _this->_internal_set_byte_value(from._internal_byte_value()); - break; - } - case kShortValue: { - _this->_internal_set_short_value(from._internal_short_value()); - break; - } - case kCharValue: { - _this->_internal_set_char_value(from._internal_char_value()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case TYPE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kNullValue: { + _this->_impl_.type_.null_value_ = from._impl_.type_.null_value_; + break; + } + case kStringValue: { + if (oneof_needs_init) { + _this->_impl_.type_.string_value_.InitDefault(); + } + _this->_impl_.type_.string_value_.Set(from._internal_string_value(), arena); + break; + } + case kIntValue: { + _this->_impl_.type_.int_value_ = from._impl_.type_.int_value_; + break; + } + case kLongValue: { + _this->_impl_.type_.long_value_ = from._impl_.type_.long_value_; + break; + } + case kFloatValue: { + _this->_impl_.type_.float_value_ = from._impl_.type_.float_value_; + break; + } + case kDoubleValue: { + _this->_impl_.type_.double_value_ = from._impl_.type_.double_value_; + break; + } + case kBoolValue: { + _this->_impl_.type_.bool_value_ = from._impl_.type_.bool_value_; + break; + } + case kByteValue: { + _this->_impl_.type_.byte_value_ = from._impl_.type_.byte_value_; + break; + } + case kShortValue: { + _this->_impl_.type_.short_value_ = from._impl_.type_.short_value_; + break; + } + case kCharValue: { + _this->_impl_.type_.char_value_ = from._impl_.type_.char_value_; + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -25815,13 +29217,7 @@ void AggSpec_AggSpecNonUniqueSentinel::CopyFrom(const AggSpec_AggSpecNonUniqueSe MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecNonUniqueSentinel::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecNonUniqueSentinel::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecNonUniqueSentinel::InternalSwap(AggSpec_AggSpecNonUniqueSentinel* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -25830,9 +29226,7 @@ void AggSpec_AggSpecNonUniqueSentinel::InternalSwap(AggSpec_AggSpecNonUniqueSent } ::google::protobuf::Metadata AggSpec_AggSpecNonUniqueSentinel::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[72]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -25841,25 +29235,33 @@ class AggSpec_AggSpecWeighted::_Internal { }; AggSpec_AggSpecWeighted::AggSpec_AggSpecWeighted(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) } inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecWeighted::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& from_msg) : weight_column_(arena, from.weight_column_), _cached_size_{0} {} AggSpec_AggSpecWeighted::AggSpec_AggSpecWeighted( ::google::protobuf::Arena* arena, const AggSpec_AggSpecWeighted& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecWeighted* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) } @@ -25883,24 +29285,34 @@ inline void AggSpec_AggSpecWeighted::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggSpec_AggSpecWeighted::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.weight_column_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecWeighted::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_AggSpecWeighted_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecWeighted::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec_AggSpecWeighted::ByteSizeLong, + &AggSpec_AggSpecWeighted::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecWeighted, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecWeighted::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecWeighted::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* AggSpec_AggSpecWeighted::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 79, 2> AggSpec_AggSpecWeighted::_table_ = { { @@ -25913,8 +29325,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 79, 2> AggSpec_AggSpecWeighted::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_AggSpec_AggSpecWeighted_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string weight_column = 1; {::_pbi::TcParser::FastUS1, @@ -25934,56 +29350,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 79, 2> AggSpec_AggSpecWeighted::_table_ = { }}, }; -::uint8_t* AggSpec_AggSpecWeighted::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string weight_column = 1; - if (!this->_internal_weight_column().empty()) { - const std::string& _s = this->_internal_weight_column(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - return target; -} - -::size_t AggSpec_AggSpecWeighted::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggSpec_AggSpecWeighted::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string weight_column = 1; - if (!this->_internal_weight_column().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_weight_column()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec_AggSpecWeighted::_class_data_ = { - AggSpec_AggSpecWeighted::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec_AggSpecWeighted::GetClassData() const { - return &_class_data_; + _impl_.weight_column_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggSpec_AggSpecWeighted::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec_AggSpecWeighted::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec_AggSpecWeighted& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec_AggSpecWeighted::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec_AggSpecWeighted& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string weight_column = 1; + if (!this_._internal_weight_column().empty()) { + const std::string& _s = this_._internal_weight_column(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec_AggSpecWeighted::ByteSizeLong(const MessageLite& base) { + const AggSpec_AggSpecWeighted& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec_AggSpecWeighted::ByteSizeLong() const { + const AggSpec_AggSpecWeighted& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string weight_column = 1; + if (!this_._internal_weight_column().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_weight_column()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec_AggSpecWeighted::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) @@ -26004,13 +29439,7 @@ void AggSpec_AggSpecWeighted::CopyFrom(const AggSpec_AggSpecWeighted& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec_AggSpecWeighted::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec_AggSpecWeighted::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec_AggSpecWeighted::InternalSwap(AggSpec_AggSpecWeighted* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -26020,9 +29449,7 @@ void AggSpec_AggSpecWeighted::InternalSwap(AggSpec_AggSpecWeighted* PROTOBUF_RES } ::google::protobuf::Metadata AggSpec_AggSpecWeighted::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[73]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26031,13 +29458,21 @@ class AggSpec_AggSpecAbsSum::_Internal { }; AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum) } AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum( ::google::protobuf::Arena* arena, const AggSpec_AggSpecAbsSum& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecAbsSum* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26046,6 +29481,61 @@ AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecAbsSum::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecAbsSum_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecAbsSum::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecAbsSum::ByteSizeLong, + &AggSpec_AggSpecAbsSum::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecAbsSum, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecAbsSum::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecAbsSum::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecAbsSum::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26055,9 +29545,7 @@ AggSpec_AggSpecAbsSum::AggSpec_AggSpecAbsSum( ::google::protobuf::Metadata AggSpec_AggSpecAbsSum::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[74]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26066,13 +29554,21 @@ class AggSpec_AggSpecAvg::_Internal { }; AggSpec_AggSpecAvg::AggSpec_AggSpecAvg(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg) } AggSpec_AggSpecAvg::AggSpec_AggSpecAvg( ::google::protobuf::Arena* arena, const AggSpec_AggSpecAvg& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecAvg* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26081,6 +29577,61 @@ AggSpec_AggSpecAvg::AggSpec_AggSpecAvg( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecAvg::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecAvg_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecAvg::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecAvg::ByteSizeLong, + &AggSpec_AggSpecAvg::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecAvg, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecAvg::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecAvg::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecAvg::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26090,9 +29641,7 @@ AggSpec_AggSpecAvg::AggSpec_AggSpecAvg( ::google::protobuf::Metadata AggSpec_AggSpecAvg::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[75]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26101,13 +29650,21 @@ class AggSpec_AggSpecFirst::_Internal { }; AggSpec_AggSpecFirst::AggSpec_AggSpecFirst(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst) } AggSpec_AggSpecFirst::AggSpec_AggSpecFirst( ::google::protobuf::Arena* arena, const AggSpec_AggSpecFirst& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecFirst* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26116,6 +29673,61 @@ AggSpec_AggSpecFirst::AggSpec_AggSpecFirst( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecFirst::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecFirst_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecFirst::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecFirst::ByteSizeLong, + &AggSpec_AggSpecFirst::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFirst, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecFirst::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecFirst::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecFirst::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26125,9 +29737,7 @@ AggSpec_AggSpecFirst::AggSpec_AggSpecFirst( ::google::protobuf::Metadata AggSpec_AggSpecFirst::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[76]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26136,13 +29746,21 @@ class AggSpec_AggSpecFreeze::_Internal { }; AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze) } AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze( ::google::protobuf::Arena* arena, const AggSpec_AggSpecFreeze& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecFreeze* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26151,6 +29769,61 @@ AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecFreeze::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecFreeze_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecFreeze::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecFreeze::ByteSizeLong, + &AggSpec_AggSpecFreeze::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFreeze, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecFreeze::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecFreeze::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecFreeze::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26160,9 +29833,7 @@ AggSpec_AggSpecFreeze::AggSpec_AggSpecFreeze( ::google::protobuf::Metadata AggSpec_AggSpecFreeze::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[77]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26171,13 +29842,21 @@ class AggSpec_AggSpecGroup::_Internal { }; AggSpec_AggSpecGroup::AggSpec_AggSpecGroup(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) } AggSpec_AggSpecGroup::AggSpec_AggSpecGroup( ::google::protobuf::Arena* arena, const AggSpec_AggSpecGroup& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecGroup* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26186,33 +29865,94 @@ AggSpec_AggSpecGroup::AggSpec_AggSpecGroup( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) } - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecGroup::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[78]); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecGroup::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecGroup_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecGroup::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecGroup::ByteSizeLong, + &AggSpec_AggSpecGroup::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecGroup, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecGroup::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecGroup::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } -// =================================================================== - -class AggSpec_AggSpecLast::_Internal { - public: +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecGroup::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; + + + + + + + + +::google::protobuf::Metadata AggSpec_AggSpecGroup::GetMetadata() const { + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class AggSpec_AggSpecLast::_Internal { + public: }; AggSpec_AggSpecLast::AggSpec_AggSpecLast(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast) } AggSpec_AggSpecLast::AggSpec_AggSpecLast( ::google::protobuf::Arena* arena, const AggSpec_AggSpecLast& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecLast* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26221,6 +29961,61 @@ AggSpec_AggSpecLast::AggSpec_AggSpecLast( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecLast::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecLast_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecLast::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecLast::ByteSizeLong, + &AggSpec_AggSpecLast::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecLast, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecLast::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecLast::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecLast::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26230,9 +30025,7 @@ AggSpec_AggSpecLast::AggSpec_AggSpecLast( ::google::protobuf::Metadata AggSpec_AggSpecLast::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[79]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26241,13 +30034,21 @@ class AggSpec_AggSpecMax::_Internal { }; AggSpec_AggSpecMax::AggSpec_AggSpecMax(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax) } AggSpec_AggSpecMax::AggSpec_AggSpecMax( ::google::protobuf::Arena* arena, const AggSpec_AggSpecMax& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecMax* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26256,6 +30057,61 @@ AggSpec_AggSpecMax::AggSpec_AggSpecMax( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecMax::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecMax_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecMax::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecMax::ByteSizeLong, + &AggSpec_AggSpecMax::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecMax, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecMax::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecMax::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecMax::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26265,9 +30121,7 @@ AggSpec_AggSpecMax::AggSpec_AggSpecMax( ::google::protobuf::Metadata AggSpec_AggSpecMax::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[80]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26276,13 +30130,21 @@ class AggSpec_AggSpecMin::_Internal { }; AggSpec_AggSpecMin::AggSpec_AggSpecMin(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin) } AggSpec_AggSpecMin::AggSpec_AggSpecMin( ::google::protobuf::Arena* arena, const AggSpec_AggSpecMin& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecMin* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26291,6 +30153,61 @@ AggSpec_AggSpecMin::AggSpec_AggSpecMin( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecMin::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecMin_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecMin::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecMin::ByteSizeLong, + &AggSpec_AggSpecMin::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecMin, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecMin::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecMin::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecMin::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26300,9 +30217,7 @@ AggSpec_AggSpecMin::AggSpec_AggSpecMin( ::google::protobuf::Metadata AggSpec_AggSpecMin::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[81]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26311,13 +30226,21 @@ class AggSpec_AggSpecStd::_Internal { }; AggSpec_AggSpecStd::AggSpec_AggSpecStd(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd) } AggSpec_AggSpecStd::AggSpec_AggSpecStd( ::google::protobuf::Arena* arena, const AggSpec_AggSpecStd& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecStd* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26326,6 +30249,61 @@ AggSpec_AggSpecStd::AggSpec_AggSpecStd( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecStd::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecStd_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecStd::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecStd::ByteSizeLong, + &AggSpec_AggSpecStd::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecStd, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecStd::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecStd::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecStd::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26335,9 +30313,7 @@ AggSpec_AggSpecStd::AggSpec_AggSpecStd( ::google::protobuf::Metadata AggSpec_AggSpecStd::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[82]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26346,13 +30322,21 @@ class AggSpec_AggSpecSum::_Internal { }; AggSpec_AggSpecSum::AggSpec_AggSpecSum(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum) } AggSpec_AggSpecSum::AggSpec_AggSpecSum( ::google::protobuf::Arena* arena, const AggSpec_AggSpecSum& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecSum* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26361,6 +30345,61 @@ AggSpec_AggSpecSum::AggSpec_AggSpecSum( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecSum::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecSum_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecSum::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecSum::ByteSizeLong, + &AggSpec_AggSpecSum::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSum, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecSum::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecSum::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecSum::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26370,9 +30409,7 @@ AggSpec_AggSpecSum::AggSpec_AggSpecSum( ::google::protobuf::Metadata AggSpec_AggSpecSum::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[83]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -26381,13 +30418,21 @@ class AggSpec_AggSpecVar::_Internal { }; AggSpec_AggSpecVar::AggSpec_AggSpecVar(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar) } AggSpec_AggSpecVar::AggSpec_AggSpecVar( ::google::protobuf::Arena* arena, const AggSpec_AggSpecVar& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec_AggSpecVar* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -26396,6 +30441,61 @@ AggSpec_AggSpecVar::AggSpec_AggSpecVar( // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec_AggSpecVar::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_AggSpec_AggSpecVar_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec_AggSpecVar::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &AggSpec_AggSpecVar::ByteSizeLong, + &AggSpec_AggSpecVar::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecVar, _impl_._cached_size_), + false, + }, + &AggSpec_AggSpecVar::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec_AggSpecVar::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> AggSpec_AggSpecVar::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -26405,110 +30505,16 @@ AggSpec_AggSpecVar::AggSpec_AggSpecVar( ::google::protobuf::Metadata AggSpec_AggSpecVar::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[84]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggSpec::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& abs_sum(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& approximate_percentile(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& avg(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& count_distinct(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& distinct(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& first(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& formula(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& freeze(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& group(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& last(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& max(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& median(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& min(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& percentile(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& sorted_first(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& sorted_last(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& std(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& sum(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& t_digest(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& unique(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& weighted_avg(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& weighted_sum(const AggSpec* msg); - static const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& var(const AggSpec* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::AggSpec, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& AggSpec::_Internal::abs_sum(const AggSpec* msg) { - return *msg->_impl_.type_.abs_sum_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& AggSpec::_Internal::approximate_percentile(const AggSpec* msg) { - return *msg->_impl_.type_.approximate_percentile_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& AggSpec::_Internal::avg(const AggSpec* msg) { - return *msg->_impl_.type_.avg_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& AggSpec::_Internal::count_distinct(const AggSpec* msg) { - return *msg->_impl_.type_.count_distinct_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& AggSpec::_Internal::distinct(const AggSpec* msg) { - return *msg->_impl_.type_.distinct_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& AggSpec::_Internal::first(const AggSpec* msg) { - return *msg->_impl_.type_.first_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& AggSpec::_Internal::formula(const AggSpec* msg) { - return *msg->_impl_.type_.formula_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& AggSpec::_Internal::freeze(const AggSpec* msg) { - return *msg->_impl_.type_.freeze_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& AggSpec::_Internal::group(const AggSpec* msg) { - return *msg->_impl_.type_.group_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& AggSpec::_Internal::last(const AggSpec* msg) { - return *msg->_impl_.type_.last_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& AggSpec::_Internal::max(const AggSpec* msg) { - return *msg->_impl_.type_.max_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& AggSpec::_Internal::median(const AggSpec* msg) { - return *msg->_impl_.type_.median_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& AggSpec::_Internal::min(const AggSpec* msg) { - return *msg->_impl_.type_.min_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& AggSpec::_Internal::percentile(const AggSpec* msg) { - return *msg->_impl_.type_.percentile_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::_Internal::sorted_first(const AggSpec* msg) { - return *msg->_impl_.type_.sorted_first_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::_Internal::sorted_last(const AggSpec* msg) { - return *msg->_impl_.type_.sorted_last_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& AggSpec::_Internal::std(const AggSpec* msg) { - return *msg->_impl_.type_.std_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& AggSpec::_Internal::sum(const AggSpec* msg) { - return *msg->_impl_.type_.sum_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& AggSpec::_Internal::t_digest(const AggSpec* msg) { - return *msg->_impl_.type_.t_digest_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& AggSpec::_Internal::unique(const AggSpec* msg) { - return *msg->_impl_.type_.unique_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::_Internal::weighted_avg(const AggSpec* msg) { - return *msg->_impl_.type_.weighted_avg_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::_Internal::weighted_sum(const AggSpec* msg) { - return *msg->_impl_.type_.weighted_sum_; -} -const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& AggSpec::_Internal::var(const AggSpec* msg) { - return *msg->_impl_.type_.var_; -} void AggSpec::set_allocated_abs_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* abs_sum) { ::google::protobuf::Arena* message_arena = GetArena(); clear_type(); @@ -26809,13 +30815,17 @@ void AggSpec::set_allocated_var(::io::deephaven::proto::backplane::grpc::AggSpec // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.var) } AggSpec::AggSpec(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggSpec) } inline PROTOBUF_NDEBUG_INLINE AggSpec::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggSpec& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -26823,83 +30833,87 @@ inline PROTOBUF_NDEBUG_INLINE AggSpec::Impl_::Impl_( AggSpec::AggSpec( ::google::protobuf::Arena* arena, const AggSpec& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggSpec* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; case kAbsSum: - _impl_.type_.abs_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(arena, *from._impl_.type_.abs_sum_); + _impl_.type_.abs_sum_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(arena, *from._impl_.type_.abs_sum_); break; case kApproximatePercentile: - _impl_.type_.approximate_percentile_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(arena, *from._impl_.type_.approximate_percentile_); + _impl_.type_.approximate_percentile_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(arena, *from._impl_.type_.approximate_percentile_); break; case kAvg: - _impl_.type_.avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(arena, *from._impl_.type_.avg_); + _impl_.type_.avg_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(arena, *from._impl_.type_.avg_); break; case kCountDistinct: - _impl_.type_.count_distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(arena, *from._impl_.type_.count_distinct_); + _impl_.type_.count_distinct_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(arena, *from._impl_.type_.count_distinct_); break; case kDistinct: - _impl_.type_.distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(arena, *from._impl_.type_.distinct_); + _impl_.type_.distinct_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(arena, *from._impl_.type_.distinct_); break; case kFirst: - _impl_.type_.first_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(arena, *from._impl_.type_.first_); + _impl_.type_.first_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(arena, *from._impl_.type_.first_); break; case kFormula: - _impl_.type_.formula_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(arena, *from._impl_.type_.formula_); + _impl_.type_.formula_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(arena, *from._impl_.type_.formula_); break; case kFreeze: - _impl_.type_.freeze_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(arena, *from._impl_.type_.freeze_); + _impl_.type_.freeze_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(arena, *from._impl_.type_.freeze_); break; case kGroup: - _impl_.type_.group_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(arena, *from._impl_.type_.group_); + _impl_.type_.group_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(arena, *from._impl_.type_.group_); break; case kLast: - _impl_.type_.last_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(arena, *from._impl_.type_.last_); + _impl_.type_.last_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(arena, *from._impl_.type_.last_); break; case kMax: - _impl_.type_.max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(arena, *from._impl_.type_.max_); + _impl_.type_.max_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(arena, *from._impl_.type_.max_); break; case kMedian: - _impl_.type_.median_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(arena, *from._impl_.type_.median_); + _impl_.type_.median_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(arena, *from._impl_.type_.median_); break; case kMin: - _impl_.type_.min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(arena, *from._impl_.type_.min_); + _impl_.type_.min_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(arena, *from._impl_.type_.min_); break; case kPercentile: - _impl_.type_.percentile_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(arena, *from._impl_.type_.percentile_); + _impl_.type_.percentile_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(arena, *from._impl_.type_.percentile_); break; case kSortedFirst: - _impl_.type_.sorted_first_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_first_); + _impl_.type_.sorted_first_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_first_); break; case kSortedLast: - _impl_.type_.sorted_last_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_last_); + _impl_.type_.sorted_last_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_last_); break; case kStd: - _impl_.type_.std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(arena, *from._impl_.type_.std_); + _impl_.type_.std_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(arena, *from._impl_.type_.std_); break; case kSum: - _impl_.type_.sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(arena, *from._impl_.type_.sum_); + _impl_.type_.sum_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(arena, *from._impl_.type_.sum_); break; case kTDigest: - _impl_.type_.t_digest_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(arena, *from._impl_.type_.t_digest_); + _impl_.type_.t_digest_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(arena, *from._impl_.type_.t_digest_); break; case kUnique: - _impl_.type_.unique_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(arena, *from._impl_.type_.unique_); + _impl_.type_.unique_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(arena, *from._impl_.type_.unique_); break; case kWeightedAvg: - _impl_.type_.weighted_avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_avg_); + _impl_.type_.weighted_avg_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_avg_); break; case kWeightedSum: - _impl_.type_.weighted_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_sum_); + _impl_.type_.weighted_sum_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_sum_); break; case kVar: - _impl_.type_.var_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(arena, *from._impl_.type_.var_); + _impl_.type_.var_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(arena, *from._impl_.type_.var_); break; } @@ -26930,143 +30944,189 @@ inline void AggSpec::SharedDtor() { void AggSpec::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.AggSpec) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kAbsSum: { if (GetArena() == nullptr) { delete _impl_.type_.abs_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.abs_sum_); } break; } case kApproximatePercentile: { if (GetArena() == nullptr) { delete _impl_.type_.approximate_percentile_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.approximate_percentile_); } break; } case kAvg: { if (GetArena() == nullptr) { delete _impl_.type_.avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.avg_); } break; } case kCountDistinct: { if (GetArena() == nullptr) { delete _impl_.type_.count_distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.count_distinct_); } break; } case kDistinct: { if (GetArena() == nullptr) { delete _impl_.type_.distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.distinct_); } break; } case kFirst: { if (GetArena() == nullptr) { delete _impl_.type_.first_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.first_); } break; } case kFormula: { if (GetArena() == nullptr) { delete _impl_.type_.formula_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.formula_); } break; } case kFreeze: { if (GetArena() == nullptr) { delete _impl_.type_.freeze_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.freeze_); } break; } case kGroup: { if (GetArena() == nullptr) { delete _impl_.type_.group_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.group_); } break; } case kLast: { if (GetArena() == nullptr) { delete _impl_.type_.last_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.last_); } break; } case kMax: { if (GetArena() == nullptr) { delete _impl_.type_.max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.max_); } break; } case kMedian: { if (GetArena() == nullptr) { delete _impl_.type_.median_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.median_); } break; } case kMin: { if (GetArena() == nullptr) { delete _impl_.type_.min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.min_); } break; } case kPercentile: { if (GetArena() == nullptr) { delete _impl_.type_.percentile_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.percentile_); } break; } case kSortedFirst: { if (GetArena() == nullptr) { delete _impl_.type_.sorted_first_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sorted_first_); } break; } case kSortedLast: { if (GetArena() == nullptr) { delete _impl_.type_.sorted_last_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sorted_last_); } break; } case kStd: { if (GetArena() == nullptr) { delete _impl_.type_.std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.std_); } break; } case kSum: { if (GetArena() == nullptr) { delete _impl_.type_.sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sum_); } break; } case kTDigest: { if (GetArena() == nullptr) { delete _impl_.type_.t_digest_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.t_digest_); } break; } case kUnique: { if (GetArena() == nullptr) { delete _impl_.type_.unique_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.unique_); } break; } case kWeightedAvg: { if (GetArena() == nullptr) { delete _impl_.type_.weighted_avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.weighted_avg_); } break; } case kWeightedSum: { if (GetArena() == nullptr) { delete _impl_.type_.weighted_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.weighted_sum_); } break; } case kVar: { if (GetArena() == nullptr) { delete _impl_.type_.var_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.var_); } break; } @@ -27078,24 +31138,34 @@ void AggSpec::clear_type() { } -PROTOBUF_NOINLINE void AggSpec::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggSpec::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggSpec::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggSpec_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggSpec::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggSpec::ByteSizeLong, + &AggSpec::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggSpec, _impl_._cached_size_), + false, + }, + &AggSpec::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggSpec::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { { @@ -27108,8 +31178,12 @@ const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { 23, // num_field_entries 23, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AggSpec_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -27117,13 +31191,13 @@ const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { }}, {{ // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum abs_sum = 1; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.abs_sum_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile approximate_percentile = 2; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.approximate_percentile_), _Internal::kOneofCaseOffset + 0, 1, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg avg = 3; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.avg_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct count_distinct = 4; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.count_distinct_), _Internal::kOneofCaseOffset + 0, 3, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, @@ -27132,28 +31206,28 @@ const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst first = 6; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.first_), _Internal::kOneofCaseOffset + 0, 5, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula formula = 7; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.formula_), _Internal::kOneofCaseOffset + 0, 6, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze freeze = 8; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.freeze_), _Internal::kOneofCaseOffset + 0, 7, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup group = 9; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.group_), _Internal::kOneofCaseOffset + 0, 8, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast last = 10; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.last_), _Internal::kOneofCaseOffset + 0, 9, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax max = 11; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.max_), _Internal::kOneofCaseOffset + 0, 10, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian median = 12; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.median_), _Internal::kOneofCaseOffset + 0, 11, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin min = 13; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.min_), _Internal::kOneofCaseOffset + 0, 12, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile percentile = 14; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.percentile_), _Internal::kOneofCaseOffset + 0, 13, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, @@ -27165,10 +31239,10 @@ const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd std = 17; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.std_), _Internal::kOneofCaseOffset + 0, 16, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum sum = 18; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.sum_), _Internal::kOneofCaseOffset + 0, 17, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest t_digest = 19; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.t_digest_), _Internal::kOneofCaseOffset + 0, 18, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, @@ -27183,481 +31257,602 @@ const ::_pbi::TcParseTable<0, 23, 23, 0, 2> AggSpec::_table_ = { (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar var = 23; {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.var_), _Internal::kOneofCaseOffset + 0, 22, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, }}, {{ - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAbsSum_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAvg_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFirst_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFreeze_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecGroup_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecLast_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMax_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMin_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecStd_default_instance_}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSum_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecVar_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>()}, }}, {{ }}, }; -::uint8_t* AggSpec::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec) +PROTOBUF_NOINLINE void AggSpec::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggSpec) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - switch (type_case()) { - case kAbsSum: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::abs_sum(this), - _Internal::abs_sum(this).GetCachedSize(), target, stream); - break; - } - case kApproximatePercentile: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::approximate_percentile(this), - _Internal::approximate_percentile(this).GetCachedSize(), target, stream); - break; - } - case kAvg: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::avg(this), - _Internal::avg(this).GetCachedSize(), target, stream); - break; - } - case kCountDistinct: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::count_distinct(this), - _Internal::count_distinct(this).GetCachedSize(), target, stream); - break; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggSpec::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggSpec& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggSpec::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggSpec& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggSpec) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.type_case()) { + case kAbsSum: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.type_.abs_sum_, this_._impl_.type_.abs_sum_->GetCachedSize(), target, + stream); + break; + } + case kApproximatePercentile: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.type_.approximate_percentile_, this_._impl_.type_.approximate_percentile_->GetCachedSize(), target, + stream); + break; + } + case kAvg: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.type_.avg_, this_._impl_.type_.avg_->GetCachedSize(), target, + stream); + break; + } + case kCountDistinct: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.type_.count_distinct_, this_._impl_.type_.count_distinct_->GetCachedSize(), target, + stream); + break; + } + case kDistinct: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.type_.distinct_, this_._impl_.type_.distinct_->GetCachedSize(), target, + stream); + break; + } + case kFirst: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.type_.first_, this_._impl_.type_.first_->GetCachedSize(), target, + stream); + break; + } + case kFormula: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.type_.formula_, this_._impl_.type_.formula_->GetCachedSize(), target, + stream); + break; + } + case kFreeze: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.type_.freeze_, this_._impl_.type_.freeze_->GetCachedSize(), target, + stream); + break; + } + case kGroup: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.type_.group_, this_._impl_.type_.group_->GetCachedSize(), target, + stream); + break; + } + case kLast: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, *this_._impl_.type_.last_, this_._impl_.type_.last_->GetCachedSize(), target, + stream); + break; + } + case kMax: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 11, *this_._impl_.type_.max_, this_._impl_.type_.max_->GetCachedSize(), target, + stream); + break; + } + case kMedian: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 12, *this_._impl_.type_.median_, this_._impl_.type_.median_->GetCachedSize(), target, + stream); + break; + } + case kMin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 13, *this_._impl_.type_.min_, this_._impl_.type_.min_->GetCachedSize(), target, + stream); + break; + } + case kPercentile: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 14, *this_._impl_.type_.percentile_, this_._impl_.type_.percentile_->GetCachedSize(), target, + stream); + break; + } + case kSortedFirst: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 15, *this_._impl_.type_.sorted_first_, this_._impl_.type_.sorted_first_->GetCachedSize(), target, + stream); + break; + } + case kSortedLast: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 16, *this_._impl_.type_.sorted_last_, this_._impl_.type_.sorted_last_->GetCachedSize(), target, + stream); + break; + } + case kStd: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 17, *this_._impl_.type_.std_, this_._impl_.type_.std_->GetCachedSize(), target, + stream); + break; + } + case kSum: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 18, *this_._impl_.type_.sum_, this_._impl_.type_.sum_->GetCachedSize(), target, + stream); + break; + } + case kTDigest: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 19, *this_._impl_.type_.t_digest_, this_._impl_.type_.t_digest_->GetCachedSize(), target, + stream); + break; + } + case kUnique: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 20, *this_._impl_.type_.unique_, this_._impl_.type_.unique_->GetCachedSize(), target, + stream); + break; + } + case kWeightedAvg: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 21, *this_._impl_.type_.weighted_avg_, this_._impl_.type_.weighted_avg_->GetCachedSize(), target, + stream); + break; + } + case kWeightedSum: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 22, *this_._impl_.type_.weighted_sum_, this_._impl_.type_.weighted_sum_->GetCachedSize(), target, + stream); + break; + } + case kVar: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 23, *this_._impl_.type_.var_, this_._impl_.type_.var_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggSpec::ByteSizeLong(const MessageLite& base) { + const AggSpec& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggSpec::ByteSizeLong() const { + const AggSpec& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum abs_sum = 1; + case kAbsSum: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.abs_sum_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile approximate_percentile = 2; + case kApproximatePercentile: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.approximate_percentile_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg avg = 3; + case kAvg: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.avg_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct count_distinct = 4; + case kCountDistinct: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.count_distinct_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct distinct = 5; + case kDistinct: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.distinct_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst first = 6; + case kFirst: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.first_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula formula = 7; + case kFormula: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.formula_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze freeze = 8; + case kFreeze: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.freeze_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup group = 9; + case kGroup: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.group_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast last = 10; + case kLast: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.last_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax max = 11; + case kMax: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.max_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian median = 12; + case kMedian: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.median_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin min = 13; + case kMin: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.min_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile percentile = 14; + case kPercentile: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.percentile_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_first = 15; + case kSortedFirst: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.sorted_first_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_last = 16; + case kSortedLast: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.sorted_last_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd std = 17; + case kStd: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.std_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum sum = 18; + case kSum: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.sum_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest t_digest = 19; + case kTDigest: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.t_digest_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique unique = 20; + case kUnique: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.unique_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_avg = 21; + case kWeightedAvg: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.weighted_avg_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_sum = 22; + case kWeightedSum: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.weighted_sum_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar var = 23; + case kVar: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.var_); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggSpec::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); + // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case kDistinct: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::distinct(this), - _Internal::distinct(this).GetCachedSize(), target, stream); - break; - } - case kFirst: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::first(this), - _Internal::first(this).GetCachedSize(), target, stream); - break; - } - case kFormula: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::formula(this), - _Internal::formula(this).GetCachedSize(), target, stream); - break; - } - case kFreeze: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::freeze(this), - _Internal::freeze(this).GetCachedSize(), target, stream); - break; - } - case kGroup: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::group(this), - _Internal::group(this).GetCachedSize(), target, stream); - break; - } - case kLast: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 10, _Internal::last(this), - _Internal::last(this).GetCachedSize(), target, stream); - break; - } - case kMax: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 11, _Internal::max(this), - _Internal::max(this).GetCachedSize(), target, stream); - break; - } - case kMedian: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 12, _Internal::median(this), - _Internal::median(this).GetCachedSize(), target, stream); - break; - } - case kMin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 13, _Internal::min(this), - _Internal::min(this).GetCachedSize(), target, stream); - break; - } - case kPercentile: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 14, _Internal::percentile(this), - _Internal::percentile(this).GetCachedSize(), target, stream); - break; - } - case kSortedFirst: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 15, _Internal::sorted_first(this), - _Internal::sorted_first(this).GetCachedSize(), target, stream); - break; - } - case kSortedLast: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 16, _Internal::sorted_last(this), - _Internal::sorted_last(this).GetCachedSize(), target, stream); - break; - } - case kStd: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 17, _Internal::std(this), - _Internal::std(this).GetCachedSize(), target, stream); - break; - } - case kSum: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 18, _Internal::sum(this), - _Internal::sum(this).GetCachedSize(), target, stream); - break; - } - case kTDigest: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 19, _Internal::t_digest(this), - _Internal::t_digest(this).GetCachedSize(), target, stream); - break; - } - case kUnique: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 20, _Internal::unique(this), - _Internal::unique(this).GetCachedSize(), target, stream); - break; - } - case kWeightedAvg: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 21, _Internal::weighted_avg(this), - _Internal::weighted_avg(this).GetCachedSize(), target, stream); - break; - } - case kWeightedSum: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 22, _Internal::weighted_sum(this), - _Internal::weighted_sum(this).GetCachedSize(), target, stream); - break; - } - case kVar: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 23, _Internal::var(this), - _Internal::var(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggSpec) - return target; -} - -::size_t AggSpec::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggSpec) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum abs_sum = 1; - case kAbsSum: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.abs_sum_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile approximate_percentile = 2; - case kApproximatePercentile: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.approximate_percentile_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg avg = 3; - case kAvg: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.avg_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct count_distinct = 4; - case kCountDistinct: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.count_distinct_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct distinct = 5; - case kDistinct: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.distinct_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst first = 6; - case kFirst: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.first_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula formula = 7; - case kFormula: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.formula_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze freeze = 8; - case kFreeze: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.freeze_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup group = 9; - case kGroup: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.group_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast last = 10; - case kLast: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.last_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax max = 11; - case kMax: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.max_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian median = 12; - case kMedian: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.median_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin min = 13; - case kMin: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.min_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile percentile = 14; - case kPercentile: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.percentile_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_first = 15; - case kSortedFirst: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.sorted_first_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_last = 16; - case kSortedLast: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.sorted_last_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd std = 17; - case kStd: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.std_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum sum = 18; - case kSum: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.sum_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest t_digest = 19; - case kTDigest: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.t_digest_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique unique = 20; - case kUnique: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.unique_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_avg = 21; - case kWeightedAvg: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.weighted_avg_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_sum = 22; - case kWeightedSum: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.weighted_sum_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar var = 23; - case kVar: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.var_); - break; - } - case TYPE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggSpec::_class_data_ = { - AggSpec::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggSpec::GetClassData() const { - return &_class_data_; -} - -void AggSpec::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggSpec) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - switch (from.type_case()) { - case kAbsSum: { - _this->_internal_mutable_abs_sum()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum::MergeFrom( - from._internal_abs_sum()); - break; - } - case kApproximatePercentile: { - _this->_internal_mutable_approximate_percentile()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile::MergeFrom( - from._internal_approximate_percentile()); - break; - } - case kAvg: { - _this->_internal_mutable_avg()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg::MergeFrom( - from._internal_avg()); - break; - } - case kCountDistinct: { - _this->_internal_mutable_count_distinct()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct::MergeFrom( - from._internal_count_distinct()); - break; - } - case kDistinct: { - _this->_internal_mutable_distinct()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct::MergeFrom( - from._internal_distinct()); - break; - } - case kFirst: { - _this->_internal_mutable_first()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst::MergeFrom( - from._internal_first()); - break; - } - case kFormula: { - _this->_internal_mutable_formula()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula::MergeFrom( - from._internal_formula()); - break; - } - case kFreeze: { - _this->_internal_mutable_freeze()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze::MergeFrom( - from._internal_freeze()); - break; - } - case kGroup: { - _this->_internal_mutable_group()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup::MergeFrom( - from._internal_group()); - break; - } - case kLast: { - _this->_internal_mutable_last()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast::MergeFrom( - from._internal_last()); - break; - } - case kMax: { - _this->_internal_mutable_max()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax::MergeFrom( - from._internal_max()); - break; - } - case kMedian: { - _this->_internal_mutable_median()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian::MergeFrom( - from._internal_median()); - break; - } - case kMin: { - _this->_internal_mutable_min()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin::MergeFrom( - from._internal_min()); - break; - } - case kPercentile: { - _this->_internal_mutable_percentile()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile::MergeFrom( - from._internal_percentile()); - break; - } - case kSortedFirst: { - _this->_internal_mutable_sorted_first()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted::MergeFrom( - from._internal_sorted_first()); - break; - } - case kSortedLast: { - _this->_internal_mutable_sorted_last()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted::MergeFrom( - from._internal_sorted_last()); - break; - } - case kStd: { - _this->_internal_mutable_std()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd::MergeFrom( - from._internal_std()); - break; - } - case kSum: { - _this->_internal_mutable_sum()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum::MergeFrom( - from._internal_sum()); - break; - } - case kTDigest: { - _this->_internal_mutable_t_digest()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest::MergeFrom( - from._internal_t_digest()); - break; - } - case kUnique: { - _this->_internal_mutable_unique()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique::MergeFrom( - from._internal_unique()); - break; - } - case kWeightedAvg: { - _this->_internal_mutable_weighted_avg()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted::MergeFrom( - from._internal_weighted_avg()); - break; - } - case kWeightedSum: { - _this->_internal_mutable_weighted_sum()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted::MergeFrom( - from._internal_weighted_sum()); - break; - } - case kVar: { - _this->_internal_mutable_var()->::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar::MergeFrom( - from._internal_var()); - break; - } - case TYPE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kAbsSum: { + if (oneof_needs_init) { + _this->_impl_.type_.abs_sum_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(arena, *from._impl_.type_.abs_sum_); + } else { + _this->_impl_.type_.abs_sum_->MergeFrom(from._internal_abs_sum()); + } + break; + } + case kApproximatePercentile: { + if (oneof_needs_init) { + _this->_impl_.type_.approximate_percentile_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(arena, *from._impl_.type_.approximate_percentile_); + } else { + _this->_impl_.type_.approximate_percentile_->MergeFrom(from._internal_approximate_percentile()); + } + break; + } + case kAvg: { + if (oneof_needs_init) { + _this->_impl_.type_.avg_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(arena, *from._impl_.type_.avg_); + } else { + _this->_impl_.type_.avg_->MergeFrom(from._internal_avg()); + } + break; + } + case kCountDistinct: { + if (oneof_needs_init) { + _this->_impl_.type_.count_distinct_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(arena, *from._impl_.type_.count_distinct_); + } else { + _this->_impl_.type_.count_distinct_->MergeFrom(from._internal_count_distinct()); + } + break; + } + case kDistinct: { + if (oneof_needs_init) { + _this->_impl_.type_.distinct_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(arena, *from._impl_.type_.distinct_); + } else { + _this->_impl_.type_.distinct_->MergeFrom(from._internal_distinct()); + } + break; + } + case kFirst: { + if (oneof_needs_init) { + _this->_impl_.type_.first_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(arena, *from._impl_.type_.first_); + } else { + _this->_impl_.type_.first_->MergeFrom(from._internal_first()); + } + break; + } + case kFormula: { + if (oneof_needs_init) { + _this->_impl_.type_.formula_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(arena, *from._impl_.type_.formula_); + } else { + _this->_impl_.type_.formula_->MergeFrom(from._internal_formula()); + } + break; + } + case kFreeze: { + if (oneof_needs_init) { + _this->_impl_.type_.freeze_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(arena, *from._impl_.type_.freeze_); + } else { + _this->_impl_.type_.freeze_->MergeFrom(from._internal_freeze()); + } + break; + } + case kGroup: { + if (oneof_needs_init) { + _this->_impl_.type_.group_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(arena, *from._impl_.type_.group_); + } else { + _this->_impl_.type_.group_->MergeFrom(from._internal_group()); + } + break; + } + case kLast: { + if (oneof_needs_init) { + _this->_impl_.type_.last_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(arena, *from._impl_.type_.last_); + } else { + _this->_impl_.type_.last_->MergeFrom(from._internal_last()); + } + break; + } + case kMax: { + if (oneof_needs_init) { + _this->_impl_.type_.max_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(arena, *from._impl_.type_.max_); + } else { + _this->_impl_.type_.max_->MergeFrom(from._internal_max()); + } + break; + } + case kMedian: { + if (oneof_needs_init) { + _this->_impl_.type_.median_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(arena, *from._impl_.type_.median_); + } else { + _this->_impl_.type_.median_->MergeFrom(from._internal_median()); + } + break; + } + case kMin: { + if (oneof_needs_init) { + _this->_impl_.type_.min_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(arena, *from._impl_.type_.min_); + } else { + _this->_impl_.type_.min_->MergeFrom(from._internal_min()); + } + break; + } + case kPercentile: { + if (oneof_needs_init) { + _this->_impl_.type_.percentile_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(arena, *from._impl_.type_.percentile_); + } else { + _this->_impl_.type_.percentile_->MergeFrom(from._internal_percentile()); + } + break; + } + case kSortedFirst: { + if (oneof_needs_init) { + _this->_impl_.type_.sorted_first_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_first_); + } else { + _this->_impl_.type_.sorted_first_->MergeFrom(from._internal_sorted_first()); + } + break; + } + case kSortedLast: { + if (oneof_needs_init) { + _this->_impl_.type_.sorted_last_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_last_); + } else { + _this->_impl_.type_.sorted_last_->MergeFrom(from._internal_sorted_last()); + } + break; + } + case kStd: { + if (oneof_needs_init) { + _this->_impl_.type_.std_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(arena, *from._impl_.type_.std_); + } else { + _this->_impl_.type_.std_->MergeFrom(from._internal_std()); + } + break; + } + case kSum: { + if (oneof_needs_init) { + _this->_impl_.type_.sum_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(arena, *from._impl_.type_.sum_); + } else { + _this->_impl_.type_.sum_->MergeFrom(from._internal_sum()); + } + break; + } + case kTDigest: { + if (oneof_needs_init) { + _this->_impl_.type_.t_digest_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(arena, *from._impl_.type_.t_digest_); + } else { + _this->_impl_.type_.t_digest_->MergeFrom(from._internal_t_digest()); + } + break; + } + case kUnique: { + if (oneof_needs_init) { + _this->_impl_.type_.unique_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(arena, *from._impl_.type_.unique_); + } else { + _this->_impl_.type_.unique_->MergeFrom(from._internal_unique()); + } + break; + } + case kWeightedAvg: { + if (oneof_needs_init) { + _this->_impl_.type_.weighted_avg_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_avg_); + } else { + _this->_impl_.type_.weighted_avg_->MergeFrom(from._internal_weighted_avg()); + } + break; + } + case kWeightedSum: { + if (oneof_needs_init) { + _this->_impl_.type_.weighted_sum_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_sum_); + } else { + _this->_impl_.type_.weighted_sum_->MergeFrom(from._internal_weighted_sum()); + } + break; + } + case kVar: { + if (oneof_needs_init) { + _this->_impl_.type_.var_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(arena, *from._impl_.type_.var_); + } else { + _this->_impl_.type_.var_->MergeFrom(from._internal_var()); + } + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -27670,13 +31865,7 @@ void AggSpec::CopyFrom(const AggSpec& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggSpec::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggSpec::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggSpec::InternalSwap(AggSpec* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -27685,53 +31874,35 @@ void AggSpec::InternalSwap(AggSpec* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata AggSpec::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[85]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class AggregateRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const AggregateRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const AggregateRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& initial_groups_id(const AggregateRequest* msg); - static void set_has_initial_groups_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateRequest::_Internal::result_id(const AggregateRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::_Internal::source_id(const AggregateRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::_Internal::initial_groups_id(const AggregateRequest* msg) { - return *msg->_impl_.initial_groups_id_; -} void AggregateRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } AggregateRequest::AggregateRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AggregateRequest) } inline PROTOBUF_NDEBUG_INLINE AggregateRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, aggregations_{visibility, arena, from.aggregations_}, @@ -27740,22 +31911,26 @@ inline PROTOBUF_NDEBUG_INLINE AggregateRequest::Impl_::Impl_( AggregateRequest::AggregateRequest( ::google::protobuf::Arena* arena, const AggregateRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AggregateRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.initial_groups_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.initial_groups_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.initial_groups_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.initial_groups_id_) + : nullptr; _impl_.preserve_empty_ = from._impl_.preserve_empty_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggregateRequest) @@ -27789,42 +31964,34 @@ inline void AggregateRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AggregateRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggregateRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.aggregations_.Clear(); - _impl_.group_by_columns_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.initial_groups_id_ != nullptr); - _impl_.initial_groups_id_->Clear(); - } - } - _impl_.preserve_empty_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AggregateRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AggregateRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AggregateRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AggregateRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AggregateRequest::ByteSizeLong, + &AggregateRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_._cached_size_), + false, + }, + &AggregateRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AggregateRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 4, 75, 2> AggregateRequest::_table_ = { { @@ -27837,8 +32004,12 @@ const ::_pbi::TcParseTable<3, 6, 4, 75, 2> AggregateRequest::_table_ = { 6, // num_field_entries 4, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AggregateRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggregateRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -27893,127 +32064,172 @@ const ::_pbi::TcParseTable<3, 6, 4, 75, 2> AggregateRequest::_table_ = { }}, }; -::uint8_t* AggregateRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggregateRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::initial_groups_id(this), - _Internal::initial_groups_id(this).GetCachedSize(), target, stream); - } - - // bool preserve_empty = 4; - if (this->_internal_preserve_empty() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_preserve_empty(), target); - } - - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; - for (unsigned i = 0, - n = static_cast(this->_internal_aggregations_size()); i < n; i++) { - const auto& repfield = this->_internal_aggregations().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(5, repfield, repfield.GetCachedSize(), target, stream); - } - - // repeated string group_by_columns = 6; - for (int i = 0, n = this->_internal_group_by_columns_size(); i < n; ++i) { - const auto& s = this->_internal_group_by_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns"); - target = stream->WriteString(6, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggregateRequest) - return target; -} - -::size_t AggregateRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggregateRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AggregateRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AggregateRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; - total_size += 1UL * this->_internal_aggregations_size(); - for (const auto& msg : this->_internal_aggregations()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // repeated string group_by_columns = 6; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_group_by_columns().size()); - for (int i = 0, n = _internal_group_by_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_group_by_columns().Get(i)); - } + _impl_.aggregations_.Clear(); + _impl_.group_by_columns_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.initial_groups_id_); + ABSL_DCHECK(_impl_.initial_groups_id_ != nullptr); + _impl_.initial_groups_id_->Clear(); } - - } - // bool preserve_empty = 4; - if (this->_internal_preserve_empty() != 0) { - total_size += 2; } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AggregateRequest::_class_data_ = { - AggregateRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AggregateRequest::GetClassData() const { - return &_class_data_; + _impl_.preserve_empty_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AggregateRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AggregateRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AggregateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AggregateRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AggregateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AggregateRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.initial_groups_id_, this_._impl_.initial_groups_id_->GetCachedSize(), target, + stream); + } + + // bool preserve_empty = 4; + if (this_._internal_preserve_empty() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_preserve_empty(), target); + } + + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; + for (unsigned i = 0, n = static_cast( + this_._internal_aggregations_size()); + i < n; i++) { + const auto& repfield = this_._internal_aggregations().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, repfield, repfield.GetCachedSize(), + target, stream); + } + + // repeated string group_by_columns = 6; + for (int i = 0, n = this_._internal_group_by_columns_size(); i < n; ++i) { + const auto& s = this_._internal_group_by_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns"); + target = stream->WriteString(6, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AggregateRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AggregateRequest::ByteSizeLong(const MessageLite& base) { + const AggregateRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AggregateRequest::ByteSizeLong() const { + const AggregateRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AggregateRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; + { + total_size += 1UL * this_._internal_aggregations_size(); + for (const auto& msg : this_._internal_aggregations()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + // repeated string group_by_columns = 6; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_group_by_columns().size()); + for (int i = 0, n = this_._internal_group_by_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_group_by_columns().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.initial_groups_id_); + } + } + { + // bool preserve_empty = 4; + if (this_._internal_preserve_empty() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AggregateRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AggregateRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -28025,21 +32241,37 @@ void AggregateRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_initial_groups_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_initial_groups_id()); + ABSL_DCHECK(from._impl_.initial_groups_id_ != nullptr); + if (_this->_impl_.initial_groups_id_ == nullptr) { + _this->_impl_.initial_groups_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.initial_groups_id_); + } else { + _this->_impl_.initial_groups_id_->MergeFrom(*from._impl_.initial_groups_id_); + } } } if (from._internal_preserve_empty() != 0) { - _this->_internal_set_preserve_empty(from._internal_preserve_empty()); + _this->_impl_.preserve_empty_ = from._impl_.preserve_empty_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -28050,13 +32282,7 @@ void AggregateRequest::CopyFrom(const AggregateRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AggregateRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AggregateRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AggregateRequest::InternalSwap(AggregateRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -28072,34 +32298,30 @@ void AggregateRequest::InternalSwap(AggregateRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata AggregateRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[86]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Aggregation_AggregationColumns::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::AggSpec& spec(const Aggregation_AggregationColumns* msg); - static void set_has_spec(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::AggSpec& Aggregation_AggregationColumns::_Internal::spec(const Aggregation_AggregationColumns* msg) { - return *msg->_impl_.spec_; -} Aggregation_AggregationColumns::Aggregation_AggregationColumns(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) } inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationColumns::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, match_pairs_{visibility, arena, from.match_pairs_} {} @@ -28107,16 +32329,20 @@ inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationColumns::Impl_::Impl_( Aggregation_AggregationColumns::Aggregation_AggregationColumns( ::google::protobuf::Arena* arena, const Aggregation_AggregationColumns& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Aggregation_AggregationColumns* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.spec_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec>(arena, *from._impl_.spec_) - : nullptr; + _impl_.spec_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>( + arena, *from._impl_.spec_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) } @@ -28141,30 +32367,34 @@ inline void Aggregation_AggregationColumns::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Aggregation_AggregationColumns::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.match_pairs_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.spec_ != nullptr); - _impl_.spec_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Aggregation_AggregationColumns::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Aggregation_AggregationColumns::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Aggregation_AggregationColumns_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Aggregation_AggregationColumns::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Aggregation_AggregationColumns::ByteSizeLong, + &Aggregation_AggregationColumns::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_._cached_size_), + false, + }, + &Aggregation_AggregationColumns::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Aggregation_AggregationColumns::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 84, 2> Aggregation_AggregationColumns::_table_ = { { @@ -28177,8 +32407,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 84, 2> Aggregation_AggregationColumns::_tabl 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_Aggregation_AggregationColumns_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string match_pairs = 2; {::_pbi::TcParser::FastUR1, @@ -28204,83 +32438,123 @@ const ::_pbi::TcParseTable<1, 2, 1, 84, 2> Aggregation_AggregationColumns::_tabl }}, }; -::uint8_t* Aggregation_AggregationColumns::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::spec(this), - _Internal::spec(this).GetCachedSize(), target, stream); - } - - // repeated string match_pairs = 2; - for (int i = 0, n = this->_internal_match_pairs_size(); i < n; ++i) { - const auto& s = this->_internal_match_pairs().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs"); - target = stream->WriteString(2, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - return target; -} - -::size_t Aggregation_AggregationColumns::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Aggregation_AggregationColumns::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string match_pairs = 2; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_match_pairs().size()); - for (int i = 0, n = _internal_match_pairs().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_match_pairs().Get(i)); - } - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; + _impl_.match_pairs_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.spec_); + ABSL_DCHECK(_impl_.spec_ != nullptr); + _impl_.spec_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Aggregation_AggregationColumns::_class_data_ = { - Aggregation_AggregationColumns::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Aggregation_AggregationColumns::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Aggregation_AggregationColumns::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Aggregation_AggregationColumns::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Aggregation_AggregationColumns& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Aggregation_AggregationColumns::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Aggregation_AggregationColumns& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.spec_, this_._impl_.spec_->GetCachedSize(), target, + stream); + } + + // repeated string match_pairs = 2; + for (int i = 0, n = this_._internal_match_pairs_size(); i < n; ++i) { + const auto& s = this_._internal_match_pairs().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs"); + target = stream->WriteString(2, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Aggregation_AggregationColumns::ByteSizeLong(const MessageLite& base) { + const Aggregation_AggregationColumns& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Aggregation_AggregationColumns::ByteSizeLong() const { + const Aggregation_AggregationColumns& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string match_pairs = 2; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_match_pairs().size()); + for (int i = 0, n = this_._internal_match_pairs().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_match_pairs().Get(i)); + } + } + } + { + // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.spec_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Aggregation_AggregationColumns::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; _this->_internal_mutable_match_pairs()->MergeFrom(from._internal_match_pairs()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_spec()->::io::deephaven::proto::backplane::grpc::AggSpec::MergeFrom( - from._internal_spec()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.spec_ != nullptr); + if (_this->_impl_.spec_ == nullptr) { + _this->_impl_.spec_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>(arena, *from._impl_.spec_); + } else { + _this->_impl_.spec_->MergeFrom(*from._impl_.spec_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -28291,13 +32565,7 @@ void Aggregation_AggregationColumns::CopyFrom(const Aggregation_AggregationColum MergeFrom(from); } -PROTOBUF_NOINLINE bool Aggregation_AggregationColumns::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Aggregation_AggregationColumns::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Aggregation_AggregationColumns::InternalSwap(Aggregation_AggregationColumns* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -28307,9 +32575,7 @@ void Aggregation_AggregationColumns::InternalSwap(Aggregation_AggregationColumns } ::google::protobuf::Metadata Aggregation_AggregationColumns::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[87]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -28318,25 +32584,33 @@ class Aggregation_AggregationCount::_Internal { }; Aggregation_AggregationCount::Aggregation_AggregationCount(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) } inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationCount::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} Aggregation_AggregationCount::Aggregation_AggregationCount( ::google::protobuf::Arena* arena, const Aggregation_AggregationCount& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Aggregation_AggregationCount* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) } @@ -28360,24 +32634,34 @@ inline void Aggregation_AggregationCount::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Aggregation_AggregationCount::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Aggregation_AggregationCount::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Aggregation_AggregationCount::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Aggregation_AggregationCount_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Aggregation_AggregationCount::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Aggregation_AggregationCount::ByteSizeLong, + &Aggregation_AggregationCount::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Aggregation_AggregationCount, _impl_._cached_size_), + false, + }, + &Aggregation_AggregationCount::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Aggregation_AggregationCount::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 82, 2> Aggregation_AggregationCount::_table_ = { { @@ -28390,8 +32674,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 82, 2> Aggregation_AggregationCount::_table_ 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Aggregation_AggregationCount_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column_name = 1; {::_pbi::TcParser::FastUS1, @@ -28411,56 +32699,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 82, 2> Aggregation_AggregationCount::_table_ }}, }; -::uint8_t* Aggregation_AggregationCount::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - return target; -} - -::size_t Aggregation_AggregationCount::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Aggregation_AggregationCount::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Aggregation_AggregationCount::_class_data_ = { - Aggregation_AggregationCount::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Aggregation_AggregationCount::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Aggregation_AggregationCount::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Aggregation_AggregationCount::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Aggregation_AggregationCount& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Aggregation_AggregationCount::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Aggregation_AggregationCount& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Aggregation_AggregationCount::ByteSizeLong(const MessageLite& base) { + const Aggregation_AggregationCount& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Aggregation_AggregationCount::ByteSizeLong() const { + const Aggregation_AggregationCount& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Aggregation_AggregationCount::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) @@ -28481,13 +32788,7 @@ void Aggregation_AggregationCount::CopyFrom(const Aggregation_AggregationCount& MergeFrom(from); } -PROTOBUF_NOINLINE bool Aggregation_AggregationCount::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Aggregation_AggregationCount::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Aggregation_AggregationCount::InternalSwap(Aggregation_AggregationCount* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -28497,9 +32798,7 @@ void Aggregation_AggregationCount::InternalSwap(Aggregation_AggregationCount* PR } ::google::protobuf::Metadata Aggregation_AggregationCount::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[88]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -28508,25 +32807,33 @@ class Aggregation_AggregationRowKey::_Internal { }; Aggregation_AggregationRowKey::Aggregation_AggregationRowKey(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) } inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationRowKey::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} Aggregation_AggregationRowKey::Aggregation_AggregationRowKey( ::google::protobuf::Arena* arena, const Aggregation_AggregationRowKey& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Aggregation_AggregationRowKey* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) } @@ -28550,24 +32857,34 @@ inline void Aggregation_AggregationRowKey::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Aggregation_AggregationRowKey::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Aggregation_AggregationRowKey::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Aggregation_AggregationRowKey::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Aggregation_AggregationRowKey_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Aggregation_AggregationRowKey::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Aggregation_AggregationRowKey::ByteSizeLong, + &Aggregation_AggregationRowKey::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Aggregation_AggregationRowKey, _impl_._cached_size_), + false, + }, + &Aggregation_AggregationRowKey::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Aggregation_AggregationRowKey::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 83, 2> Aggregation_AggregationRowKey::_table_ = { { @@ -28580,8 +32897,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 83, 2> Aggregation_AggregationRowKey::_table 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Aggregation_AggregationRowKey_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column_name = 1; {::_pbi::TcParser::FastUS1, @@ -28601,56 +32922,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 83, 2> Aggregation_AggregationRowKey::_table }}, }; -::uint8_t* Aggregation_AggregationRowKey::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - return target; -} - -::size_t Aggregation_AggregationRowKey::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Aggregation_AggregationRowKey::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Aggregation_AggregationRowKey::_class_data_ = { - Aggregation_AggregationRowKey::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Aggregation_AggregationRowKey::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Aggregation_AggregationRowKey::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Aggregation_AggregationRowKey::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Aggregation_AggregationRowKey& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Aggregation_AggregationRowKey::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Aggregation_AggregationRowKey& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Aggregation_AggregationRowKey::ByteSizeLong(const MessageLite& base) { + const Aggregation_AggregationRowKey& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Aggregation_AggregationRowKey::ByteSizeLong() const { + const Aggregation_AggregationRowKey& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Aggregation_AggregationRowKey::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) @@ -28671,13 +33011,7 @@ void Aggregation_AggregationRowKey::CopyFrom(const Aggregation_AggregationRowKey MergeFrom(from); } -PROTOBUF_NOINLINE bool Aggregation_AggregationRowKey::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Aggregation_AggregationRowKey::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Aggregation_AggregationRowKey::InternalSwap(Aggregation_AggregationRowKey* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -28687,9 +33021,7 @@ void Aggregation_AggregationRowKey::InternalSwap(Aggregation_AggregationRowKey* } ::google::protobuf::Metadata Aggregation_AggregationRowKey::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[89]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -28698,25 +33030,33 @@ class Aggregation_AggregationPartition::_Internal { }; Aggregation_AggregationPartition::Aggregation_AggregationPartition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) } inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationPartition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} Aggregation_AggregationPartition::Aggregation_AggregationPartition( ::google::protobuf::Arena* arena, const Aggregation_AggregationPartition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Aggregation_AggregationPartition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); _impl_.include_group_by_columns_ = from._impl_.include_group_by_columns_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) @@ -28742,25 +33082,34 @@ inline void Aggregation_AggregationPartition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Aggregation_AggregationPartition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - _impl_.include_group_by_columns_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Aggregation_AggregationPartition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Aggregation_AggregationPartition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Aggregation_AggregationPartition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Aggregation_AggregationPartition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Aggregation_AggregationPartition::ByteSizeLong, + &Aggregation_AggregationPartition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Aggregation_AggregationPartition, _impl_._cached_size_), + false, + }, + &Aggregation_AggregationPartition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Aggregation_AggregationPartition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 86, 2> Aggregation_AggregationPartition::_table_ = { { @@ -28773,8 +33122,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 86, 2> Aggregation_AggregationPartition::_ta 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Aggregation_AggregationPartition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bool include_group_by_columns = 2; {::_pbi::TcParser::SingularVarintNoZag1(), @@ -28800,68 +33153,88 @@ const ::_pbi::TcParseTable<1, 2, 0, 86, 2> Aggregation_AggregationPartition::_ta }}, }; -::uint8_t* Aggregation_AggregationPartition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // bool include_group_by_columns = 2; - if (this->_internal_include_group_by_columns() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_include_group_by_columns(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - return target; -} - -::size_t Aggregation_AggregationPartition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Aggregation_AggregationPartition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - // bool include_group_by_columns = 2; - if (this->_internal_include_group_by_columns() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Aggregation_AggregationPartition::_class_data_ = { - Aggregation_AggregationPartition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Aggregation_AggregationPartition::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + _impl_.include_group_by_columns_ = false; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Aggregation_AggregationPartition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Aggregation_AggregationPartition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Aggregation_AggregationPartition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Aggregation_AggregationPartition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Aggregation_AggregationPartition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // bool include_group_by_columns = 2; + if (this_._internal_include_group_by_columns() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_include_group_by_columns(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Aggregation_AggregationPartition::ByteSizeLong(const MessageLite& base) { + const Aggregation_AggregationPartition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Aggregation_AggregationPartition::ByteSizeLong() const { + const Aggregation_AggregationPartition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + // bool include_group_by_columns = 2; + if (this_._internal_include_group_by_columns() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Aggregation_AggregationPartition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) @@ -28873,7 +33246,7 @@ void Aggregation_AggregationPartition::MergeImpl(::google::protobuf::Message& to _this->_internal_set_column_name(from._internal_column_name()); } if (from._internal_include_group_by_columns() != 0) { - _this->_internal_set_include_group_by_columns(from._internal_include_group_by_columns()); + _this->_impl_.include_group_by_columns_ = from._impl_.include_group_by_columns_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -28885,13 +33258,7 @@ void Aggregation_AggregationPartition::CopyFrom(const Aggregation_AggregationPar MergeFrom(from); } -PROTOBUF_NOINLINE bool Aggregation_AggregationPartition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Aggregation_AggregationPartition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Aggregation_AggregationPartition::InternalSwap(Aggregation_AggregationPartition* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -28902,38 +33269,16 @@ void Aggregation_AggregationPartition::InternalSwap(Aggregation_AggregationParti } ::google::protobuf::Metadata Aggregation_AggregationPartition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[90]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Aggregation::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& columns(const Aggregation* msg); - static const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& count(const Aggregation* msg); - static const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& first_row_key(const Aggregation* msg); - static const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& last_row_key(const Aggregation* msg); - static const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& partition(const Aggregation* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Aggregation, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& Aggregation::_Internal::columns(const Aggregation* msg) { - return *msg->_impl_.type_.columns_; -} -const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& Aggregation::_Internal::count(const Aggregation* msg) { - return *msg->_impl_.type_.count_; -} -const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::_Internal::first_row_key(const Aggregation* msg) { - return *msg->_impl_.type_.first_row_key_; -} -const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::_Internal::last_row_key(const Aggregation* msg) { - return *msg->_impl_.type_.last_row_key_; -} -const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& Aggregation::_Internal::partition(const Aggregation* msg) { - return *msg->_impl_.type_.partition_; -} void Aggregation::set_allocated_columns(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* columns) { ::google::protobuf::Arena* message_arena = GetArena(); clear_type(); @@ -29000,13 +33345,17 @@ void Aggregation::set_allocated_partition(::io::deephaven::proto::backplane::grp // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.partition) } Aggregation::Aggregation(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Aggregation) } inline PROTOBUF_NDEBUG_INLINE Aggregation::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Aggregation& from_msg) : type_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -29014,29 +33363,33 @@ inline PROTOBUF_NDEBUG_INLINE Aggregation::Impl_::Impl_( Aggregation::Aggregation( ::google::protobuf::Arena* arena, const Aggregation& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Aggregation* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (type_case()) { case TYPE_NOT_SET: break; case kColumns: - _impl_.type_.columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(arena, *from._impl_.type_.columns_); + _impl_.type_.columns_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(arena, *from._impl_.type_.columns_); break; case kCount: - _impl_.type_.count_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(arena, *from._impl_.type_.count_); + _impl_.type_.count_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(arena, *from._impl_.type_.count_); break; case kFirstRowKey: - _impl_.type_.first_row_key_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.first_row_key_); + _impl_.type_.first_row_key_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.first_row_key_); break; case kLastRowKey: - _impl_.type_.last_row_key_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.last_row_key_); + _impl_.type_.last_row_key_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.last_row_key_); break; case kPartition: - _impl_.type_.partition_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(arena, *from._impl_.type_.partition_); + _impl_.type_.partition_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(arena, *from._impl_.type_.partition_); break; } @@ -29067,35 +33420,45 @@ inline void Aggregation::SharedDtor() { void Aggregation::clear_type() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Aggregation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (type_case()) { case kColumns: { if (GetArena() == nullptr) { delete _impl_.type_.columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.columns_); } break; } case kCount: { if (GetArena() == nullptr) { delete _impl_.type_.count_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.count_); } break; } case kFirstRowKey: { if (GetArena() == nullptr) { delete _impl_.type_.first_row_key_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.first_row_key_); } break; } case kLastRowKey: { if (GetArena() == nullptr) { delete _impl_.type_.last_row_key_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.last_row_key_); } break; } case kPartition: { if (GetArena() == nullptr) { delete _impl_.type_.partition_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.partition_); } break; } @@ -29107,24 +33470,34 @@ void Aggregation::clear_type() { } -PROTOBUF_NOINLINE void Aggregation::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Aggregation::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Aggregation::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Aggregation_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Aggregation::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Aggregation::ByteSizeLong, + &Aggregation::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Aggregation, _impl_._cached_size_), + false, + }, + &Aggregation::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Aggregation::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 5, 5, 0, 2> Aggregation::_table_ = { { @@ -29137,8 +33510,12 @@ const ::_pbi::TcParseTable<0, 5, 5, 0, 2> Aggregation::_table_ = { 5, // num_field_entries 5, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_Aggregation_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -29169,146 +33546,195 @@ const ::_pbi::TcParseTable<0, 5, 5, 0, 2> Aggregation::_table_ = { }}, }; -::uint8_t* Aggregation::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation) +PROTOBUF_NOINLINE void Aggregation::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Aggregation) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; - switch (type_case()) { - case kColumns: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::columns(this), - _Internal::columns(this).GetCachedSize(), target, stream); - break; - } - case kCount: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::count(this), - _Internal::count(this).GetCachedSize(), target, stream); - break; - } - case kFirstRowKey: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::first_row_key(this), - _Internal::first_row_key(this).GetCachedSize(), target, stream); - break; - } - case kLastRowKey: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::last_row_key(this), - _Internal::last_row_key(this).GetCachedSize(), target, stream); - break; - } - case kPartition: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::partition(this), - _Internal::partition(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation) - return target; -} - -::size_t Aggregation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - switch (type_case()) { - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns columns = 1; - case kColumns: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.columns_); - break; - } - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount count = 2; - case kCount: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.count_); - break; - } - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey first_row_key = 3; - case kFirstRowKey: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.first_row_key_); - break; - } - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey last_row_key = 4; - case kLastRowKey: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.last_row_key_); - break; - } - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition partition = 5; - case kPartition: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.type_.partition_); - break; - } - case TYPE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Aggregation::_class_data_ = { - Aggregation::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Aggregation::GetClassData() const { - return &_class_data_; + clear_type(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Aggregation::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Aggregation::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Aggregation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Aggregation::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Aggregation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Aggregation) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.type_case()) { + case kColumns: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.type_.columns_, this_._impl_.type_.columns_->GetCachedSize(), target, + stream); + break; + } + case kCount: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.type_.count_, this_._impl_.type_.count_->GetCachedSize(), target, + stream); + break; + } + case kFirstRowKey: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.type_.first_row_key_, this_._impl_.type_.first_row_key_->GetCachedSize(), target, + stream); + break; + } + case kLastRowKey: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.type_.last_row_key_, this_._impl_.type_.last_row_key_->GetCachedSize(), target, + stream); + break; + } + case kPartition: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.type_.partition_, this_._impl_.type_.partition_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Aggregation) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Aggregation::ByteSizeLong(const MessageLite& base) { + const Aggregation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Aggregation::ByteSizeLong() const { + const Aggregation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Aggregation) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.type_case()) { + // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns columns = 1; + case kColumns: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.columns_); + break; + } + // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount count = 2; + case kCount: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.count_); + break; + } + // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey first_row_key = 3; + case kFirstRowKey: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.first_row_key_); + break; + } + // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey last_row_key = 4; + case kLastRowKey: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.last_row_key_); + break; + } + // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition partition = 5; + case kPartition: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.type_.partition_); + break; + } + case TYPE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Aggregation::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Aggregation) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.type_case()) { - case kColumns: { - _this->_internal_mutable_columns()->::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns::MergeFrom( - from._internal_columns()); - break; - } - case kCount: { - _this->_internal_mutable_count()->::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount::MergeFrom( - from._internal_count()); - break; - } - case kFirstRowKey: { - _this->_internal_mutable_first_row_key()->::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey::MergeFrom( - from._internal_first_row_key()); - break; - } - case kLastRowKey: { - _this->_internal_mutable_last_row_key()->::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey::MergeFrom( - from._internal_last_row_key()); - break; - } - case kPartition: { - _this->_internal_mutable_partition()->::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition::MergeFrom( - from._internal_partition()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_type(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case TYPE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kColumns: { + if (oneof_needs_init) { + _this->_impl_.type_.columns_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(arena, *from._impl_.type_.columns_); + } else { + _this->_impl_.type_.columns_->MergeFrom(from._internal_columns()); + } + break; + } + case kCount: { + if (oneof_needs_init) { + _this->_impl_.type_.count_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(arena, *from._impl_.type_.count_); + } else { + _this->_impl_.type_.count_->MergeFrom(from._internal_count()); + } + break; + } + case kFirstRowKey: { + if (oneof_needs_init) { + _this->_impl_.type_.first_row_key_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.first_row_key_); + } else { + _this->_impl_.type_.first_row_key_->MergeFrom(from._internal_first_row_key()); + } + break; + } + case kLastRowKey: { + if (oneof_needs_init) { + _this->_impl_.type_.last_row_key_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.last_row_key_); + } else { + _this->_impl_.type_.last_row_key_->MergeFrom(from._internal_last_row_key()); + } + break; + } + case kPartition: { + if (oneof_needs_init) { + _this->_impl_.type_.partition_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(arena, *from._impl_.type_.partition_); + } else { + _this->_impl_.type_.partition_->MergeFrom(from._internal_partition()); + } + break; + } + case TYPE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -29321,13 +33747,7 @@ void Aggregation::CopyFrom(const Aggregation& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Aggregation::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Aggregation::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Aggregation::InternalSwap(Aggregation* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -29336,9 +33756,7 @@ void Aggregation::InternalSwap(Aggregation* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Aggregation::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[91]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -29347,25 +33765,33 @@ class SortDescriptor::_Internal { }; SortDescriptor::SortDescriptor(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SortDescriptor) } inline PROTOBUF_NDEBUG_INLINE SortDescriptor::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SortDescriptor& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} SortDescriptor::SortDescriptor( ::google::protobuf::Arena* arena, const SortDescriptor& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SortDescriptor* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, is_absolute_), reinterpret_cast(&from._impl_) + @@ -29402,27 +33828,34 @@ inline void SortDescriptor::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SortDescriptor::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SortDescriptor) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - ::memset(&_impl_.is_absolute_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.direction_) - - reinterpret_cast(&_impl_.is_absolute_)) + sizeof(_impl_.direction_)); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SortDescriptor::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SortDescriptor::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SortDescriptor_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SortDescriptor::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SortDescriptor::ByteSizeLong, + &SortDescriptor::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_._cached_size_), + false, + }, + &SortDescriptor::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SortDescriptor::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 0, 68, 2> SortDescriptor::_table_ = { { @@ -29435,8 +33868,12 @@ const ::_pbi::TcParseTable<2, 3, 0, 68, 2> SortDescriptor::_table_ = { 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_SortDescriptor_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SortDescriptor>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string column_name = 1; @@ -29469,81 +33906,102 @@ const ::_pbi::TcParseTable<2, 3, 0, 68, 2> SortDescriptor::_table_ = { }}, }; -::uint8_t* SortDescriptor::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SortDescriptor) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SortDescriptor.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // bool is_absolute = 2; - if (this->_internal_is_absolute() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 2, this->_internal_is_absolute(), target); - } - - // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; - if (this->_internal_direction() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_direction(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SortDescriptor) - return target; -} - -::size_t SortDescriptor::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SortDescriptor) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SortDescriptor::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SortDescriptor) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - // bool is_absolute = 2; - if (this->_internal_is_absolute() != 0) { - total_size += 2; - } - - // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; - if (this->_internal_direction() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_direction()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SortDescriptor::_class_data_ = { - SortDescriptor::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SortDescriptor::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + ::memset(&_impl_.is_absolute_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.direction_) - + reinterpret_cast(&_impl_.is_absolute_)) + sizeof(_impl_.direction_)); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SortDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SortDescriptor::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SortDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SortDescriptor::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SortDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SortDescriptor) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SortDescriptor.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // bool is_absolute = 2; + if (this_._internal_is_absolute() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 2, this_._internal_is_absolute(), target); + } + + // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; + if (this_._internal_direction() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_direction(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SortDescriptor) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SortDescriptor::ByteSizeLong(const MessageLite& base) { + const SortDescriptor& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SortDescriptor::ByteSizeLong() const { + const SortDescriptor& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SortDescriptor) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + // bool is_absolute = 2; + if (this_._internal_is_absolute() != 0) { + total_size += 2; + } + // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; + if (this_._internal_direction() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_direction()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SortDescriptor::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SortDescriptor) @@ -29555,10 +34013,10 @@ void SortDescriptor::MergeImpl(::google::protobuf::Message& to_msg, const ::goog _this->_internal_set_column_name(from._internal_column_name()); } if (from._internal_is_absolute() != 0) { - _this->_internal_set_is_absolute(from._internal_is_absolute()); + _this->_impl_.is_absolute_ = from._impl_.is_absolute_; } if (from._internal_direction() != 0) { - _this->_internal_set_direction(from._internal_direction()); + _this->_impl_.direction_ = from._impl_.direction_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -29570,13 +34028,7 @@ void SortDescriptor::CopyFrom(const SortDescriptor& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SortDescriptor::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SortDescriptor::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SortDescriptor::InternalSwap(SortDescriptor* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -29592,46 +34044,35 @@ void SortDescriptor::InternalSwap(SortDescriptor* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SortDescriptor::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[92]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SortTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const SortTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const SortTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SortTableRequest::_Internal::result_id(const SortTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& SortTableRequest::_Internal::source_id(const SortTableRequest* msg) { - return *msg->_impl_.source_id_; -} void SortTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SortTableRequest::SortTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SortTableRequest) } inline PROTOBUF_NDEBUG_INLINE SortTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, sorts_{visibility, arena, from.sorts_} {} @@ -29639,19 +34080,23 @@ inline PROTOBUF_NDEBUG_INLINE SortTableRequest::Impl_::Impl_( SortTableRequest::SortTableRequest( ::google::protobuf::Arena* arena, const SortTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SortTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SortTableRequest) } @@ -29682,36 +34127,34 @@ inline void SortTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SortTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SortTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.sorts_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SortTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SortTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SortTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SortTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SortTableRequest::ByteSizeLong, + &SortTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_._cached_size_), + false, + }, + &SortTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SortTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> SortTableRequest::_table_ = { { @@ -29724,8 +34167,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> SortTableRequest::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SortTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SortTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -29757,88 +34204,124 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> SortTableRequest::_table_ = { }}, }; -::uint8_t* SortTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SortTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_sorts_size()); i < n; i++) { - const auto& repfield = this->_internal_sorts().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SortTableRequest) - return target; -} - -::size_t SortTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SortTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SortTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SortTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; - total_size += 1UL * this->_internal_sorts_size(); - for (const auto& msg : this->_internal_sorts()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } + _impl_.sorts_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SortTableRequest::_class_data_ = { - SortTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SortTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SortTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SortTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SortTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SortTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SortTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SortTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_sorts_size()); + i < n; i++) { + const auto& repfield = this_._internal_sorts().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SortTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SortTableRequest::ByteSizeLong(const MessageLite& base) { + const SortTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SortTableRequest::ByteSizeLong() const { + const SortTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SortTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; + { + total_size += 1UL * this_._internal_sorts_size(); + for (const auto& msg : this_._internal_sorts()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SortTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SortTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -29849,14 +34332,25 @@ void SortTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -29867,13 +34361,7 @@ void SortTableRequest::CopyFrom(const SortTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SortTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SortTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SortTableRequest::InternalSwap(SortTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -29888,46 +34376,35 @@ void SortTableRequest::InternalSwap(SortTableRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SortTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[93]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FilterTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const FilterTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const FilterTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& FilterTableRequest::_Internal::result_id(const FilterTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& FilterTableRequest::_Internal::source_id(const FilterTableRequest* msg) { - return *msg->_impl_.source_id_; -} void FilterTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } FilterTableRequest::FilterTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FilterTableRequest) } inline PROTOBUF_NDEBUG_INLINE FilterTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, filters_{visibility, arena, from.filters_} {} @@ -29935,19 +34412,23 @@ inline PROTOBUF_NDEBUG_INLINE FilterTableRequest::Impl_::Impl_( FilterTableRequest::FilterTableRequest( ::google::protobuf::Arena* arena, const FilterTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FilterTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FilterTableRequest) } @@ -29978,36 +34459,34 @@ inline void FilterTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FilterTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.filters_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FilterTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FilterTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FilterTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FilterTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FilterTableRequest::ByteSizeLong, + &FilterTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_._cached_size_), + false, + }, + &FilterTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FilterTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FilterTableRequest::_table_ = { { @@ -30020,8 +34499,12 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FilterTableRequest::_table_ = { 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FilterTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -30053,88 +34536,124 @@ const ::_pbi::TcParseTable<2, 3, 3, 0, 2> FilterTableRequest::_table_ = { }}, }; -::uint8_t* FilterTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_filters_size()); i < n; i++) { - const auto& repfield = this->_internal_filters().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FilterTableRequest) - return target; -} - -::size_t FilterTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FilterTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - total_size += 1UL * this->_internal_filters_size(); - for (const auto& msg : this->_internal_filters()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } + _impl_.filters_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FilterTableRequest::_class_data_ = { - FilterTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FilterTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FilterTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FilterTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FilterTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FilterTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FilterTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_filters_size()); + i < n; i++) { + const auto& repfield = this_._internal_filters().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FilterTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FilterTableRequest::ByteSizeLong(const MessageLite& base) { + const FilterTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FilterTableRequest::ByteSizeLong() const { + const FilterTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; + { + total_size += 1UL * this_._internal_filters_size(); + for (const auto& msg : this_._internal_filters()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FilterTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -30145,14 +34664,25 @@ void FilterTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const :: cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -30163,13 +34693,7 @@ void FilterTableRequest::CopyFrom(const FilterTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FilterTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FilterTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FilterTableRequest::InternalSwap(FilterTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -30184,46 +34708,35 @@ void FilterTableRequest::InternalSwap(FilterTableRequest* PROTOBUF_RESTRICT othe } ::google::protobuf::Metadata FilterTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[94]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class SeekRowRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& source_id(const SeekRowRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Literal& seek_value(const SeekRowRequest* msg); - static void set_has_seek_value(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& SeekRowRequest::_Internal::source_id(const SeekRowRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::Literal& SeekRowRequest::_Internal::seek_value(const SeekRowRequest* msg) { - return *msg->_impl_.seek_value_; -} void SeekRowRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } SeekRowRequest::SeekRowRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SeekRowRequest) } inline PROTOBUF_NDEBUG_INLINE SeekRowRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, column_name_(arena, from.column_name_) {} @@ -30231,19 +34744,23 @@ inline PROTOBUF_NDEBUG_INLINE SeekRowRequest::Impl_::Impl_( SeekRowRequest::SeekRowRequest( ::google::protobuf::Arena* arena, const SeekRowRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SeekRowRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.source_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.seek_value_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.seek_value_) - : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.seek_value_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Literal>( + arena, *from._impl_.seek_value_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, starting_row_), reinterpret_cast(&from._impl_) + @@ -30282,39 +34799,34 @@ inline void SeekRowRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SeekRowRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.seek_value_ != nullptr); - _impl_.seek_value_->Clear(); - } - } - ::memset(&_impl_.starting_row_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.is_backward_) - - reinterpret_cast(&_impl_.starting_row_)) + sizeof(_impl_.is_backward_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SeekRowRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SeekRowRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SeekRowRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SeekRowRequest::ByteSizeLong, + &SeekRowRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_._cached_size_), + false, + }, + &SeekRowRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SeekRowRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* SeekRowRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 7, 2, 68, 2> SeekRowRequest::_table_ = { { @@ -30327,8 +34839,12 @@ const ::_pbi::TcParseTable<3, 7, 2, 68, 2> SeekRowRequest::_table_ = { 7, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SeekRowRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SeekRowRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; @@ -30386,137 +34902,169 @@ const ::_pbi::TcParseTable<3, 7, 2, 68, 2> SeekRowRequest::_table_ = { }}, }; -::uint8_t* SeekRowRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // sint64 starting_row = 2 [jstype = JS_STRING]; - if (this->_internal_starting_row() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 2, this->_internal_starting_row(), target); - } - - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::seek_value(this), - _Internal::seek_value(this).GetCachedSize(), target, stream); - } - - // bool insensitive = 5; - if (this->_internal_insensitive() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 5, this->_internal_insensitive(), target); - } - - // bool contains = 6; - if (this->_internal_contains() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 6, this->_internal_contains(), target); - } - - // bool is_backward = 7; - if (this->_internal_is_backward() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 7, this->_internal_is_backward(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SeekRowRequest) - return target; -} - -::size_t SeekRowRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SeekRowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - + _impl_.column_name_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.seek_value_); + ABSL_DCHECK(_impl_.seek_value_ != nullptr); + _impl_.seek_value_->Clear(); } - - } - // sint64 starting_row = 2 [jstype = JS_STRING]; - if (this->_internal_starting_row() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_starting_row()); - } - - // bool insensitive = 5; - if (this->_internal_insensitive() != 0) { - total_size += 2; - } - - // bool contains = 6; - if (this->_internal_contains() != 0) { - total_size += 2; } - - // bool is_backward = 7; - if (this->_internal_is_backward() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SeekRowRequest::_class_data_ = { - SeekRowRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SeekRowRequest::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.starting_row_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.is_backward_) - + reinterpret_cast(&_impl_.starting_row_)) + sizeof(_impl_.is_backward_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SeekRowRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SeekRowRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SeekRowRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SeekRowRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SeekRowRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // sint64 starting_row = 2 [jstype = JS_STRING]; + if (this_._internal_starting_row() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 2, this_._internal_starting_row(), target); + } + + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.seek_value_, this_._impl_.seek_value_->GetCachedSize(), target, + stream); + } + + // bool insensitive = 5; + if (this_._internal_insensitive() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 5, this_._internal_insensitive(), target); + } + + // bool contains = 6; + if (this_._internal_contains() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 6, this_._internal_contains(), target); + } + + // bool is_backward = 7; + if (this_._internal_is_backward() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 7, this_._internal_is_backward(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SeekRowRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SeekRowRequest::ByteSizeLong(const MessageLite& base) { + const SeekRowRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SeekRowRequest::ByteSizeLong() const { + const SeekRowRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.seek_value_); + } + } + { + // sint64 starting_row = 2 [jstype = JS_STRING]; + if (this_._internal_starting_row() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_starting_row()); + } + // bool insensitive = 5; + if (this_._internal_insensitive() != 0) { + total_size += 2; + } + // bool contains = 6; + if (this_._internal_contains() != 0) { + total_size += 2; + } + // bool is_backward = 7; + if (this_._internal_is_backward() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SeekRowRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -30528,26 +35076,37 @@ void SeekRowRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_seek_value()->::io::deephaven::proto::backplane::grpc::Literal::MergeFrom( - from._internal_seek_value()); + ABSL_DCHECK(from._impl_.seek_value_ != nullptr); + if (_this->_impl_.seek_value_ == nullptr) { + _this->_impl_.seek_value_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.seek_value_); + } else { + _this->_impl_.seek_value_->MergeFrom(*from._impl_.seek_value_); + } } } if (from._internal_starting_row() != 0) { - _this->_internal_set_starting_row(from._internal_starting_row()); + _this->_impl_.starting_row_ = from._impl_.starting_row_; } if (from._internal_insensitive() != 0) { - _this->_internal_set_insensitive(from._internal_insensitive()); + _this->_impl_.insensitive_ = from._impl_.insensitive_; } if (from._internal_contains() != 0) { - _this->_internal_set_contains(from._internal_contains()); + _this->_impl_.contains_ = from._impl_.contains_; } if (from._internal_is_backward() != 0) { - _this->_internal_set_is_backward(from._internal_is_backward()); + _this->_impl_.is_backward_ = from._impl_.is_backward_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -30558,13 +35117,7 @@ void SeekRowRequest::CopyFrom(const SeekRowRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SeekRowRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SeekRowRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SeekRowRequest::InternalSwap(SeekRowRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -30581,9 +35134,7 @@ void SeekRowRequest::InternalSwap(SeekRowRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SeekRowRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[95]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -30592,7 +35143,11 @@ class SeekRowResponse::_Internal { }; SeekRowResponse::SeekRowResponse(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SeekRowResponse) } @@ -30620,24 +35175,34 @@ inline void SeekRowResponse::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SeekRowResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.result_row_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SeekRowResponse::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SeekRowResponse::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SeekRowResponse_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SeekRowResponse::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SeekRowResponse::ByteSizeLong, + &SeekRowResponse::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SeekRowResponse, _impl_._cached_size_), + false, + }, + &SeekRowResponse::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SeekRowResponse::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> SeekRowResponse::_table_ = { { @@ -30650,8 +35215,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> SeekRowResponse::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_SeekRowResponse_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SeekRowResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // sint64 result_row = 1 [jstype = JS_STRING]; {::_pbi::TcParser::FastZ64S1, @@ -30668,55 +35237,74 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> SeekRowResponse::_table_ = { }}, }; -::uint8_t* SeekRowResponse::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // sint64 result_row = 1 [jstype = JS_STRING]; - if (this->_internal_result_row() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 1, this->_internal_result_row(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SeekRowResponse) - return target; -} - -::size_t SeekRowResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SeekRowResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // sint64 result_row = 1 [jstype = JS_STRING]; - if (this->_internal_result_row() != 0) { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_result_row()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SeekRowResponse::_class_data_ = { - SeekRowResponse::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SeekRowResponse::GetClassData() const { - return &_class_data_; + _impl_.result_row_ = ::int64_t{0}; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SeekRowResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SeekRowResponse::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SeekRowResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SeekRowResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SeekRowResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // sint64 result_row = 1 [jstype = JS_STRING]; + if (this_._internal_result_row() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 1, this_._internal_result_row(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SeekRowResponse) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SeekRowResponse::ByteSizeLong(const MessageLite& base) { + const SeekRowResponse& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SeekRowResponse::ByteSizeLong() const { + const SeekRowResponse& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // sint64 result_row = 1 [jstype = JS_STRING]; + if (this_._internal_result_row() != 0) { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_result_row()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SeekRowResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) @@ -30725,7 +35313,7 @@ void SeekRowResponse::MergeImpl(::google::protobuf::Message& to_msg, const ::goo (void) cached_has_bits; if (from._internal_result_row() != 0) { - _this->_internal_set_result_row(from._internal_result_row()); + _this->_impl_.result_row_ = from._impl_.result_row_; } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -30737,13 +35325,7 @@ void SeekRowResponse::CopyFrom(const SeekRowResponse& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SeekRowResponse::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SeekRowResponse::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SeekRowResponse::InternalSwap(SeekRowResponse* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -30751,9 +35333,7 @@ void SeekRowResponse::InternalSwap(SeekRowResponse* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SeekRowResponse::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[96]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -30762,25 +35342,33 @@ class Reference::_Internal { }; Reference::Reference(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Reference) } inline PROTOBUF_NDEBUG_INLINE Reference::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Reference& from_msg) : column_name_(arena, from.column_name_), _cached_size_{0} {} Reference::Reference( ::google::protobuf::Arena* arena, const Reference& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Reference* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Reference) } @@ -30804,24 +35392,34 @@ inline void Reference::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Reference::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Reference) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Reference::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Reference::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Reference_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Reference::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Reference::ByteSizeLong, + &Reference::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Reference, _impl_._cached_size_), + false, + }, + &Reference::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Reference::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 63, 2> Reference::_table_ = { { @@ -30834,8 +35432,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 63, 2> Reference::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Reference_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string column_name = 1; {::_pbi::TcParser::FastUS1, @@ -30855,56 +35457,75 @@ const ::_pbi::TcParseTable<0, 1, 0, 63, 2> Reference::_table_ = { }}, }; -::uint8_t* Reference::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Reference) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Reference.column_name"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Reference) - return target; -} - -::size_t Reference::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Reference) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Reference::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Reference) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 1; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Reference::_class_data_ = { - Reference::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Reference::GetClassData() const { - return &_class_data_; + _impl_.column_name_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Reference::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Reference::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Reference& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Reference::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Reference& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Reference) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Reference.column_name"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Reference) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Reference::ByteSizeLong(const MessageLite& base) { + const Reference& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Reference::ByteSizeLong() const { + const Reference& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Reference) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // string column_name = 1; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Reference::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Reference) @@ -30925,13 +35546,7 @@ void Reference::CopyFrom(const Reference& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Reference::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Reference::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Reference::InternalSwap(Reference* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -30941,26 +35556,28 @@ void Reference::InternalSwap(Reference* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Reference::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[97]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Literal::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_._oneof_case_); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Literal, _impl_._oneof_case_); }; Literal::Literal(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Literal) } inline PROTOBUF_NDEBUG_INLINE Literal::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Literal& from_msg) : value_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -30968,12 +35585,16 @@ inline PROTOBUF_NDEBUG_INLINE Literal::Impl_::Impl_( Literal::Literal( ::google::protobuf::Arena* arena, const Literal& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Literal* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (value_case()) { case VALUE_NOT_SET: break; @@ -31021,7 +35642,7 @@ inline void Literal::SharedDtor() { void Literal::clear_value() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Literal) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (value_case()) { case kStringValue: { _impl_.value_.string_value_.Destroy(); @@ -31051,24 +35672,34 @@ void Literal::clear_value() { } -PROTOBUF_NOINLINE void Literal::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Literal) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_value(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Literal::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Literal::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Literal_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Literal::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Literal::ByteSizeLong, + &Literal::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Literal, _impl_._cached_size_), + false, + }, + &Literal::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Literal::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 5, 0, 62, 2> Literal::_table_ = { { @@ -31081,8 +35712,12 @@ const ::_pbi::TcParseTable<0, 5, 0, 62, 2> Literal::_table_ = { 5, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Literal_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Literal>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -31112,140 +35747,172 @@ const ::_pbi::TcParseTable<0, 5, 0, 62, 2> Literal::_table_ = { }}, }; -::uint8_t* Literal::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Literal) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (value_case()) { - case kStringValue: { - const std::string& _s = this->_internal_string_value(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Literal.string_value"); - target = stream->WriteStringMaybeAliased(1, _s, target); - break; - } - case kDoubleValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteDoubleToArray( - 2, this->_internal_double_value(), target); - break; - } - case kBoolValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 3, this->_internal_bool_value(), target); - break; - } - case kLongValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 4, this->_internal_long_value(), target); - break; - } - case kNanoTimeValue: { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteSInt64ToArray( - 5, this->_internal_nano_time_value(), target); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Literal) - return target; -} - -::size_t Literal::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Literal) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Literal::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Literal) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (value_case()) { - // string string_value = 1; - case kStringValue: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_string_value()); - break; - } - // double double_value = 2; - case kDoubleValue: { - total_size += 9; - break; - } - // bool bool_value = 3; - case kBoolValue: { - total_size += 2; - break; - } - // sint64 long_value = 4 [jstype = JS_STRING]; - case kLongValue: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_long_value()); - break; - } - // sint64 nano_time_value = 5 [jstype = JS_STRING]; - case kNanoTimeValue: { - total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( - this->_internal_nano_time_value()); - break; - } - case VALUE_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Literal::_class_data_ = { - Literal::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Literal::GetClassData() const { - return &_class_data_; + clear_value(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Literal::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Literal::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Literal& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Literal::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Literal& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Literal) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.value_case()) { + case kStringValue: { + const std::string& _s = this_._internal_string_value(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.Literal.string_value"); + target = stream->WriteStringMaybeAliased(1, _s, target); + break; + } + case kDoubleValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteDoubleToArray( + 2, this_._internal_double_value(), target); + break; + } + case kBoolValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 3, this_._internal_bool_value(), target); + break; + } + case kLongValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 4, this_._internal_long_value(), target); + break; + } + case kNanoTimeValue: { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt64ToArray( + 5, this_._internal_nano_time_value(), target); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Literal) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Literal::ByteSizeLong(const MessageLite& base) { + const Literal& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Literal::ByteSizeLong() const { + const Literal& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Literal) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.value_case()) { + // string string_value = 1; + case kStringValue: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_string_value()); + break; + } + // double double_value = 2; + case kDoubleValue: { + total_size += 9; + break; + } + // bool bool_value = 3; + case kBoolValue: { + total_size += 2; + break; + } + // sint64 long_value = 4 [jstype = JS_STRING]; + case kLongValue: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_long_value()); + break; + } + // sint64 nano_time_value = 5 [jstype = JS_STRING]; + case kNanoTimeValue: { + total_size += ::_pbi::WireFormatLite::SInt64SizePlusOne( + this_._internal_nano_time_value()); + break; + } + case VALUE_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Literal::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Literal) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.value_case()) { - case kStringValue: { - _this->_internal_set_string_value(from._internal_string_value()); - break; - } - case kDoubleValue: { - _this->_internal_set_double_value(from._internal_double_value()); - break; - } - case kBoolValue: { - _this->_internal_set_bool_value(from._internal_bool_value()); - break; - } - case kLongValue: { - _this->_internal_set_long_value(from._internal_long_value()); - break; - } - case kNanoTimeValue: { - _this->_internal_set_nano_time_value(from._internal_nano_time_value()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_value(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case VALUE_NOT_SET: { - break; + + switch (oneof_from_case) { + case kStringValue: { + if (oneof_needs_init) { + _this->_impl_.value_.string_value_.InitDefault(); + } + _this->_impl_.value_.string_value_.Set(from._internal_string_value(), arena); + break; + } + case kDoubleValue: { + _this->_impl_.value_.double_value_ = from._impl_.value_.double_value_; + break; + } + case kBoolValue: { + _this->_impl_.value_.bool_value_ = from._impl_.value_.bool_value_; + break; + } + case kLongValue: { + _this->_impl_.value_.long_value_ = from._impl_.value_.long_value_; + break; + } + case kNanoTimeValue: { + _this->_impl_.value_.nano_time_value_ = from._impl_.value_.nano_time_value_; + break; + } + case VALUE_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -31258,13 +35925,7 @@ void Literal::CopyFrom(const Literal& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Literal::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Literal::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Literal::InternalSwap(Literal* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -31273,26 +35934,16 @@ void Literal::InternalSwap(Literal* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Literal::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[98]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Value::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Reference& reference(const Value* msg); - static const ::io::deephaven::proto::backplane::grpc::Literal& literal(const Value* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Value, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Reference& Value::_Internal::reference(const Value* msg) { - return *msg->_impl_.data_.reference_; -} -const ::io::deephaven::proto::backplane::grpc::Literal& Value::_Internal::literal(const Value* msg) { - return *msg->_impl_.data_.literal_; -} void Value::set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* reference) { ::google::protobuf::Arena* message_arena = GetArena(); clear_data(); @@ -31320,13 +35971,17 @@ void Value::set_allocated_literal(::io::deephaven::proto::backplane::grpc::Liter // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Value.literal) } Value::Value(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Value) } inline PROTOBUF_NDEBUG_INLINE Value::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Value& from_msg) : data_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -31334,20 +35989,24 @@ inline PROTOBUF_NDEBUG_INLINE Value::Impl_::Impl_( Value::Value( ::google::protobuf::Arena* arena, const Value& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Value* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (data_case()) { case DATA_NOT_SET: break; case kReference: - _impl_.data_.reference_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.data_.reference_); + _impl_.data_.reference_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.data_.reference_); break; case kLiteral: - _impl_.data_.literal_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.data_.literal_); + _impl_.data_.literal_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.data_.literal_); break; } @@ -31378,17 +36037,21 @@ inline void Value::SharedDtor() { void Value::clear_data() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Value) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (data_case()) { case kReference: { if (GetArena() == nullptr) { delete _impl_.data_.reference_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.reference_); } break; } case kLiteral: { if (GetArena() == nullptr) { delete _impl_.data_.literal_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.literal_); } break; } @@ -31400,24 +36063,34 @@ void Value::clear_data() { } -PROTOBUF_NOINLINE void Value::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Value) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_data(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Value::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Value::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Value_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Value::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Value::ByteSizeLong, + &Value::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Value, _impl_._cached_size_), + false, + }, + &Value::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Value::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 2, 2, 0, 2> Value::_table_ = { { @@ -31430,8 +36103,12 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> Value::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_Value_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -31450,95 +36127,132 @@ const ::_pbi::TcParseTable<0, 2, 2, 0, 2> Value::_table_ = { }}, }; -::uint8_t* Value::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Value) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (data_case()) { - case kReference: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reference(this), - _Internal::reference(this).GetCachedSize(), target, stream); - break; - } - case kLiteral: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::literal(this), - _Internal::literal(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Value) - return target; -} - -::size_t Value::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Value) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Value::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Value) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (data_case()) { - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - case kReference: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.reference_); - break; - } - // .io.deephaven.proto.backplane.grpc.Literal literal = 2; - case kLiteral: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.literal_); - break; - } - case DATA_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Value::_class_data_ = { - Value::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Value::GetClassData() const { - return &_class_data_; + clear_data(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Value::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Value::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Value& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Value::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Value& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Value) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.data_case()) { + case kReference: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.data_.reference_, this_._impl_.data_.reference_->GetCachedSize(), target, + stream); + break; + } + case kLiteral: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.data_.literal_, this_._impl_.data_.literal_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Value) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Value::ByteSizeLong(const MessageLite& base) { + const Value& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Value::ByteSizeLong() const { + const Value& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Value) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.data_case()) { + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + case kReference: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.reference_); + break; + } + // .io.deephaven.proto.backplane.grpc.Literal literal = 2; + case kLiteral: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.literal_); + break; + } + case DATA_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Value::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Value) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.data_case()) { - case kReference: { - _this->_internal_mutable_reference()->::io::deephaven::proto::backplane::grpc::Reference::MergeFrom( - from._internal_reference()); - break; - } - case kLiteral: { - _this->_internal_mutable_literal()->::io::deephaven::proto::backplane::grpc::Literal::MergeFrom( - from._internal_literal()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_data(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case DATA_NOT_SET: { - break; + + switch (oneof_from_case) { + case kReference: { + if (oneof_needs_init) { + _this->_impl_.data_.reference_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.data_.reference_); + } else { + _this->_impl_.data_.reference_->MergeFrom(from._internal_reference()); + } + break; + } + case kLiteral: { + if (oneof_needs_init) { + _this->_impl_.data_.literal_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.data_.literal_); + } else { + _this->_impl_.data_.literal_->MergeFrom(from._internal_literal()); + } + break; + } + case DATA_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -31551,13 +36265,7 @@ void Value::CopyFrom(const Value& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Value::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Value::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Value::InternalSwap(Value* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -31566,58 +36274,16 @@ void Value::InternalSwap(Value* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Value::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[99]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class Condition::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::AndCondition& and_(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::OrCondition& or_(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::NotCondition& not_(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::CompareCondition& compare(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::InCondition& in(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::InvokeCondition& invoke(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::IsNullCondition& is_null(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::MatchesCondition& matches(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::ContainsCondition& contains(const Condition* msg); - static const ::io::deephaven::proto::backplane::grpc::SearchCondition& search(const Condition* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Condition, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::AndCondition& Condition::_Internal::and_(const Condition* msg) { - return *msg->_impl_.data_.and__; -} -const ::io::deephaven::proto::backplane::grpc::OrCondition& Condition::_Internal::or_(const Condition* msg) { - return *msg->_impl_.data_.or__; -} -const ::io::deephaven::proto::backplane::grpc::NotCondition& Condition::_Internal::not_(const Condition* msg) { - return *msg->_impl_.data_.not__; -} -const ::io::deephaven::proto::backplane::grpc::CompareCondition& Condition::_Internal::compare(const Condition* msg) { - return *msg->_impl_.data_.compare_; -} -const ::io::deephaven::proto::backplane::grpc::InCondition& Condition::_Internal::in(const Condition* msg) { - return *msg->_impl_.data_.in_; -} -const ::io::deephaven::proto::backplane::grpc::InvokeCondition& Condition::_Internal::invoke(const Condition* msg) { - return *msg->_impl_.data_.invoke_; -} -const ::io::deephaven::proto::backplane::grpc::IsNullCondition& Condition::_Internal::is_null(const Condition* msg) { - return *msg->_impl_.data_.is_null_; -} -const ::io::deephaven::proto::backplane::grpc::MatchesCondition& Condition::_Internal::matches(const Condition* msg) { - return *msg->_impl_.data_.matches_; -} -const ::io::deephaven::proto::backplane::grpc::ContainsCondition& Condition::_Internal::contains(const Condition* msg) { - return *msg->_impl_.data_.contains_; -} -const ::io::deephaven::proto::backplane::grpc::SearchCondition& Condition::_Internal::search(const Condition* msg) { - return *msg->_impl_.data_.search_; -} void Condition::set_allocated_and_(::io::deephaven::proto::backplane::grpc::AndCondition* and_) { ::google::protobuf::Arena* message_arena = GetArena(); clear_data(); @@ -31749,13 +36415,17 @@ void Condition::set_allocated_search(::io::deephaven::proto::backplane::grpc::Se // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.search) } Condition::Condition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Condition) } inline PROTOBUF_NDEBUG_INLINE Condition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Condition& from_msg) : data_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -31763,44 +36433,48 @@ inline PROTOBUF_NDEBUG_INLINE Condition::Impl_::Impl_( Condition::Condition( ::google::protobuf::Arena* arena, const Condition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Condition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (data_case()) { case DATA_NOT_SET: break; case kAnd: - _impl_.data_.and__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AndCondition>(arena, *from._impl_.data_.and__); + _impl_.data_.and__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AndCondition>(arena, *from._impl_.data_.and__); break; case kOr: - _impl_.data_.or__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::OrCondition>(arena, *from._impl_.data_.or__); + _impl_.data_.or__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::OrCondition>(arena, *from._impl_.data_.or__); break; case kNot: - _impl_.data_.not__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::NotCondition>(arena, *from._impl_.data_.not__); + _impl_.data_.not__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NotCondition>(arena, *from._impl_.data_.not__); break; case kCompare: - _impl_.data_.compare_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CompareCondition>(arena, *from._impl_.data_.compare_); + _impl_.data_.compare_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CompareCondition>(arena, *from._impl_.data_.compare_); break; case kIn: - _impl_.data_.in_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::InCondition>(arena, *from._impl_.data_.in_); + _impl_.data_.in_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::InCondition>(arena, *from._impl_.data_.in_); break; case kInvoke: - _impl_.data_.invoke_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::InvokeCondition>(arena, *from._impl_.data_.invoke_); + _impl_.data_.invoke_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::InvokeCondition>(arena, *from._impl_.data_.invoke_); break; case kIsNull: - _impl_.data_.is_null_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::IsNullCondition>(arena, *from._impl_.data_.is_null_); + _impl_.data_.is_null_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::IsNullCondition>(arena, *from._impl_.data_.is_null_); break; case kMatches: - _impl_.data_.matches_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MatchesCondition>(arena, *from._impl_.data_.matches_); + _impl_.data_.matches_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MatchesCondition>(arena, *from._impl_.data_.matches_); break; case kContains: - _impl_.data_.contains_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ContainsCondition>(arena, *from._impl_.data_.contains_); + _impl_.data_.contains_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ContainsCondition>(arena, *from._impl_.data_.contains_); break; case kSearch: - _impl_.data_.search_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SearchCondition>(arena, *from._impl_.data_.search_); + _impl_.data_.search_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SearchCondition>(arena, *from._impl_.data_.search_); break; } @@ -31831,65 +36505,85 @@ inline void Condition::SharedDtor() { void Condition::clear_data() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Condition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (data_case()) { case kAnd: { if (GetArena() == nullptr) { delete _impl_.data_.and__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.and__); } break; } case kOr: { if (GetArena() == nullptr) { delete _impl_.data_.or__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.or__); } break; } case kNot: { if (GetArena() == nullptr) { delete _impl_.data_.not__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.not__); } break; } case kCompare: { if (GetArena() == nullptr) { delete _impl_.data_.compare_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.compare_); } break; } case kIn: { if (GetArena() == nullptr) { delete _impl_.data_.in_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.in_); } break; } case kInvoke: { if (GetArena() == nullptr) { delete _impl_.data_.invoke_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.invoke_); } break; } case kIsNull: { if (GetArena() == nullptr) { delete _impl_.data_.is_null_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.is_null_); } break; } case kMatches: { if (GetArena() == nullptr) { delete _impl_.data_.matches_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.matches_); } break; } case kContains: { if (GetArena() == nullptr) { delete _impl_.data_.contains_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.contains_); } break; } case kSearch: { if (GetArena() == nullptr) { delete _impl_.data_.search_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.search_); } break; } @@ -31901,24 +36595,34 @@ void Condition::clear_data() { } -PROTOBUF_NOINLINE void Condition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Condition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_data(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Condition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Condition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Condition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Condition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Condition::ByteSizeLong, + &Condition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Condition, _impl_._cached_size_), + false, + }, + &Condition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Condition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 10, 10, 0, 2> Condition::_table_ = { { @@ -31931,8 +36635,12 @@ const ::_pbi::TcParseTable<0, 10, 10, 0, 2> Condition::_table_ = { 10, // num_field_entries 10, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_Condition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -31983,231 +36691,300 @@ const ::_pbi::TcParseTable<0, 10, 10, 0, 2> Condition::_table_ = { }}, }; -::uint8_t* Condition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Condition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (data_case()) { - case kAnd: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::and_(this), - _Internal::and_(this).GetCachedSize(), target, stream); - break; - } - case kOr: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::or_(this), - _Internal::or_(this).GetCachedSize(), target, stream); - break; - } - case kNot: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::not_(this), - _Internal::not_(this).GetCachedSize(), target, stream); - break; - } - case kCompare: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::compare(this), - _Internal::compare(this).GetCachedSize(), target, stream); - break; - } - case kIn: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::in(this), - _Internal::in(this).GetCachedSize(), target, stream); - break; - } - case kInvoke: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::invoke(this), - _Internal::invoke(this).GetCachedSize(), target, stream); - break; - } - case kIsNull: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::is_null(this), - _Internal::is_null(this).GetCachedSize(), target, stream); - break; - } - case kMatches: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::matches(this), - _Internal::matches(this).GetCachedSize(), target, stream); - break; - } - case kContains: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::contains(this), - _Internal::contains(this).GetCachedSize(), target, stream); - break; - } - case kSearch: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 10, _Internal::search(this), - _Internal::search(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Condition) - return target; -} - -::size_t Condition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Condition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Condition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Condition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (data_case()) { - // .io.deephaven.proto.backplane.grpc.AndCondition and = 1; - case kAnd: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.and__); - break; - } - // .io.deephaven.proto.backplane.grpc.OrCondition or = 2; - case kOr: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.or__); - break; - } - // .io.deephaven.proto.backplane.grpc.NotCondition not = 3; - case kNot: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.not__); - break; - } - // .io.deephaven.proto.backplane.grpc.CompareCondition compare = 4; - case kCompare: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.compare_); - break; - } - // .io.deephaven.proto.backplane.grpc.InCondition in = 5; - case kIn: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.in_); - break; - } - // .io.deephaven.proto.backplane.grpc.InvokeCondition invoke = 6; - case kInvoke: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.invoke_); - break; - } - // .io.deephaven.proto.backplane.grpc.IsNullCondition is_null = 7; - case kIsNull: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.is_null_); - break; - } - // .io.deephaven.proto.backplane.grpc.MatchesCondition matches = 8; - case kMatches: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.matches_); - break; - } - // .io.deephaven.proto.backplane.grpc.ContainsCondition contains = 9; - case kContains: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.contains_); - break; - } - // .io.deephaven.proto.backplane.grpc.SearchCondition search = 10; - case kSearch: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.data_.search_); - break; - } - case DATA_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Condition::_class_data_ = { - Condition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Condition::GetClassData() const { - return &_class_data_; + clear_data(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Condition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Condition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Condition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Condition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Condition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Condition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.data_case()) { + case kAnd: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.data_.and__, this_._impl_.data_.and__->GetCachedSize(), target, + stream); + break; + } + case kOr: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.data_.or__, this_._impl_.data_.or__->GetCachedSize(), target, + stream); + break; + } + case kNot: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.data_.not__, this_._impl_.data_.not__->GetCachedSize(), target, + stream); + break; + } + case kCompare: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.data_.compare_, this_._impl_.data_.compare_->GetCachedSize(), target, + stream); + break; + } + case kIn: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.data_.in_, this_._impl_.data_.in_->GetCachedSize(), target, + stream); + break; + } + case kInvoke: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.data_.invoke_, this_._impl_.data_.invoke_->GetCachedSize(), target, + stream); + break; + } + case kIsNull: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.data_.is_null_, this_._impl_.data_.is_null_->GetCachedSize(), target, + stream); + break; + } + case kMatches: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.data_.matches_, this_._impl_.data_.matches_->GetCachedSize(), target, + stream); + break; + } + case kContains: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.data_.contains_, this_._impl_.data_.contains_->GetCachedSize(), target, + stream); + break; + } + case kSearch: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, *this_._impl_.data_.search_, this_._impl_.data_.search_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Condition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Condition::ByteSizeLong(const MessageLite& base) { + const Condition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Condition::ByteSizeLong() const { + const Condition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Condition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.data_case()) { + // .io.deephaven.proto.backplane.grpc.AndCondition and = 1; + case kAnd: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.and__); + break; + } + // .io.deephaven.proto.backplane.grpc.OrCondition or = 2; + case kOr: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.or__); + break; + } + // .io.deephaven.proto.backplane.grpc.NotCondition not = 3; + case kNot: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.not__); + break; + } + // .io.deephaven.proto.backplane.grpc.CompareCondition compare = 4; + case kCompare: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.compare_); + break; + } + // .io.deephaven.proto.backplane.grpc.InCondition in = 5; + case kIn: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.in_); + break; + } + // .io.deephaven.proto.backplane.grpc.InvokeCondition invoke = 6; + case kInvoke: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.invoke_); + break; + } + // .io.deephaven.proto.backplane.grpc.IsNullCondition is_null = 7; + case kIsNull: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.is_null_); + break; + } + // .io.deephaven.proto.backplane.grpc.MatchesCondition matches = 8; + case kMatches: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.matches_); + break; + } + // .io.deephaven.proto.backplane.grpc.ContainsCondition contains = 9; + case kContains: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.contains_); + break; + } + // .io.deephaven.proto.backplane.grpc.SearchCondition search = 10; + case kSearch: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.data_.search_); + break; + } + case DATA_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Condition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Condition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.data_case()) { - case kAnd: { - _this->_internal_mutable_and_()->::io::deephaven::proto::backplane::grpc::AndCondition::MergeFrom( - from._internal_and_()); - break; - } - case kOr: { - _this->_internal_mutable_or_()->::io::deephaven::proto::backplane::grpc::OrCondition::MergeFrom( - from._internal_or_()); - break; - } - case kNot: { - _this->_internal_mutable_not_()->::io::deephaven::proto::backplane::grpc::NotCondition::MergeFrom( - from._internal_not_()); - break; - } - case kCompare: { - _this->_internal_mutable_compare()->::io::deephaven::proto::backplane::grpc::CompareCondition::MergeFrom( - from._internal_compare()); - break; - } - case kIn: { - _this->_internal_mutable_in()->::io::deephaven::proto::backplane::grpc::InCondition::MergeFrom( - from._internal_in()); - break; - } - case kInvoke: { - _this->_internal_mutable_invoke()->::io::deephaven::proto::backplane::grpc::InvokeCondition::MergeFrom( - from._internal_invoke()); - break; - } - case kIsNull: { - _this->_internal_mutable_is_null()->::io::deephaven::proto::backplane::grpc::IsNullCondition::MergeFrom( - from._internal_is_null()); - break; - } - case kMatches: { - _this->_internal_mutable_matches()->::io::deephaven::proto::backplane::grpc::MatchesCondition::MergeFrom( - from._internal_matches()); - break; - } - case kContains: { - _this->_internal_mutable_contains()->::io::deephaven::proto::backplane::grpc::ContainsCondition::MergeFrom( - from._internal_contains()); - break; - } - case kSearch: { - _this->_internal_mutable_search()->::io::deephaven::proto::backplane::grpc::SearchCondition::MergeFrom( - from._internal_search()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_data(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case DATA_NOT_SET: { - break; + + switch (oneof_from_case) { + case kAnd: { + if (oneof_needs_init) { + _this->_impl_.data_.and__ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AndCondition>(arena, *from._impl_.data_.and__); + } else { + _this->_impl_.data_.and__->MergeFrom(from._internal_and_()); + } + break; + } + case kOr: { + if (oneof_needs_init) { + _this->_impl_.data_.or__ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::OrCondition>(arena, *from._impl_.data_.or__); + } else { + _this->_impl_.data_.or__->MergeFrom(from._internal_or_()); + } + break; + } + case kNot: { + if (oneof_needs_init) { + _this->_impl_.data_.not__ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NotCondition>(arena, *from._impl_.data_.not__); + } else { + _this->_impl_.data_.not__->MergeFrom(from._internal_not_()); + } + break; + } + case kCompare: { + if (oneof_needs_init) { + _this->_impl_.data_.compare_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CompareCondition>(arena, *from._impl_.data_.compare_); + } else { + _this->_impl_.data_.compare_->MergeFrom(from._internal_compare()); + } + break; + } + case kIn: { + if (oneof_needs_init) { + _this->_impl_.data_.in_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::InCondition>(arena, *from._impl_.data_.in_); + } else { + _this->_impl_.data_.in_->MergeFrom(from._internal_in()); + } + break; + } + case kInvoke: { + if (oneof_needs_init) { + _this->_impl_.data_.invoke_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::InvokeCondition>(arena, *from._impl_.data_.invoke_); + } else { + _this->_impl_.data_.invoke_->MergeFrom(from._internal_invoke()); + } + break; + } + case kIsNull: { + if (oneof_needs_init) { + _this->_impl_.data_.is_null_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::IsNullCondition>(arena, *from._impl_.data_.is_null_); + } else { + _this->_impl_.data_.is_null_->MergeFrom(from._internal_is_null()); + } + break; + } + case kMatches: { + if (oneof_needs_init) { + _this->_impl_.data_.matches_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MatchesCondition>(arena, *from._impl_.data_.matches_); + } else { + _this->_impl_.data_.matches_->MergeFrom(from._internal_matches()); + } + break; + } + case kContains: { + if (oneof_needs_init) { + _this->_impl_.data_.contains_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ContainsCondition>(arena, *from._impl_.data_.contains_); + } else { + _this->_impl_.data_.contains_->MergeFrom(from._internal_contains()); + } + break; + } + case kSearch: { + if (oneof_needs_init) { + _this->_impl_.data_.search_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SearchCondition>(arena, *from._impl_.data_.search_); + } else { + _this->_impl_.data_.search_->MergeFrom(from._internal_search()); + } + break; + } + case DATA_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -32220,13 +36997,7 @@ void Condition::CopyFrom(const Condition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Condition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Condition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Condition::InternalSwap(Condition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -32235,9 +37006,7 @@ void Condition::InternalSwap(Condition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Condition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[100]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -32246,25 +37015,33 @@ class AndCondition::_Internal { }; AndCondition::AndCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.AndCondition) } inline PROTOBUF_NDEBUG_INLINE AndCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::AndCondition& from_msg) : filters_{visibility, arena, from.filters_}, _cached_size_{0} {} AndCondition::AndCondition( ::google::protobuf::Arena* arena, const AndCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE AndCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AndCondition) } @@ -32287,24 +37064,34 @@ inline void AndCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void AndCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AndCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.filters_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* AndCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + AndCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_AndCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &AndCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &AndCondition::ByteSizeLong, + &AndCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(AndCondition, _impl_._cached_size_), + false, + }, + &AndCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* AndCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AndCondition::_table_ = { { @@ -32317,8 +37104,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AndCondition::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_AndCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AndCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; {::_pbi::TcParser::FastMtR1, @@ -32335,56 +37126,81 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> AndCondition::_table_ = { }}, }; -::uint8_t* AndCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AndCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_filters_size()); i < n; i++) { - const auto& repfield = this->_internal_filters().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AndCondition) - return target; -} - -::size_t AndCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AndCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void AndCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.AndCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - total_size += 1UL * this->_internal_filters_size(); - for (const auto& msg : this->_internal_filters()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData AndCondition::_class_data_ = { - AndCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* AndCondition::GetClassData() const { - return &_class_data_; + _impl_.filters_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void AndCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* AndCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const AndCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* AndCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const AndCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.AndCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_filters_size()); + i < n; i++) { + const auto& repfield = this_._internal_filters().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.AndCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t AndCondition::ByteSizeLong(const MessageLite& base) { + const AndCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t AndCondition::ByteSizeLong() const { + const AndCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.AndCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; + { + total_size += 1UL * this_._internal_filters_size(); + for (const auto& msg : this_._internal_filters()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void AndCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.AndCondition) @@ -32404,13 +37220,7 @@ void AndCondition::CopyFrom(const AndCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool AndCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* AndCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void AndCondition::InternalSwap(AndCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -32418,9 +37228,7 @@ void AndCondition::InternalSwap(AndCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata AndCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[101]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -32429,25 +37237,33 @@ class OrCondition::_Internal { }; OrCondition::OrCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.OrCondition) } inline PROTOBUF_NDEBUG_INLINE OrCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::OrCondition& from_msg) : filters_{visibility, arena, from.filters_}, _cached_size_{0} {} OrCondition::OrCondition( ::google::protobuf::Arena* arena, const OrCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE OrCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.OrCondition) } @@ -32470,24 +37286,34 @@ inline void OrCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void OrCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.OrCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.filters_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + OrCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_OrCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &OrCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &OrCondition::ByteSizeLong, + &OrCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(OrCondition, _impl_._cached_size_), + false, + }, + &OrCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* OrCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - -const char* OrCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; -} - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> OrCondition::_table_ = { { @@ -32500,8 +37326,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> OrCondition::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_OrCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::OrCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; {::_pbi::TcParser::FastMtR1, @@ -32518,56 +37348,81 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> OrCondition::_table_ = { }}, }; -::uint8_t* OrCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.OrCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_filters_size()); i < n; i++) { - const auto& repfield = this->_internal_filters().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.OrCondition) - return target; -} - -::size_t OrCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.OrCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void OrCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.OrCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - total_size += 1UL * this->_internal_filters_size(); - for (const auto& msg : this->_internal_filters()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData OrCondition::_class_data_ = { - OrCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* OrCondition::GetClassData() const { - return &_class_data_; + _impl_.filters_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void OrCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* OrCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const OrCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* OrCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const OrCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.OrCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_filters_size()); + i < n; i++) { + const auto& repfield = this_._internal_filters().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.OrCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t OrCondition::ByteSizeLong(const MessageLite& base) { + const OrCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t OrCondition::ByteSizeLong() const { + const OrCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.OrCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; + { + total_size += 1UL * this_._internal_filters_size(); + for (const auto& msg : this_._internal_filters()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void OrCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.OrCondition) @@ -32587,13 +37442,7 @@ void OrCondition::CopyFrom(const OrCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool OrCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* OrCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void OrCondition::InternalSwap(OrCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -32601,50 +37450,50 @@ void OrCondition::InternalSwap(OrCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata OrCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[102]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class NotCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(NotCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Condition& filter(const NotCondition* msg); - static void set_has_filter(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(NotCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Condition& NotCondition::_Internal::filter(const NotCondition* msg) { - return *msg->_impl_.filter_; -} NotCondition::NotCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.NotCondition) } inline PROTOBUF_NDEBUG_INLINE NotCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::NotCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} NotCondition::NotCondition( ::google::protobuf::Arena* arena, const NotCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE NotCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.filter_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Condition>(arena, *from._impl_.filter_) - : nullptr; + _impl_.filter_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Condition>( + arena, *from._impl_.filter_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.NotCondition) } @@ -32668,29 +37517,34 @@ inline void NotCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void NotCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.NotCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.filter_ != nullptr); - _impl_.filter_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* NotCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + NotCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_NotCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &NotCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &NotCondition::ByteSizeLong, + &NotCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(NotCondition, _impl_._cached_size_), + false, + }, + &NotCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* NotCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> NotCondition::_table_ = { { @@ -32703,8 +37557,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> NotCondition::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_NotCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::NotCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Condition filter = 1; {::_pbi::TcParser::FastMtS1, @@ -32721,68 +37579,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> NotCondition::_table_ = { }}, }; -::uint8_t* NotCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.NotCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Condition filter = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::filter(this), - _Internal::filter(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.NotCondition) - return target; -} - -::size_t NotCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.NotCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void NotCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.NotCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Condition filter = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.filter_); + ABSL_DCHECK(_impl_.filter_ != nullptr); + _impl_.filter_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData NotCondition::_class_data_ = { - NotCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* NotCondition::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void NotCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* NotCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const NotCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* NotCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const NotCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.NotCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Condition filter = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.filter_, this_._impl_.filter_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.NotCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t NotCondition::ByteSizeLong(const MessageLite& base) { + const NotCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t NotCondition::ByteSizeLong() const { + const NotCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.NotCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.Condition filter = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.filter_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void NotCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.NotCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_filter()->::io::deephaven::proto::backplane::grpc::Condition::MergeFrom( - from._internal_filter()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.filter_ != nullptr); + if (_this->_impl_.filter_ == nullptr) { + _this->_impl_.filter_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Condition>(arena, *from._impl_.filter_); + } else { + _this->_impl_.filter_->MergeFrom(*from._impl_.filter_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -32793,13 +37684,7 @@ void NotCondition::CopyFrom(const NotCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool NotCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* NotCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void NotCondition::InternalSwap(NotCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -32808,60 +37693,53 @@ void NotCondition::InternalSwap(NotCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata NotCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[103]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CompareCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Value& lhs(const CompareCondition* msg); - static void set_has_lhs(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::Value& rhs(const CompareCondition* msg); - static void set_has_rhs(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::_Internal::lhs(const CompareCondition* msg) { - return *msg->_impl_.lhs_; -} -const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::_Internal::rhs(const CompareCondition* msg) { - return *msg->_impl_.rhs_; -} CompareCondition::CompareCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CompareCondition) } inline PROTOBUF_NDEBUG_INLINE CompareCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CompareCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} CompareCondition::CompareCondition( ::google::protobuf::Arena* arena, const CompareCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CompareCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.lhs_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.lhs_) - : nullptr; - _impl_.rhs_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.rhs_) - : nullptr; + _impl_.lhs_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>( + arena, *from._impl_.lhs_) + : nullptr; + _impl_.rhs_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>( + arena, *from._impl_.rhs_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, operation_), reinterpret_cast(&from._impl_) + @@ -32898,38 +37776,34 @@ inline void CompareCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CompareCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CompareCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.lhs_ != nullptr); - _impl_.lhs_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.rhs_ != nullptr); - _impl_.rhs_->Clear(); - } - } - ::memset(&_impl_.operation_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.case_sensitivity_) - - reinterpret_cast(&_impl_.operation_)) + sizeof(_impl_.case_sensitivity_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CompareCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CompareCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CompareCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CompareCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CompareCondition::ByteSizeLong, + &CompareCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_._cached_size_), + false, + }, + &CompareCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CompareCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 0, 2> CompareCondition::_table_ = { { @@ -32942,8 +37816,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 0, 2> CompareCondition::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CompareCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CompareCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Value rhs = 4; {::_pbi::TcParser::FastMtS1, @@ -32979,100 +37857,132 @@ const ::_pbi::TcParseTable<2, 4, 2, 0, 2> CompareCondition::_table_ = { }}, }; -::uint8_t* CompareCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CompareCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; - if (this->_internal_operation() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 1, this->_internal_operation(), target); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; - if (this->_internal_case_sensitivity() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_case_sensitivity(), target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Value lhs = 3; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::lhs(this), - _Internal::lhs(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.Value rhs = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::rhs(this), - _Internal::rhs(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CompareCondition) - return target; -} - -::size_t CompareCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CompareCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CompareCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CompareCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Value lhs = 3; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.lhs_); + ABSL_DCHECK(_impl_.lhs_ != nullptr); + _impl_.lhs_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.Value rhs = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.rhs_); + ABSL_DCHECK(_impl_.rhs_ != nullptr); + _impl_.rhs_->Clear(); } - - } - // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; - if (this->_internal_operation() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_operation()); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; - if (this->_internal_case_sensitivity() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_case_sensitivity()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CompareCondition::_class_data_ = { - CompareCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CompareCondition::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.operation_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.case_sensitivity_) - + reinterpret_cast(&_impl_.operation_)) + sizeof(_impl_.case_sensitivity_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CompareCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CompareCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CompareCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CompareCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CompareCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CompareCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; + if (this_._internal_operation() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 1, this_._internal_operation(), target); + } + + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; + if (this_._internal_case_sensitivity() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this_._internal_case_sensitivity(), target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Value lhs = 3; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.lhs_, this_._impl_.lhs_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.Value rhs = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.rhs_, this_._impl_.rhs_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CompareCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CompareCondition::ByteSizeLong(const MessageLite& base) { + const CompareCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CompareCondition::ByteSizeLong() const { + const CompareCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CompareCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Value lhs = 3; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.lhs_); + } + // .io.deephaven.proto.backplane.grpc.Value rhs = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.rhs_); + } + } + { + // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; + if (this_._internal_operation() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_operation()); + } + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; + if (this_._internal_case_sensitivity() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_case_sensitivity()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CompareCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CompareCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -33081,20 +37991,31 @@ void CompareCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::go cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_lhs()->::io::deephaven::proto::backplane::grpc::Value::MergeFrom( - from._internal_lhs()); + ABSL_DCHECK(from._impl_.lhs_ != nullptr); + if (_this->_impl_.lhs_ == nullptr) { + _this->_impl_.lhs_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.lhs_); + } else { + _this->_impl_.lhs_->MergeFrom(*from._impl_.lhs_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_rhs()->::io::deephaven::proto::backplane::grpc::Value::MergeFrom( - from._internal_rhs()); + ABSL_DCHECK(from._impl_.rhs_ != nullptr); + if (_this->_impl_.rhs_ == nullptr) { + _this->_impl_.rhs_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.rhs_); + } else { + _this->_impl_.rhs_->MergeFrom(*from._impl_.rhs_); + } } } if (from._internal_operation() != 0) { - _this->_internal_set_operation(from._internal_operation()); + _this->_impl_.operation_ = from._impl_.operation_; } if (from._internal_case_sensitivity() != 0) { - _this->_internal_set_case_sensitivity(from._internal_case_sensitivity()); + _this->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -33105,13 +38026,7 @@ void CompareCondition::CopyFrom(const CompareCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CompareCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CompareCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CompareCondition::InternalSwap(CompareCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -33125,34 +38040,30 @@ void CompareCondition::InternalSwap(CompareCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata CompareCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[104]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class InCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(InCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Value& target(const InCondition* msg); - static void set_has_target(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(InCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Value& InCondition::_Internal::target(const InCondition* msg) { - return *msg->_impl_.target_; -} InCondition::InCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.InCondition) } inline PROTOBUF_NDEBUG_INLINE InCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::InCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, candidates_{visibility, arena, from.candidates_} {} @@ -33160,16 +38071,20 @@ inline PROTOBUF_NDEBUG_INLINE InCondition::Impl_::Impl_( InCondition::InCondition( ::google::protobuf::Arena* arena, const InCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE InCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.target_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.target_) - : nullptr; + _impl_.target_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>( + arena, *from._impl_.target_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, case_sensitivity_), reinterpret_cast(&from._impl_) + @@ -33206,33 +38121,34 @@ inline void InCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void InCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.InCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.candidates_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.target_ != nullptr); - _impl_.target_->Clear(); - } - ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.match_type_) - - reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* InCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + InCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_InCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &InCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &InCondition::ByteSizeLong, + &InCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(InCondition, _impl_._cached_size_), + false, + }, + &InCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* InCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 0, 2> InCondition::_table_ = { { @@ -33245,8 +38161,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 0, 2> InCondition::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_InCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::InCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(InCondition, _impl_.match_type_), 63>(), @@ -33282,99 +38202,136 @@ const ::_pbi::TcParseTable<2, 4, 2, 0, 2> InCondition::_table_ = { }}, }; -::uint8_t* InCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.InCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Value target = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::target(this), - _Internal::target(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_candidates_size()); i < n; i++) { - const auto& repfield = this->_internal_candidates().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_case_sensitivity(), target); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 4, this->_internal_match_type(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.InCondition) - return target; -} - -::size_t InCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.InCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void InCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.InCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; - total_size += 1UL * this->_internal_candidates_size(); - for (const auto& msg : this->_internal_candidates()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // .io.deephaven.proto.backplane.grpc.Value target = 1; + _impl_.candidates_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.target_); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_case_sensitivity()); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_match_type()); + ABSL_DCHECK(_impl_.target_ != nullptr); + _impl_.target_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData InCondition::_class_data_ = { - InCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* InCondition::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.match_type_) - + reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void InCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* InCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const InCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* InCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const InCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.InCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Value target = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.target_, this_._impl_.target_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_candidates_size()); + i < n; i++) { + const auto& repfield = this_._internal_candidates().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_case_sensitivity(), target); + } + + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 4, this_._internal_match_type(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.InCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t InCondition::ByteSizeLong(const MessageLite& base) { + const InCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t InCondition::ByteSizeLong() const { + const InCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.InCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; + { + total_size += 1UL * this_._internal_candidates_size(); + for (const auto& msg : this_._internal_candidates()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // .io.deephaven.proto.backplane.grpc.Value target = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.target_); + } + } + { + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_case_sensitivity()); + } + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_match_type()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void InCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.InCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -33382,16 +38339,23 @@ void InCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google: _this->_internal_mutable_candidates()->MergeFrom( from._internal_candidates()); - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_target()->::io::deephaven::proto::backplane::grpc::Value::MergeFrom( - from._internal_target()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.target_ != nullptr); + if (_this->_impl_.target_ == nullptr) { + _this->_impl_.target_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.target_); + } else { + _this->_impl_.target_->MergeFrom(*from._impl_.target_); + } } if (from._internal_case_sensitivity() != 0) { - _this->_internal_set_case_sensitivity(from._internal_case_sensitivity()); + _this->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; } if (from._internal_match_type() != 0) { - _this->_internal_set_match_type(from._internal_match_type()); + _this->_impl_.match_type_ = from._impl_.match_type_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -33402,13 +38366,7 @@ void InCondition::CopyFrom(const InCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool InCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* InCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void InCondition::InternalSwap(InCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -33423,34 +38381,30 @@ void InCondition::InternalSwap(InCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata InCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[105]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class InvokeCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Value& target(const InvokeCondition* msg); - static void set_has_target(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::_Internal::target(const InvokeCondition* msg) { - return *msg->_impl_.target_; -} InvokeCondition::InvokeCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.InvokeCondition) } inline PROTOBUF_NDEBUG_INLINE InvokeCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::InvokeCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, arguments_{visibility, arena, from.arguments_}, @@ -33459,16 +38413,20 @@ inline PROTOBUF_NDEBUG_INLINE InvokeCondition::Impl_::Impl_( InvokeCondition::InvokeCondition( ::google::protobuf::Arena* arena, const InvokeCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE InvokeCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.target_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.target_) - : nullptr; + _impl_.target_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>( + arena, *from._impl_.target_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.InvokeCondition) } @@ -33495,31 +38453,34 @@ inline void InvokeCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void InvokeCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.InvokeCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.arguments_.Clear(); - _impl_.method_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.target_ != nullptr); - _impl_.target_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* InvokeCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + InvokeCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_InvokeCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &InvokeCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &InvokeCondition::ByteSizeLong, + &InvokeCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_._cached_size_), + false, + }, + &InvokeCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* InvokeCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 3, 2, 64, 2> InvokeCondition::_table_ = { { @@ -33532,8 +38493,12 @@ const ::_pbi::TcParseTable<2, 3, 2, 64, 2> InvokeCondition::_table_ = { 3, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_InvokeCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::InvokeCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // string method = 1; @@ -33567,87 +38532,123 @@ const ::_pbi::TcParseTable<2, 3, 2, 64, 2> InvokeCondition::_table_ = { }}, }; -::uint8_t* InvokeCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.InvokeCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string method = 1; - if (!this->_internal_method().empty()) { - const std::string& _s = this->_internal_method(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.InvokeCondition.method"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Value target = 2; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::target(this), - _Internal::target(this).GetCachedSize(), target, stream); - } - - // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; - for (unsigned i = 0, - n = static_cast(this->_internal_arguments_size()); i < n; i++) { - const auto& repfield = this->_internal_arguments().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(3, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.InvokeCondition) - return target; -} - -::size_t InvokeCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.InvokeCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void InvokeCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.InvokeCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; - total_size += 1UL * this->_internal_arguments_size(); - for (const auto& msg : this->_internal_arguments()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string method = 1; - if (!this->_internal_method().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_method()); - } - - // .io.deephaven.proto.backplane.grpc.Value target = 2; + _impl_.arguments_.Clear(); + _impl_.method_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.target_); + ABSL_DCHECK(_impl_.target_ != nullptr); + _impl_.target_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData InvokeCondition::_class_data_ = { - InvokeCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* InvokeCondition::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void InvokeCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* InvokeCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const InvokeCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* InvokeCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const InvokeCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.InvokeCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string method = 1; + if (!this_._internal_method().empty()) { + const std::string& _s = this_._internal_method(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.InvokeCondition.method"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Value target = 2; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.target_, this_._impl_.target_->GetCachedSize(), target, + stream); + } + + // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; + for (unsigned i = 0, n = static_cast( + this_._internal_arguments_size()); + i < n; i++) { + const auto& repfield = this_._internal_arguments().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.InvokeCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t InvokeCondition::ByteSizeLong(const MessageLite& base) { + const InvokeCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t InvokeCondition::ByteSizeLong() const { + const InvokeCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.InvokeCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; + { + total_size += 1UL * this_._internal_arguments_size(); + for (const auto& msg : this_._internal_arguments()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string method = 1; + if (!this_._internal_method().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_method()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Value target = 2; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.target_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void InvokeCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.InvokeCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -33658,10 +38659,17 @@ void InvokeCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::goo if (!from._internal_method().empty()) { _this->_internal_set_method(from._internal_method()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_target()->::io::deephaven::proto::backplane::grpc::Value::MergeFrom( - from._internal_target()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.target_ != nullptr); + if (_this->_impl_.target_ == nullptr) { + _this->_impl_.target_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Value>(arena, *from._impl_.target_); + } else { + _this->_impl_.target_->MergeFrom(*from._impl_.target_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -33672,13 +38680,7 @@ void InvokeCondition::CopyFrom(const InvokeCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool InvokeCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* InvokeCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void InvokeCondition::InternalSwap(InvokeCondition* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -33691,50 +38693,50 @@ void InvokeCondition::InternalSwap(InvokeCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata InvokeCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[106]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class IsNullCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Reference& reference(const IsNullCondition* msg); - static void set_has_reference(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Reference& IsNullCondition::_Internal::reference(const IsNullCondition* msg) { - return *msg->_impl_.reference_; -} IsNullCondition::IsNullCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.IsNullCondition) } inline PROTOBUF_NDEBUG_INLINE IsNullCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::IsNullCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} IsNullCondition::IsNullCondition( ::google::protobuf::Arena* arena, const IsNullCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE IsNullCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reference_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_) - : nullptr; + _impl_.reference_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>( + arena, *from._impl_.reference_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.IsNullCondition) } @@ -33758,29 +38760,34 @@ inline void IsNullCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void IsNullCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.IsNullCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reference_ != nullptr); - _impl_.reference_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* IsNullCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + IsNullCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_IsNullCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &IsNullCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &IsNullCondition::ByteSizeLong, + &IsNullCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_._cached_size_), + false, + }, + &IsNullCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* IsNullCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> IsNullCondition::_table_ = { { @@ -33793,8 +38800,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> IsNullCondition::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_IsNullCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::IsNullCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.Reference reference = 1; {::_pbi::TcParser::FastMtS1, @@ -33811,68 +38822,101 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> IsNullCondition::_table_ = { }}, }; -::uint8_t* IsNullCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.IsNullCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reference(this), - _Internal::reference(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.IsNullCondition) - return target; -} - -::size_t IsNullCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.IsNullCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void IsNullCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.IsNullCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reference_); + ABSL_DCHECK(_impl_.reference_ != nullptr); + _impl_.reference_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData IsNullCondition::_class_data_ = { - IsNullCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* IsNullCondition::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void IsNullCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* IsNullCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const IsNullCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* IsNullCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const IsNullCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.IsNullCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reference_, this_._impl_.reference_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.IsNullCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t IsNullCondition::ByteSizeLong(const MessageLite& base) { + const IsNullCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t IsNullCondition::ByteSizeLong() const { + const IsNullCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.IsNullCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reference_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void IsNullCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.IsNullCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_reference()->::io::deephaven::proto::backplane::grpc::Reference::MergeFrom( - from._internal_reference()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.reference_ != nullptr); + if (_this->_impl_.reference_ == nullptr) { + _this->_impl_.reference_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_); + } else { + _this->_impl_.reference_->MergeFrom(*from._impl_.reference_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -33883,13 +38927,7 @@ void IsNullCondition::CopyFrom(const IsNullCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool IsNullCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* IsNullCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void IsNullCondition::InternalSwap(IsNullCondition* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -33898,34 +38936,30 @@ void IsNullCondition::InternalSwap(IsNullCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata IsNullCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[107]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MatchesCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Reference& reference(const MatchesCondition* msg); - static void set_has_reference(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Reference& MatchesCondition::_Internal::reference(const MatchesCondition* msg) { - return *msg->_impl_.reference_; -} MatchesCondition::MatchesCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MatchesCondition) } inline PROTOBUF_NDEBUG_INLINE MatchesCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MatchesCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, regex_(arena, from.regex_) {} @@ -33933,16 +38967,20 @@ inline PROTOBUF_NDEBUG_INLINE MatchesCondition::Impl_::Impl_( MatchesCondition::MatchesCondition( ::google::protobuf::Arena* arena, const MatchesCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MatchesCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reference_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_) - : nullptr; + _impl_.reference_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>( + arena, *from._impl_.reference_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, case_sensitivity_), reinterpret_cast(&from._impl_) + @@ -33980,33 +39018,34 @@ inline void MatchesCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MatchesCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MatchesCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.regex_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reference_ != nullptr); - _impl_.reference_->Clear(); - } - ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.match_type_) - - reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MatchesCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MatchesCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MatchesCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MatchesCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MatchesCondition::ByteSizeLong, + &MatchesCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_._cached_size_), + false, + }, + &MatchesCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MatchesCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 1, 64, 2> MatchesCondition::_table_ = { { @@ -34019,8 +39058,12 @@ const ::_pbi::TcParseTable<2, 4, 1, 64, 2> MatchesCondition::_table_ = { 4, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MatchesCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MatchesCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(MatchesCondition, _impl_.match_type_), 63>(), @@ -34058,99 +39101,131 @@ const ::_pbi::TcParseTable<2, 4, 1, 64, 2> MatchesCondition::_table_ = { }}, }; -::uint8_t* MatchesCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MatchesCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reference(this), - _Internal::reference(this).GetCachedSize(), target, stream); - } - - // string regex = 2; - if (!this->_internal_regex().empty()) { - const std::string& _s = this->_internal_regex(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MatchesCondition.regex"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_case_sensitivity(), target); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 4, this->_internal_match_type(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MatchesCondition) - return target; -} - -::size_t MatchesCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MatchesCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MatchesCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MatchesCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string regex = 2; - if (!this->_internal_regex().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_regex()); - } - - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + _impl_.regex_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reference_); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_case_sensitivity()); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_match_type()); + ABSL_DCHECK(_impl_.reference_ != nullptr); + _impl_.reference_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MatchesCondition::_class_data_ = { - MatchesCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MatchesCondition::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.match_type_) - + reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MatchesCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MatchesCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MatchesCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MatchesCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MatchesCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MatchesCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reference_, this_._impl_.reference_->GetCachedSize(), target, + stream); + } + + // string regex = 2; + if (!this_._internal_regex().empty()) { + const std::string& _s = this_._internal_regex(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.MatchesCondition.regex"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_case_sensitivity(), target); + } + + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 4, this_._internal_match_type(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MatchesCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MatchesCondition::ByteSizeLong(const MessageLite& base) { + const MatchesCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MatchesCondition::ByteSizeLong() const { + const MatchesCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MatchesCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string regex = 2; + if (!this_._internal_regex().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_regex()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reference_); + } + } + { + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_case_sensitivity()); + } + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_match_type()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MatchesCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MatchesCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -34159,16 +39234,23 @@ void MatchesCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::go if (!from._internal_regex().empty()) { _this->_internal_set_regex(from._internal_regex()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_reference()->::io::deephaven::proto::backplane::grpc::Reference::MergeFrom( - from._internal_reference()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.reference_ != nullptr); + if (_this->_impl_.reference_ == nullptr) { + _this->_impl_.reference_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_); + } else { + _this->_impl_.reference_->MergeFrom(*from._impl_.reference_); + } } if (from._internal_case_sensitivity() != 0) { - _this->_internal_set_case_sensitivity(from._internal_case_sensitivity()); + _this->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; } if (from._internal_match_type() != 0) { - _this->_internal_set_match_type(from._internal_match_type()); + _this->_impl_.match_type_ = from._impl_.match_type_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -34179,13 +39261,7 @@ void MatchesCondition::CopyFrom(const MatchesCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MatchesCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MatchesCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MatchesCondition::InternalSwap(MatchesCondition* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -34202,34 +39278,30 @@ void MatchesCondition::InternalSwap(MatchesCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MatchesCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[108]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ContainsCondition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Reference& reference(const ContainsCondition* msg); - static void set_has_reference(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Reference& ContainsCondition::_Internal::reference(const ContainsCondition* msg) { - return *msg->_impl_.reference_; -} ContainsCondition::ContainsCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ContainsCondition) } inline PROTOBUF_NDEBUG_INLINE ContainsCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ContainsCondition& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, search_string_(arena, from.search_string_) {} @@ -34237,16 +39309,20 @@ inline PROTOBUF_NDEBUG_INLINE ContainsCondition::Impl_::Impl_( ContainsCondition::ContainsCondition( ::google::protobuf::Arena* arena, const ContainsCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ContainsCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.reference_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_) - : nullptr; + _impl_.reference_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>( + arena, *from._impl_.reference_) + : nullptr; ::memcpy(reinterpret_cast(&_impl_) + offsetof(Impl_, case_sensitivity_), reinterpret_cast(&from._impl_) + @@ -34284,33 +39360,34 @@ inline void ContainsCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ContainsCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ContainsCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.search_string_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.reference_ != nullptr); - _impl_.reference_->Clear(); - } - ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.match_type_) - - reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ContainsCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ContainsCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ContainsCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ContainsCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ContainsCondition::ByteSizeLong, + &ContainsCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_._cached_size_), + false, + }, + &ContainsCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ContainsCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 1, 73, 2> ContainsCondition::_table_ = { { @@ -34323,8 +39400,12 @@ const ::_pbi::TcParseTable<2, 4, 1, 73, 2> ContainsCondition::_table_ = { 4, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ContainsCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ContainsCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ContainsCondition, _impl_.match_type_), 63>(), @@ -34362,99 +39443,131 @@ const ::_pbi::TcParseTable<2, 4, 1, 73, 2> ContainsCondition::_table_ = { }}, }; -::uint8_t* ContainsCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ContainsCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::reference(this), - _Internal::reference(this).GetCachedSize(), target, stream); - } - - // string search_string = 2; - if (!this->_internal_search_string().empty()) { - const std::string& _s = this->_internal_search_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ContainsCondition.search_string"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 3, this->_internal_case_sensitivity(), target); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 4, this->_internal_match_type(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ContainsCondition) - return target; -} - -::size_t ContainsCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ContainsCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ContainsCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ContainsCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string search_string = 2; - if (!this->_internal_search_string().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_search_string()); - } - - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + _impl_.search_string_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.reference_); - } - - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - if (this->_internal_case_sensitivity() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_case_sensitivity()); - } - - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - if (this->_internal_match_type() != 0) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_match_type()); + ABSL_DCHECK(_impl_.reference_ != nullptr); + _impl_.reference_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ContainsCondition::_class_data_ = { - ContainsCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ContainsCondition::GetClassData() const { - return &_class_data_; + ::memset(&_impl_.case_sensitivity_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.match_type_) - + reinterpret_cast(&_impl_.case_sensitivity_)) + sizeof(_impl_.match_type_)); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ContainsCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ContainsCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ContainsCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ContainsCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ContainsCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ContainsCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.reference_, this_._impl_.reference_->GetCachedSize(), target, + stream); + } + + // string search_string = 2; + if (!this_._internal_search_string().empty()) { + const std::string& _s = this_._internal_search_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ContainsCondition.search_string"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 3, this_._internal_case_sensitivity(), target); + } + + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 4, this_._internal_match_type(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ContainsCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ContainsCondition::ByteSizeLong(const MessageLite& base) { + const ContainsCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ContainsCondition::ByteSizeLong() const { + const ContainsCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ContainsCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string search_string = 2; + if (!this_._internal_search_string().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_search_string()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Reference reference = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.reference_); + } + } + { + // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; + if (this_._internal_case_sensitivity() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_case_sensitivity()); + } + // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; + if (this_._internal_match_type() != 0) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this_._internal_match_type()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ContainsCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ContainsCondition) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -34463,16 +39576,23 @@ void ContainsCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::g if (!from._internal_search_string().empty()) { _this->_internal_set_search_string(from._internal_search_string()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_reference()->::io::deephaven::proto::backplane::grpc::Reference::MergeFrom( - from._internal_reference()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.reference_ != nullptr); + if (_this->_impl_.reference_ == nullptr) { + _this->_impl_.reference_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.reference_); + } else { + _this->_impl_.reference_->MergeFrom(*from._impl_.reference_); + } } if (from._internal_case_sensitivity() != 0) { - _this->_internal_set_case_sensitivity(from._internal_case_sensitivity()); + _this->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; } if (from._internal_match_type() != 0) { - _this->_internal_set_match_type(from._internal_match_type()); + _this->_impl_.match_type_ = from._impl_.match_type_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -34483,13 +39603,7 @@ void ContainsCondition::CopyFrom(const ContainsCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ContainsCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ContainsCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ContainsCondition::InternalSwap(ContainsCondition* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -34506,9 +39620,7 @@ void ContainsCondition::InternalSwap(ContainsCondition* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata ContainsCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[109]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -34517,13 +39629,17 @@ class SearchCondition::_Internal { }; SearchCondition::SearchCondition(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.SearchCondition) } inline PROTOBUF_NDEBUG_INLINE SearchCondition::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::SearchCondition& from_msg) : optional_references_{visibility, arena, from.optional_references_}, search_string_(arena, from.search_string_), _cached_size_{0} {} @@ -34531,12 +39647,16 @@ inline PROTOBUF_NDEBUG_INLINE SearchCondition::Impl_::Impl_( SearchCondition::SearchCondition( ::google::protobuf::Arena* arena, const SearchCondition& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SearchCondition* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SearchCondition) } @@ -34561,25 +39681,34 @@ inline void SearchCondition::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void SearchCondition::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SearchCondition) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.optional_references_.Clear(); - _impl_.search_string_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* SearchCondition::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + SearchCondition::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_SearchCondition_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &SearchCondition::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &SearchCondition::ByteSizeLong, + &SearchCondition::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(SearchCondition, _impl_._cached_size_), + false, + }, + &SearchCondition::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* SearchCondition::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 71, 2> SearchCondition::_table_ = { { @@ -34592,8 +39721,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 71, 2> SearchCondition::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_SearchCondition_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SearchCondition>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; {::_pbi::TcParser::FastMtR1, @@ -34619,70 +39752,97 @@ const ::_pbi::TcParseTable<1, 2, 1, 71, 2> SearchCondition::_table_ = { }}, }; -::uint8_t* SearchCondition::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SearchCondition) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // string search_string = 1; - if (!this->_internal_search_string().empty()) { - const std::string& _s = this->_internal_search_string(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SearchCondition.search_string"); - target = stream->WriteStringMaybeAliased(1, _s, target); - } - - // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_optional_references_size()); i < n; i++) { - const auto& repfield = this->_internal_optional_references().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SearchCondition) - return target; -} - -::size_t SearchCondition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SearchCondition) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void SearchCondition::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.SearchCondition) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; - total_size += 1UL * this->_internal_optional_references_size(); - for (const auto& msg : this->_internal_optional_references()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - // string search_string = 1; - if (!this->_internal_search_string().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_search_string()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData SearchCondition::_class_data_ = { - SearchCondition::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* SearchCondition::GetClassData() const { - return &_class_data_; + _impl_.optional_references_.Clear(); + _impl_.search_string_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void SearchCondition::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* SearchCondition::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const SearchCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* SearchCondition::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const SearchCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.SearchCondition) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // string search_string = 1; + if (!this_._internal_search_string().empty()) { + const std::string& _s = this_._internal_search_string(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.SearchCondition.search_string"); + target = stream->WriteStringMaybeAliased(1, _s, target); + } + + // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; + for (unsigned i = 0, n = static_cast( + this_._internal_optional_references_size()); + i < n; i++) { + const auto& repfield = this_._internal_optional_references().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.SearchCondition) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t SearchCondition::ByteSizeLong(const MessageLite& base) { + const SearchCondition& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t SearchCondition::ByteSizeLong() const { + const SearchCondition& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.SearchCondition) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; + { + total_size += 1UL * this_._internal_optional_references_size(); + for (const auto& msg : this_._internal_optional_references()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + { + // string search_string = 1; + if (!this_._internal_search_string().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_search_string()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void SearchCondition::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.SearchCondition) @@ -34705,13 +39865,7 @@ void SearchCondition::CopyFrom(const SearchCondition& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool SearchCondition::IsInitialized() const { - return true; -} -::_pbi::CachedSize* SearchCondition::AccessCachedSize() const { - return &_impl_._cached_size_; -} void SearchCondition::InternalSwap(SearchCondition* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -34722,65 +39876,58 @@ void SearchCondition::InternalSwap(SearchCondition* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata SearchCondition::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[110]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class FlattenRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const FlattenRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const FlattenRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& FlattenRequest::_Internal::result_id(const FlattenRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& FlattenRequest::_Internal::source_id(const FlattenRequest* msg) { - return *msg->_impl_.source_id_; -} void FlattenRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } FlattenRequest::FlattenRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.FlattenRequest) } inline PROTOBUF_NDEBUG_INLINE FlattenRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} FlattenRequest::FlattenRequest( ::google::protobuf::Arena* arena, const FlattenRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE FlattenRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FlattenRequest) } @@ -34810,35 +39957,34 @@ inline void FlattenRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void FlattenRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FlattenRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* FlattenRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + FlattenRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_FlattenRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &FlattenRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &FlattenRequest::ByteSizeLong, + &FlattenRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_._cached_size_), + false, + }, + &FlattenRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* FlattenRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FlattenRequest::_table_ = { { @@ -34851,8 +39997,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FlattenRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_FlattenRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FlattenRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; {::_pbi::TcParser::FastMtS1, @@ -34876,74 +40026,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> FlattenRequest::_table_ = { }}, }; -::uint8_t* FlattenRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FlattenRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FlattenRequest) - return target; -} - -::size_t FlattenRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FlattenRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void FlattenRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.FlattenRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData FlattenRequest::_class_data_ = { - FlattenRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* FlattenRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void FlattenRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* FlattenRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const FlattenRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* FlattenRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const FlattenRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.FlattenRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.FlattenRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t FlattenRequest::ByteSizeLong(const MessageLite& base) { + const FlattenRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t FlattenRequest::ByteSizeLong() const { + const FlattenRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.FlattenRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void FlattenRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.FlattenRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -34952,14 +40131,25 @@ void FlattenRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -34970,13 +40160,7 @@ void FlattenRequest::CopyFrom(const FlattenRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool FlattenRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* FlattenRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void FlattenRequest::InternalSwap(FlattenRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -34990,65 +40174,58 @@ void FlattenRequest::InternalSwap(FlattenRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata FlattenRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[111]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class MetaTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const MetaTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const MetaTableRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& MetaTableRequest::_Internal::result_id(const MetaTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& MetaTableRequest::_Internal::source_id(const MetaTableRequest* msg) { - return *msg->_impl_.source_id_; -} void MetaTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } MetaTableRequest::MetaTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.MetaTableRequest) } inline PROTOBUF_NDEBUG_INLINE MetaTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0} {} MetaTableRequest::MetaTableRequest( ::google::protobuf::Arena* arena, const MetaTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE MetaTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MetaTableRequest) } @@ -35078,35 +40255,34 @@ inline void MetaTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void MetaTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* MetaTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + MetaTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_MetaTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &MetaTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &MetaTableRequest::ByteSizeLong, + &MetaTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_._cached_size_), + false, + }, + &MetaTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* MetaTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MetaTableRequest::_table_ = { { @@ -35119,8 +40295,12 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MetaTableRequest::_table_ = { 2, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_MetaTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; {::_pbi::TcParser::FastMtS1, @@ -35144,74 +40324,103 @@ const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MetaTableRequest::_table_ = { }}, }; -::uint8_t* MetaTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MetaTableRequest) - return target; -} - -::size_t MetaTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void MetaTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData MetaTableRequest::_class_data_ = { - MetaTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* MetaTableRequest::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void MetaTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* MetaTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const MetaTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* MetaTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const MetaTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.MetaTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t MetaTableRequest::ByteSizeLong(const MessageLite& base) { + const MetaTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t MetaTableRequest::ByteSizeLong() const { + const MetaTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void MetaTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -35220,14 +40429,25 @@ void MetaTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::go cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -35238,13 +40458,7 @@ void MetaTableRequest::CopyFrom(const MetaTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool MetaTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* MetaTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void MetaTableRequest::InternalSwap(MetaTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -35258,27 +40472,24 @@ void MetaTableRequest::InternalSwap(MetaTableRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata MetaTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[112]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class RunChartDownsampleRequest_ZoomRange::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_._has_bits_); - static void set_has_min_date_nanos(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_max_date_nanos(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + 8 * PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_._has_bits_); }; RunChartDownsampleRequest_ZoomRange::RunChartDownsampleRequest_ZoomRange(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) } @@ -35311,30 +40522,34 @@ inline void RunChartDownsampleRequest_ZoomRange::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void RunChartDownsampleRequest_ZoomRange::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.min_date_nanos_, 0, static_cast<::size_t>( - reinterpret_cast(&_impl_.max_date_nanos_) - - reinterpret_cast(&_impl_.min_date_nanos_)) + sizeof(_impl_.max_date_nanos_)); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* RunChartDownsampleRequest_ZoomRange::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + RunChartDownsampleRequest_ZoomRange::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_RunChartDownsampleRequest_ZoomRange_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &RunChartDownsampleRequest_ZoomRange::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &RunChartDownsampleRequest_ZoomRange::ByteSizeLong, + &RunChartDownsampleRequest_ZoomRange::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_._cached_size_), + false, + }, + &RunChartDownsampleRequest_ZoomRange::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* RunChartDownsampleRequest_ZoomRange::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 0, 0, 2> RunChartDownsampleRequest_ZoomRange::_table_ = { { @@ -35347,8 +40562,12 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> RunChartDownsampleRequest_ZoomRange::_ 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_RunChartDownsampleRequest_ZoomRange_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_), 1>(), @@ -35371,72 +40590,95 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> RunChartDownsampleRequest_ZoomRange::_ }}, }; -::uint8_t* RunChartDownsampleRequest_ZoomRange::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<1>( - stream, this->_internal_min_date_nanos(), target); - } - - // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt64ToArrayWithField<2>( - stream, this->_internal_max_date_nanos(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - return target; -} - -::size_t RunChartDownsampleRequest_ZoomRange::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void RunChartDownsampleRequest_ZoomRange::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_min_date_nanos()); - } - - // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( - this->_internal_max_date_nanos()); - } - + ::memset(&_impl_.min_date_nanos_, 0, static_cast<::size_t>( + reinterpret_cast(&_impl_.max_date_nanos_) - + reinterpret_cast(&_impl_.min_date_nanos_)) + sizeof(_impl_.max_date_nanos_)); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData RunChartDownsampleRequest_ZoomRange::_class_data_ = { - RunChartDownsampleRequest_ZoomRange::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* RunChartDownsampleRequest_ZoomRange::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void RunChartDownsampleRequest_ZoomRange::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* RunChartDownsampleRequest_ZoomRange::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const RunChartDownsampleRequest_ZoomRange& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* RunChartDownsampleRequest_ZoomRange::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const RunChartDownsampleRequest_ZoomRange& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<1>( + stream, this_._internal_min_date_nanos(), target); + } + + // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt64ToArrayWithField<2>( + stream, this_._internal_max_date_nanos(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t RunChartDownsampleRequest_ZoomRange::ByteSizeLong(const MessageLite& base) { + const RunChartDownsampleRequest_ZoomRange& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t RunChartDownsampleRequest_ZoomRange::ByteSizeLong() const { + const RunChartDownsampleRequest_ZoomRange& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_min_date_nanos()); + } + // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::Int64SizePlusOne( + this_._internal_max_date_nanos()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void RunChartDownsampleRequest_ZoomRange::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) @@ -35452,8 +40694,8 @@ void RunChartDownsampleRequest_ZoomRange::MergeImpl(::google::protobuf::Message& if (cached_has_bits & 0x00000002u) { _this->_impl_.max_date_nanos_ = from._impl_.max_date_nanos_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -35464,13 +40706,7 @@ void RunChartDownsampleRequest_ZoomRange::CopyFrom(const RunChartDownsampleReque MergeFrom(from); } -PROTOBUF_NOINLINE bool RunChartDownsampleRequest_ZoomRange::IsInitialized() const { - return true; -} -::_pbi::CachedSize* RunChartDownsampleRequest_ZoomRange::AccessCachedSize() const { - return &_impl_._cached_size_; -} void RunChartDownsampleRequest_ZoomRange::InternalSwap(RunChartDownsampleRequest_ZoomRange* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -35484,53 +40720,35 @@ void RunChartDownsampleRequest_ZoomRange::InternalSwap(RunChartDownsampleRequest } ::google::protobuf::Metadata RunChartDownsampleRequest_ZoomRange::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[113]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class RunChartDownsampleRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const RunChartDownsampleRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const RunChartDownsampleRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& zoom_range(const RunChartDownsampleRequest* msg); - static void set_has_zoom_range(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& RunChartDownsampleRequest::_Internal::result_id(const RunChartDownsampleRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& RunChartDownsampleRequest::_Internal::source_id(const RunChartDownsampleRequest* msg) { - return *msg->_impl_.source_id_; -} -const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& RunChartDownsampleRequest::_Internal::zoom_range(const RunChartDownsampleRequest* msg) { - return *msg->_impl_.zoom_range_; -} void RunChartDownsampleRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } RunChartDownsampleRequest::RunChartDownsampleRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) } inline PROTOBUF_NDEBUG_INLINE RunChartDownsampleRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, y_column_names_{visibility, arena, from.y_column_names_}, @@ -35539,22 +40757,26 @@ inline PROTOBUF_NDEBUG_INLINE RunChartDownsampleRequest::Impl_::Impl_( RunChartDownsampleRequest::RunChartDownsampleRequest( ::google::protobuf::Arena* arena, const RunChartDownsampleRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE RunChartDownsampleRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; - _impl_.zoom_range_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>(arena, *from._impl_.zoom_range_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; + _impl_.zoom_range_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>( + arena, *from._impl_.zoom_range_) + : nullptr; _impl_.pixel_count_ = from._impl_.pixel_count_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) @@ -35589,42 +40811,34 @@ inline void RunChartDownsampleRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void RunChartDownsampleRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.y_column_names_.Clear(); - _impl_.x_column_name_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.zoom_range_ != nullptr); - _impl_.zoom_range_->Clear(); - } - } - _impl_.pixel_count_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* RunChartDownsampleRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + RunChartDownsampleRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_RunChartDownsampleRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &RunChartDownsampleRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &RunChartDownsampleRequest::ByteSizeLong, + &RunChartDownsampleRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_._cached_size_), + false, + }, + &RunChartDownsampleRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* RunChartDownsampleRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 6, 3, 95, 2> RunChartDownsampleRequest::_table_ = { { @@ -35637,8 +40851,12 @@ const ::_pbi::TcParseTable<3, 6, 3, 95, 2> RunChartDownsampleRequest::_table_ = 6, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_RunChartDownsampleRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -35693,128 +40911,170 @@ const ::_pbi::TcParseTable<3, 6, 3, 95, 2> RunChartDownsampleRequest::_table_ = }}, }; -::uint8_t* RunChartDownsampleRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // int32 pixel_count = 3; - if (this->_internal_pixel_count() != 0) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<3>( - stream, this->_internal_pixel_count(), target); - } - - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::zoom_range(this), - _Internal::zoom_range(this).GetCachedSize(), target, stream); - } - - // string x_column_name = 5; - if (!this->_internal_x_column_name().empty()) { - const std::string& _s = this->_internal_x_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name"); - target = stream->WriteStringMaybeAliased(5, _s, target); - } - - // repeated string y_column_names = 6; - for (int i = 0, n = this->_internal_y_column_names_size(); i < n; ++i) { - const auto& s = this->_internal_y_column_names().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names"); - target = stream->WriteString(6, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - return target; -} - -::size_t RunChartDownsampleRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void RunChartDownsampleRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string y_column_names = 6; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_y_column_names().size()); - for (int i = 0, n = _internal_y_column_names().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_y_column_names().Get(i)); - } - // string x_column_name = 5; - if (!this->_internal_x_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_x_column_name()); - } - + _impl_.y_column_names_.Clear(); + _impl_.x_column_name_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.zoom_range_); + ABSL_DCHECK(_impl_.zoom_range_ != nullptr); + _impl_.zoom_range_->Clear(); } - - } - // int32 pixel_count = 3; - if (this->_internal_pixel_count() != 0) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_pixel_count()); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData RunChartDownsampleRequest::_class_data_ = { - RunChartDownsampleRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* RunChartDownsampleRequest::GetClassData() const { - return &_class_data_; + _impl_.pixel_count_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void RunChartDownsampleRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* RunChartDownsampleRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const RunChartDownsampleRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* RunChartDownsampleRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const RunChartDownsampleRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // int32 pixel_count = 3; + if (this_._internal_pixel_count() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<3>( + stream, this_._internal_pixel_count(), target); + } + + // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.zoom_range_, this_._impl_.zoom_range_->GetCachedSize(), target, + stream); + } + + // string x_column_name = 5; + if (!this_._internal_x_column_name().empty()) { + const std::string& _s = this_._internal_x_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name"); + target = stream->WriteStringMaybeAliased(5, _s, target); + } + + // repeated string y_column_names = 6; + for (int i = 0, n = this_._internal_y_column_names_size(); i < n; ++i) { + const auto& s = this_._internal_y_column_names().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names"); + target = stream->WriteString(6, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t RunChartDownsampleRequest::ByteSizeLong(const MessageLite& base) { + const RunChartDownsampleRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t RunChartDownsampleRequest::ByteSizeLong() const { + const RunChartDownsampleRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string y_column_names = 6; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_y_column_names().size()); + for (int i = 0, n = this_._internal_y_column_names().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_y_column_names().Get(i)); + } + } + } + { + // string x_column_name = 5; + if (!this_._internal_x_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_x_column_name()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.zoom_range_); + } + } + { + // int32 pixel_count = 3; + if (this_._internal_pixel_count() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_pixel_count()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void RunChartDownsampleRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -35827,21 +41087,37 @@ void RunChartDownsampleRequest::MergeImpl(::google::protobuf::Message& to_msg, c cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_zoom_range()->::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange::MergeFrom( - from._internal_zoom_range()); + ABSL_DCHECK(from._impl_.zoom_range_ != nullptr); + if (_this->_impl_.zoom_range_ == nullptr) { + _this->_impl_.zoom_range_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>(arena, *from._impl_.zoom_range_); + } else { + _this->_impl_.zoom_range_->MergeFrom(*from._impl_.zoom_range_); + } } } if (from._internal_pixel_count() != 0) { - _this->_internal_set_pixel_count(from._internal_pixel_count()); + _this->_impl_.pixel_count_ = from._impl_.pixel_count_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -35852,13 +41128,7 @@ void RunChartDownsampleRequest::CopyFrom(const RunChartDownsampleRequest& from) MergeFrom(from); } -PROTOBUF_NOINLINE bool RunChartDownsampleRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* RunChartDownsampleRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void RunChartDownsampleRequest::InternalSwap(RunChartDownsampleRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -35876,9 +41146,7 @@ void RunChartDownsampleRequest::InternalSwap(RunChartDownsampleRequest* PROTOBUF } ::google::protobuf::Metadata RunChartDownsampleRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[114]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -35887,13 +41155,21 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::_Internal { }; CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly) } CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly( ::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -35902,6 +41178,61 @@ CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableReque // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly) } +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::ByteSizeLong, + &CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly, _impl_._cached_size_), + false, + }, + &CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; @@ -35911,9 +41242,7 @@ CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::CreateInputTableReque ::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[115]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -35922,25 +41251,33 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_Internal { }; CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) } inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from_msg) : key_columns_{visibility, arena, from.key_columns_}, _cached_size_{0} {} CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked( ::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) } @@ -35963,24 +41300,34 @@ inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::SharedDtor _impl_.~Impl_(); } -PROTOBUF_NOINLINE void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.key_columns_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::ByteSizeLong, + &CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _impl_._cached_size_), + false, + }, + &CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 110, 2> CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_table_ = { { @@ -35993,8 +41340,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 110, 2> CreateInputTableRequest_InputTableKi 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated string key_columns = 1; {::_pbi::TcParser::FastUR1, @@ -36014,56 +41365,80 @@ const ::_pbi::TcParseTable<0, 1, 0, 110, 2> CreateInputTableRequest_InputTableKi }}, }; -::uint8_t* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated string key_columns = 1; - for (int i = 0, n = this->_internal_key_columns_size(); i < n; ++i) { - const auto& s = this->_internal_key_columns().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns"); - target = stream->WriteString(1, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - return target; -} - -::size_t CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string key_columns = 1; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_key_columns().size()); - for (int i = 0, n = _internal_key_columns().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_key_columns().Get(i)); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_class_data_ = { - CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::GetClassData() const { - return &_class_data_; + _impl_.key_columns_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated string key_columns = 1; + for (int i = 0, n = this_._internal_key_columns_size(); i < n; ++i) { + const auto& s = this_._internal_key_columns().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns"); + target = stream->WriteString(1, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::ByteSizeLong(const MessageLite& base) { + const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::ByteSizeLong() const { + const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string key_columns = 1; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_key_columns().size()); + for (int i = 0, n = this_._internal_key_columns().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_key_columns().Get(i)); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) @@ -36082,13 +41457,7 @@ void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CopyFrom(const Cr MergeFrom(from); } -PROTOBUF_NOINLINE bool CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::InternalSwap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -36096,9 +41465,7 @@ void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::InternalSwap(Crea } ::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[116]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -36107,13 +41474,21 @@ class CreateInputTableRequest_InputTableKind_Blink::_Internal { }; CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink) } CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTableKind_Blink( ::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_Blink& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::internal::ZeroFieldsBase(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::internal::ZeroFieldsBase(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateInputTableRequest_InputTableKind_Blink* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( @@ -36122,7 +41497,62 @@ CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTable // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink) } - +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateInputTableRequest_InputTableKind_Blink::_class_data_ = { + ::google::protobuf::internal::ZeroFieldsBase::ClassData{ + &_CreateInputTableRequest_InputTableKind_Blink_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateInputTableRequest_InputTableKind_Blink::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetNewImpl(), + ::google::protobuf::internal::ZeroFieldsBase::GetClearImpl(), &CreateInputTableRequest_InputTableKind_Blink::ByteSizeLong, + &CreateInputTableRequest_InputTableKind_Blink::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind_Blink, _impl_._cached_size_), + false, + }, + &CreateInputTableRequest_InputTableKind_Blink::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateInputTableRequest_InputTableKind_Blink::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 0, 0, 0, 2> CreateInputTableRequest_InputTableKind_Blink::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 0, 0, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967295, // skipmap + offsetof(decltype(_table_), field_names), // no field_entries + 0, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + _class_data_.base(), + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 65535, 65535 + }}, + // no field_entries, or aux_entries + {{ + }}, +}; + @@ -36131,30 +41561,16 @@ CreateInputTableRequest_InputTableKind_Blink::CreateInputTableRequest_InputTable ::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_Blink::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[117]); + return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CreateInputTableRequest_InputTableKind::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& in_memory_append_only(const CreateInputTableRequest_InputTableKind* msg); - static const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& in_memory_key_backed(const CreateInputTableRequest_InputTableKind* msg); - static const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& blink(const CreateInputTableRequest_InputTableKind* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& CreateInputTableRequest_InputTableKind::_Internal::in_memory_append_only(const CreateInputTableRequest_InputTableKind* msg) { - return *msg->_impl_.kind_.in_memory_append_only_; -} -const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& CreateInputTableRequest_InputTableKind::_Internal::in_memory_key_backed(const CreateInputTableRequest_InputTableKind* msg) { - return *msg->_impl_.kind_.in_memory_key_backed_; -} -const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& CreateInputTableRequest_InputTableKind::_Internal::blink(const CreateInputTableRequest_InputTableKind* msg) { - return *msg->_impl_.kind_.blink_; -} void CreateInputTableRequest_InputTableKind::set_allocated_in_memory_append_only(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* in_memory_append_only) { ::google::protobuf::Arena* message_arena = GetArena(); clear_kind(); @@ -36195,13 +41611,17 @@ void CreateInputTableRequest_InputTableKind::set_allocated_blink(::io::deephaven // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) } CreateInputTableRequest_InputTableKind::CreateInputTableRequest_InputTableKind(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) } inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest_InputTableKind::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& from_msg) : kind_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -36209,23 +41629,27 @@ inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest_InputTableKind::Impl_::Imp CreateInputTableRequest_InputTableKind::CreateInputTableRequest_InputTableKind( ::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateInputTableRequest_InputTableKind* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (kind_case()) { case KIND_NOT_SET: break; case kInMemoryAppendOnly: - _impl_.kind_.in_memory_append_only_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(arena, *from._impl_.kind_.in_memory_append_only_); + _impl_.kind_.in_memory_append_only_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(arena, *from._impl_.kind_.in_memory_append_only_); break; case kInMemoryKeyBacked: - _impl_.kind_.in_memory_key_backed_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(arena, *from._impl_.kind_.in_memory_key_backed_); + _impl_.kind_.in_memory_key_backed_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(arena, *from._impl_.kind_.in_memory_key_backed_); break; case kBlink: - _impl_.kind_.blink_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(arena, *from._impl_.kind_.blink_); + _impl_.kind_.blink_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(arena, *from._impl_.kind_.blink_); break; } @@ -36256,23 +41680,29 @@ inline void CreateInputTableRequest_InputTableKind::SharedDtor() { void CreateInputTableRequest_InputTableKind::clear_kind() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (kind_case()) { case kInMemoryAppendOnly: { if (GetArena() == nullptr) { delete _impl_.kind_.in_memory_append_only_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.in_memory_append_only_); } break; } case kInMemoryKeyBacked: { if (GetArena() == nullptr) { delete _impl_.kind_.in_memory_key_backed_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.in_memory_key_backed_); } break; } case kBlink: { if (GetArena() == nullptr) { delete _impl_.kind_.blink_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.blink_); } break; } @@ -36284,24 +41714,34 @@ void CreateInputTableRequest_InputTableKind::clear_kind() { } -PROTOBUF_NOINLINE void CreateInputTableRequest_InputTableKind::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_kind(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CreateInputTableRequest_InputTableKind::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateInputTableRequest_InputTableKind::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CreateInputTableRequest_InputTableKind_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateInputTableRequest_InputTableKind::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CreateInputTableRequest_InputTableKind::ByteSizeLong, + &CreateInputTableRequest_InputTableKind::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind, _impl_._cached_size_), + false, + }, + &CreateInputTableRequest_InputTableKind::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateInputTableRequest_InputTableKind::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 3, 3, 0, 2> CreateInputTableRequest_InputTableKind::_table_ = { { @@ -36314,8 +41754,12 @@ const ::_pbi::TcParseTable<0, 3, 3, 0, 2> CreateInputTableRequest_InputTableKind 3, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CreateInputTableRequest_InputTableKind_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -36323,127 +41767,168 @@ const ::_pbi::TcParseTable<0, 3, 3, 0, 2> CreateInputTableRequest_InputTableKind }}, {{ // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly in_memory_append_only = 1; {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind, _impl_.kind_.in_memory_append_only_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked in_memory_key_backed = 2; {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind, _impl_.kind_.in_memory_key_backed_), _Internal::kOneofCaseOffset + 0, 1, (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink blink = 3; {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind, _impl_.kind_.blink_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvDefault)}, + (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, }}, {{ - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>()}, - {::_pbi::FieldAuxDefaultMessage{}, &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_Blink_default_instance_}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>()}, }}, {{ }}, }; -::uint8_t* CreateInputTableRequest_InputTableKind::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (kind_case()) { - case kInMemoryAppendOnly: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::in_memory_append_only(this), - _Internal::in_memory_append_only(this).GetCachedSize(), target, stream); - break; - } - case kInMemoryKeyBacked: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::in_memory_key_backed(this), - _Internal::in_memory_key_backed(this).GetCachedSize(), target, stream); - break; - } - case kBlink: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::blink(this), - _Internal::blink(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - return target; -} - -::size_t CreateInputTableRequest_InputTableKind::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CreateInputTableRequest_InputTableKind::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (kind_case()) { - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly in_memory_append_only = 1; - case kInMemoryAppendOnly: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.kind_.in_memory_append_only_); - break; - } - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked in_memory_key_backed = 2; - case kInMemoryKeyBacked: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.kind_.in_memory_key_backed_); - break; - } - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink blink = 3; - case kBlink: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.kind_.blink_); - break; - } - case KIND_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CreateInputTableRequest_InputTableKind::_class_data_ = { - CreateInputTableRequest_InputTableKind::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CreateInputTableRequest_InputTableKind::GetClassData() const { - return &_class_data_; + clear_kind(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CreateInputTableRequest_InputTableKind::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CreateInputTableRequest_InputTableKind::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CreateInputTableRequest_InputTableKind& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CreateInputTableRequest_InputTableKind::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CreateInputTableRequest_InputTableKind& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.kind_case()) { + case kInMemoryAppendOnly: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.kind_.in_memory_append_only_, this_._impl_.kind_.in_memory_append_only_->GetCachedSize(), target, + stream); + break; + } + case kInMemoryKeyBacked: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.kind_.in_memory_key_backed_, this_._impl_.kind_.in_memory_key_backed_->GetCachedSize(), target, + stream); + break; + } + case kBlink: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.kind_.blink_, this_._impl_.kind_.blink_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CreateInputTableRequest_InputTableKind::ByteSizeLong(const MessageLite& base) { + const CreateInputTableRequest_InputTableKind& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CreateInputTableRequest_InputTableKind::ByteSizeLong() const { + const CreateInputTableRequest_InputTableKind& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.kind_case()) { + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly in_memory_append_only = 1; + case kInMemoryAppendOnly: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.kind_.in_memory_append_only_); + break; + } + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked in_memory_key_backed = 2; + case kInMemoryKeyBacked: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.kind_.in_memory_key_backed_); + break; + } + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink blink = 3; + case kBlink: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.kind_.blink_); + break; + } + case KIND_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CreateInputTableRequest_InputTableKind::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.kind_case()) { - case kInMemoryAppendOnly: { - _this->_internal_mutable_in_memory_append_only()->::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::MergeFrom( - from._internal_in_memory_append_only()); - break; - } - case kInMemoryKeyBacked: { - _this->_internal_mutable_in_memory_key_backed()->::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeFrom( - from._internal_in_memory_key_backed()); - break; - } - case kBlink: { - _this->_internal_mutable_blink()->::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink::MergeFrom( - from._internal_blink()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_kind(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case KIND_NOT_SET: { - break; + + switch (oneof_from_case) { + case kInMemoryAppendOnly: { + if (oneof_needs_init) { + _this->_impl_.kind_.in_memory_append_only_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(arena, *from._impl_.kind_.in_memory_append_only_); + } else { + _this->_impl_.kind_.in_memory_append_only_->MergeFrom(from._internal_in_memory_append_only()); + } + break; + } + case kInMemoryKeyBacked: { + if (oneof_needs_init) { + _this->_impl_.kind_.in_memory_key_backed_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(arena, *from._impl_.kind_.in_memory_key_backed_); + } else { + _this->_impl_.kind_.in_memory_key_backed_->MergeFrom(from._internal_in_memory_key_backed()); + } + break; + } + case kBlink: { + if (oneof_needs_init) { + _this->_impl_.kind_.blink_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(arena, *from._impl_.kind_.blink_); + } else { + _this->_impl_.kind_.blink_->MergeFrom(from._internal_blink()); + } + break; + } + case KIND_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -36456,13 +41941,7 @@ void CreateInputTableRequest_InputTableKind::CopyFrom(const CreateInputTableRequ MergeFrom(from); } -PROTOBUF_NOINLINE bool CreateInputTableRequest_InputTableKind::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CreateInputTableRequest_InputTableKind::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CreateInputTableRequest_InputTableKind::InternalSwap(CreateInputTableRequest_InputTableKind* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -36471,41 +41950,22 @@ void CreateInputTableRequest_InputTableKind::InternalSwap(CreateInputTableReques } ::google::protobuf::Metadata CreateInputTableRequest_InputTableKind::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[118]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class CreateInputTableRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_._has_bits_); + 8 * PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_._has_bits_); static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const CreateInputTableRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_table_id(const CreateInputTableRequest* msg); - static const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& kind(const CreateInputTableRequest* msg); - static void set_has_kind(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, _impl_._oneof_case_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& CreateInputTableRequest::_Internal::result_id(const CreateInputTableRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& CreateInputTableRequest::_Internal::source_table_id(const CreateInputTableRequest* msg) { - return *msg->_impl_.definition_.source_table_id_; -} -const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& CreateInputTableRequest::_Internal::kind(const CreateInputTableRequest* msg) { - return *msg->_impl_.kind_; -} void CreateInputTableRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } @@ -36523,13 +41983,17 @@ void CreateInputTableRequest::set_allocated_source_table_id(::io::deephaven::pro // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) } CreateInputTableRequest::CreateInputTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) } inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, definition_{}, @@ -36538,24 +42002,28 @@ inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest::Impl_::Impl_( CreateInputTableRequest::CreateInputTableRequest( ::google::protobuf::Arena* arena, const CreateInputTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE CreateInputTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.kind_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>(arena, *from._impl_.kind_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.kind_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>( + arena, *from._impl_.kind_) + : nullptr; switch (definition_case()) { case DEFINITION_NOT_SET: break; case kSourceTableId: - _impl_.definition_.source_table_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.definition_.source_table_id_); + _impl_.definition_.source_table_id_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.definition_.source_table_id_); break; case kSchema: new (&_impl_.definition_.schema_) decltype(_impl_.definition_.schema_){arena, from._impl_.definition_.schema_}; @@ -36597,11 +42065,13 @@ inline void CreateInputTableRequest::SharedDtor() { void CreateInputTableRequest::clear_definition() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (definition_case()) { case kSourceTableId: { if (GetArena() == nullptr) { delete _impl_.definition_.source_table_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.definition_.source_table_id_); } break; } @@ -36617,36 +42087,34 @@ void CreateInputTableRequest::clear_definition() { } -PROTOBUF_NOINLINE void CreateInputTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.kind_ != nullptr); - _impl_.kind_->Clear(); - } - } - clear_definition(); - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* CreateInputTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + CreateInputTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_CreateInputTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &CreateInputTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &CreateInputTableRequest::ByteSizeLong, + &CreateInputTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_._cached_size_), + false, + }, + &CreateInputTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* CreateInputTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 4, 3, 0, 2> CreateInputTableRequest::_table_ = { { @@ -36659,8 +42127,12 @@ const ::_pbi::TcParseTable<1, 4, 3, 0, 2> CreateInputTableRequest::_table_ = { 4, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_CreateInputTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; {::_pbi::TcParser::FastMtS1, @@ -36691,106 +42163,136 @@ const ::_pbi::TcParseTable<1, 4, 3, 0, 2> CreateInputTableRequest::_table_ = { }}, }; -::uint8_t* CreateInputTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - switch (definition_case()) { - case kSourceTableId: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_table_id(this), - _Internal::source_table_id(this).GetCachedSize(), target, stream); - break; - } - case kSchema: { - const std::string& _s = this->_internal_schema(); - target = stream->WriteBytesMaybeAliased(3, _s, target); - break; - } - default: - break; - } - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::kind(this), - _Internal::kind(this).GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - return target; -} - -::size_t CreateInputTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void CreateInputTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.kind_); - } - - } - switch (definition_case()) { - // .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2; - case kSourceTableId: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.definition_.source_table_id_); - break; - } - // bytes schema = 3; - case kSchema: { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_schema()); - break; - } - case DEFINITION_NOT_SET: { - break; + ABSL_DCHECK(_impl_.kind_ != nullptr); + _impl_.kind_->Clear(); } } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData CreateInputTableRequest::_class_data_ = { - CreateInputTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* CreateInputTableRequest::GetClassData() const { - return &_class_data_; + clear_definition(); + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void CreateInputTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* CreateInputTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const CreateInputTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* CreateInputTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const CreateInputTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + switch (this_.definition_case()) { + case kSourceTableId: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.definition_.source_table_id_, this_._impl_.definition_.source_table_id_->GetCachedSize(), target, + stream); + break; + } + case kSchema: { + const std::string& _s = this_._internal_schema(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + break; + } + default: + break; + } + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.kind_, this_._impl_.kind_->GetCachedSize(), target, + stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t CreateInputTableRequest::ByteSizeLong(const MessageLite& base) { + const CreateInputTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t CreateInputTableRequest::ByteSizeLong() const { + const CreateInputTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.kind_); + } + } + switch (this_.definition_case()) { + // .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2; + case kSourceTableId: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.definition_.source_table_id_); + break; + } + // bytes schema = 3; + case kSchema: { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_schema()); + break; + } + case DEFINITION_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void CreateInputTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -36799,26 +42301,54 @@ void CreateInputTableRequest::MergeImpl(::google::protobuf::Message& to_msg, con cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_kind()->::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind::MergeFrom( - from._internal_kind()); + ABSL_DCHECK(from._impl_.kind_ != nullptr); + if (_this->_impl_.kind_ == nullptr) { + _this->_impl_.kind_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>(arena, *from._impl_.kind_); + } else { + _this->_impl_.kind_->MergeFrom(*from._impl_.kind_); + } } } - switch (from.definition_case()) { - case kSourceTableId: { - _this->_internal_mutable_source_table_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_table_id()); - break; - } - case kSchema: { - _this->_internal_set_schema(from._internal_schema()); - break; + _this->_impl_._has_bits_[0] |= cached_has_bits; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_definition(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case DEFINITION_NOT_SET: { - break; + + switch (oneof_from_case) { + case kSourceTableId: { + if (oneof_needs_init) { + _this->_impl_.definition_.source_table_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.definition_.source_table_id_); + } else { + _this->_impl_.definition_.source_table_id_->MergeFrom(from._internal_source_table_id()); + } + break; + } + case kSchema: { + if (oneof_needs_init) { + _this->_impl_.definition_.schema_.InitDefault(); + } + _this->_impl_.definition_.schema_.Set(from._internal_schema(), arena); + break; + } + case DEFINITION_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -36831,13 +42361,7 @@ void CreateInputTableRequest::CopyFrom(const CreateInputTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool CreateInputTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* CreateInputTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void CreateInputTableRequest::InternalSwap(CreateInputTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -36853,53 +42377,35 @@ void CreateInputTableRequest::InternalSwap(CreateInputTableRequest* PROTOBUF_RES } ::google::protobuf::Metadata CreateInputTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[119]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class WhereInRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const WhereInRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& left_id(const WhereInRequest* msg); - static void set_has_left_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& right_id(const WhereInRequest* msg); - static void set_has_right_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& WhereInRequest::_Internal::result_id(const WhereInRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::_Internal::left_id(const WhereInRequest* msg) { - return *msg->_impl_.left_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::_Internal::right_id(const WhereInRequest* msg) { - return *msg->_impl_.right_id_; -} void WhereInRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } WhereInRequest::WhereInRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.WhereInRequest) } inline PROTOBUF_NDEBUG_INLINE WhereInRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, columns_to_match_{visibility, arena, from.columns_to_match_} {} @@ -36907,22 +42413,26 @@ inline PROTOBUF_NDEBUG_INLINE WhereInRequest::Impl_::Impl_( WhereInRequest::WhereInRequest( ::google::protobuf::Arena* arena, const WhereInRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE WhereInRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.left_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_) - : nullptr; - _impl_.right_id_ = (cached_has_bits & 0x00000004u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.left_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.left_id_) + : nullptr; + _impl_.right_id_ = (cached_has_bits & 0x00000004u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.right_id_) + : nullptr; _impl_.inverted_ = from._impl_.inverted_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.WhereInRequest) @@ -36955,41 +42465,34 @@ inline void WhereInRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void WhereInRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.WhereInRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.columns_to_match_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.left_id_ != nullptr); - _impl_.left_id_->Clear(); - } - if (cached_has_bits & 0x00000004u) { - ABSL_DCHECK(_impl_.right_id_ != nullptr); - _impl_.right_id_->Clear(); - } - } - _impl_.inverted_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* WhereInRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + WhereInRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_WhereInRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &WhereInRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &WhereInRequest::ByteSizeLong, + &WhereInRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_._cached_size_), + false, + }, + &WhereInRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* WhereInRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<3, 5, 3, 73, 2> WhereInRequest::_table_ = { { @@ -37002,8 +42505,12 @@ const ::_pbi::TcParseTable<3, 5, 3, 73, 2> WhereInRequest::_table_ = { 5, // num_field_entries 3, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_WhereInRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::WhereInRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; @@ -37052,113 +42559,153 @@ const ::_pbi::TcParseTable<3, 5, 3, 73, 2> WhereInRequest::_table_ = { }}, }; -::uint8_t* WhereInRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.WhereInRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::left_id(this), - _Internal::left_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::right_id(this), - _Internal::right_id(this).GetCachedSize(), target, stream); - } - - // bool inverted = 4; - if (this->_internal_inverted() != 0) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray( - 4, this->_internal_inverted(), target); - } - - // repeated string columns_to_match = 5; - for (int i = 0, n = this->_internal_columns_to_match_size(); i < n; ++i) { - const auto& s = this->_internal_columns_to_match().Get(i); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match"); - target = stream->WriteString(5, s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.WhereInRequest) - return target; -} - -::size_t WhereInRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.WhereInRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void WhereInRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.WhereInRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string columns_to_match = 5; - total_size += 1 * ::google::protobuf::internal::FromIntSize(_internal_columns_to_match().size()); - for (int i = 0, n = _internal_columns_to_match().size(); i < n; ++i) { - total_size += ::google::protobuf::internal::WireFormatLite::StringSize( - _internal_columns_to_match().Get(i)); - } + _impl_.columns_to_match_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.left_id_); + ABSL_DCHECK(_impl_.left_id_ != nullptr); + _impl_.left_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.right_id_); + ABSL_DCHECK(_impl_.right_id_ != nullptr); + _impl_.right_id_->Clear(); } - } - // bool inverted = 4; - if (this->_internal_inverted() != 0) { - total_size += 2; - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData WhereInRequest::_class_data_ = { - WhereInRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* WhereInRequest::GetClassData() const { - return &_class_data_; + _impl_.inverted_ = false; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void WhereInRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* WhereInRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const WhereInRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* WhereInRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const WhereInRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.WhereInRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.left_id_, this_._impl_.left_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.right_id_, this_._impl_.right_id_->GetCachedSize(), target, + stream); + } + + // bool inverted = 4; + if (this_._internal_inverted() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray( + 4, this_._internal_inverted(), target); + } + + // repeated string columns_to_match = 5; + for (int i = 0, n = this_._internal_columns_to_match_size(); i < n; ++i) { + const auto& s = this_._internal_columns_to_match().Get(i); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + s.data(), static_cast(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match"); + target = stream->WriteString(5, s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.WhereInRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t WhereInRequest::ByteSizeLong(const MessageLite& base) { + const WhereInRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t WhereInRequest::ByteSizeLong() const { + const WhereInRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.WhereInRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated string columns_to_match = 5; + { + total_size += + 1 * ::google::protobuf::internal::FromIntSize(this_._internal_columns_to_match().size()); + for (int i = 0, n = this_._internal_columns_to_match().size(); i < n; ++i) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_columns_to_match().Get(i)); + } + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.left_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.right_id_); + } + } + { + // bool inverted = 4; + if (this_._internal_inverted() != 0) { + total_size += 2; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void WhereInRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.WhereInRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -37168,21 +42715,37 @@ void WhereInRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::goog cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_left_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_left_id()); + ABSL_DCHECK(from._impl_.left_id_ != nullptr); + if (_this->_impl_.left_id_ == nullptr) { + _this->_impl_.left_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.left_id_); + } else { + _this->_impl_.left_id_->MergeFrom(*from._impl_.left_id_); + } } if (cached_has_bits & 0x00000004u) { - _this->_internal_mutable_right_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_right_id()); + ABSL_DCHECK(from._impl_.right_id_ != nullptr); + if (_this->_impl_.right_id_ == nullptr) { + _this->_impl_.right_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.right_id_); + } else { + _this->_impl_.right_id_->MergeFrom(*from._impl_.right_id_); + } } } if (from._internal_inverted() != 0) { - _this->_internal_set_inverted(from._internal_inverted()); + _this->_impl_.inverted_ = from._impl_.inverted_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -37193,13 +42756,7 @@ void WhereInRequest::CopyFrom(const WhereInRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool WhereInRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* WhereInRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void WhereInRequest::InternalSwap(WhereInRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -37214,49 +42771,35 @@ void WhereInRequest::InternalSwap(WhereInRequest* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata WhereInRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[120]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class ColumnStatisticsRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& result_id(const ColumnStatisticsRequest* msg); - static void set_has_result_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static const ::io::deephaven::proto::backplane::grpc::TableReference& source_id(const ColumnStatisticsRequest* msg); - static void set_has_source_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_unique_value_limit(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } + 8 * PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& ColumnStatisticsRequest::_Internal::result_id(const ColumnStatisticsRequest* msg) { - return *msg->_impl_.result_id_; -} -const ::io::deephaven::proto::backplane::grpc::TableReference& ColumnStatisticsRequest::_Internal::source_id(const ColumnStatisticsRequest* msg) { - return *msg->_impl_.source_id_; -} void ColumnStatisticsRequest::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } ColumnStatisticsRequest::ColumnStatisticsRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) } inline PROTOBUF_NDEBUG_INLINE ColumnStatisticsRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, column_name_(arena, from.column_name_) {} @@ -37264,19 +42807,23 @@ inline PROTOBUF_NDEBUG_INLINE ColumnStatisticsRequest::Impl_::Impl_( ColumnStatisticsRequest::ColumnStatisticsRequest( ::google::protobuf::Arena* arena, const ColumnStatisticsRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE ColumnStatisticsRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.result_id_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_) - : nullptr; - _impl_.source_id_ = (cached_has_bits & 0x00000002u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_) - : nullptr; + _impl_.result_id_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.result_id_) + : nullptr; + _impl_.source_id_ = (cached_has_bits & 0x00000002u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>( + arena, *from._impl_.source_id_) + : nullptr; _impl_.unique_value_limit_ = from._impl_.unique_value_limit_; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) @@ -37309,37 +42856,34 @@ inline void ColumnStatisticsRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void ColumnStatisticsRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.column_name_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.result_id_ != nullptr); - _impl_.result_id_->Clear(); - } - if (cached_has_bits & 0x00000002u) { - ABSL_DCHECK(_impl_.source_id_ != nullptr); - _impl_.source_id_->Clear(); - } - } - _impl_.unique_value_limit_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* ColumnStatisticsRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + ColumnStatisticsRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_ColumnStatisticsRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &ColumnStatisticsRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &ColumnStatisticsRequest::ByteSizeLong, + &ColumnStatisticsRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_._cached_size_), + false, + }, + &ColumnStatisticsRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* ColumnStatisticsRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<2, 4, 2, 77, 2> ColumnStatisticsRequest::_table_ = { { @@ -37352,8 +42896,12 @@ const ::_pbi::TcParseTable<2, 4, 2, 77, 2> ColumnStatisticsRequest::_table_ = { 4, // num_field_entries 2, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_ColumnStatisticsRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // optional int32 unique_value_limit = 4; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ColumnStatisticsRequest, _impl_.unique_value_limit_), 2>(), @@ -37392,101 +42940,132 @@ const ::_pbi::TcParseTable<2, 4, 2, 77, 2> ColumnStatisticsRequest::_table_ = { }}, }; -::uint8_t* ColumnStatisticsRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::result_id(this), - _Internal::result_id(this).GetCachedSize(), target, stream); - } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - if (cached_has_bits & 0x00000002u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::source_id(this), - _Internal::source_id(this).GetCachedSize(), target, stream); - } - - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - const std::string& _s = this->_internal_column_name(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name"); - target = stream->WriteStringMaybeAliased(3, _s, target); - } - - // optional int32 unique_value_limit = 4; - if (cached_has_bits & 0x00000004u) { - target = ::google::protobuf::internal::WireFormatLite:: - WriteInt32ToArrayWithField<4>( - stream, this->_internal_unique_value_limit(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - return target; -} - -::size_t ColumnStatisticsRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void ColumnStatisticsRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string column_name = 3; - if (!this->_internal_column_name().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_column_name()); - } - + _impl_.column_name_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.result_id_); + ABSL_DCHECK(_impl_.result_id_ != nullptr); + _impl_.result_id_->Clear(); } - - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.source_id_); - } - - // optional int32 unique_value_limit = 4; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( - this->_internal_unique_value_limit()); + ABSL_DCHECK(_impl_.source_id_ != nullptr); + _impl_.source_id_->Clear(); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData ColumnStatisticsRequest::_class_data_ = { - ColumnStatisticsRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* ColumnStatisticsRequest::GetClassData() const { - return &_class_data_; + _impl_.unique_value_limit_ = 0; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void ColumnStatisticsRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* ColumnStatisticsRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const ColumnStatisticsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* ColumnStatisticsRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const ColumnStatisticsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.result_id_, this_._impl_.result_id_->GetCachedSize(), target, + stream); + } + + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.source_id_, this_._impl_.source_id_->GetCachedSize(), target, + stream); + } + + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + const std::string& _s = this_._internal_column_name(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // optional int32 unique_value_limit = 4; + if (cached_has_bits & 0x00000004u) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<4>( + stream, this_._internal_unique_value_limit(), target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t ColumnStatisticsRequest::ByteSizeLong(const MessageLite& base) { + const ColumnStatisticsRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t ColumnStatisticsRequest::ByteSizeLong() const { + const ColumnStatisticsRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string column_name = 3; + if (!this_._internal_column_name().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_column_name()); + } + } + cached_has_bits = this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.result_id_); + } + // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_id_); + } + // optional int32 unique_value_limit = 4; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this_._internal_unique_value_limit()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void ColumnStatisticsRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -37498,18 +43077,28 @@ void ColumnStatisticsRequest::MergeImpl(::google::protobuf::Message& to_msg, con cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_mutable_result_id()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_result_id()); + ABSL_DCHECK(from._impl_.result_id_ != nullptr); + if (_this->_impl_.result_id_ == nullptr) { + _this->_impl_.result_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.result_id_); + } else { + _this->_impl_.result_id_->MergeFrom(*from._impl_.result_id_); + } } if (cached_has_bits & 0x00000002u) { - _this->_internal_mutable_source_id()->::io::deephaven::proto::backplane::grpc::TableReference::MergeFrom( - from._internal_source_id()); + ABSL_DCHECK(from._impl_.source_id_ != nullptr); + if (_this->_impl_.source_id_ == nullptr) { + _this->_impl_.source_id_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(arena, *from._impl_.source_id_); + } else { + _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); + } } if (cached_has_bits & 0x00000004u) { _this->_impl_.unique_value_limit_ = from._impl_.unique_value_limit_; } - _this->_impl_._has_bits_[0] |= cached_has_bits; } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -37520,13 +43109,7 @@ void ColumnStatisticsRequest::CopyFrom(const ColumnStatisticsRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool ColumnStatisticsRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* ColumnStatisticsRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void ColumnStatisticsRequest::InternalSwap(ColumnStatisticsRequest* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -37543,182 +43126,16 @@ void ColumnStatisticsRequest::InternalSwap(ColumnStatisticsRequest* PROTOBUF_RES } ::google::protobuf::Metadata ColumnStatisticsRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[121]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class BatchTableRequest_Operation::_Internal { public: static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_._oneof_case_); - static const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& empty_table(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& time_table(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& drop_columns(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& update(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& lazy_update(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& view(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& update_view(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& select(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& select_distinct(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& filter(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& unstructured_filter(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SortTableRequest& sort(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& head(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& tail(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& head_by(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& tail_by(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::UngroupRequest& ungroup(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& merge(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& combo_aggregate(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::FlattenRequest& flatten(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& run_chart_downsample(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& cross_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& natural_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& exact_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& left_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& as_of_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& fetch_table(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& apply_preview_columns(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& create_input_table(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& update_by(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::WhereInRequest& where_in(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& aggregate_all(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::AggregateRequest& aggregate(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& snapshot(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& snapshot_when(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& meta_table(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& range_join(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& aj(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& raj(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& column_statistics(const BatchTableRequest_Operation* msg); - static const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& multi_join(const BatchTableRequest_Operation* msg); + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation, _impl_._oneof_case_); }; - -const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& BatchTableRequest_Operation::_Internal::empty_table(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.empty_table_; -} -const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& BatchTableRequest_Operation::_Internal::time_table(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.time_table_; -} -const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& BatchTableRequest_Operation::_Internal::drop_columns(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.drop_columns_; -} -const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_Internal::update(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.update_; -} -const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_Internal::lazy_update(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.lazy_update_; -} -const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_Internal::view(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.view_; -} -const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_Internal::update_view(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.update_view_; -} -const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_Internal::select(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.select_; -} -const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& BatchTableRequest_Operation::_Internal::select_distinct(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.select_distinct_; -} -const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& BatchTableRequest_Operation::_Internal::filter(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.filter_; -} -const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& BatchTableRequest_Operation::_Internal::unstructured_filter(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.unstructured_filter_; -} -const ::io::deephaven::proto::backplane::grpc::SortTableRequest& BatchTableRequest_Operation::_Internal::sort(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.sort_; -} -const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::_Internal::head(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.head_; -} -const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::_Internal::tail(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.tail_; -} -const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::_Internal::head_by(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.head_by_; -} -const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::_Internal::tail_by(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.tail_by_; -} -const ::io::deephaven::proto::backplane::grpc::UngroupRequest& BatchTableRequest_Operation::_Internal::ungroup(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.ungroup_; -} -const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& BatchTableRequest_Operation::_Internal::merge(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.merge_; -} -const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& BatchTableRequest_Operation::_Internal::combo_aggregate(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.combo_aggregate_; -} -const ::io::deephaven::proto::backplane::grpc::FlattenRequest& BatchTableRequest_Operation::_Internal::flatten(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.flatten_; -} -const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& BatchTableRequest_Operation::_Internal::run_chart_downsample(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.run_chart_downsample_; -} -const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& BatchTableRequest_Operation::_Internal::cross_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.cross_join_; -} -const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& BatchTableRequest_Operation::_Internal::natural_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.natural_join_; -} -const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& BatchTableRequest_Operation::_Internal::exact_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.exact_join_; -} -const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& BatchTableRequest_Operation::_Internal::left_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.left_join_; -} -const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& BatchTableRequest_Operation::_Internal::as_of_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.as_of_join_; -} -const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& BatchTableRequest_Operation::_Internal::fetch_table(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.fetch_table_; -} -const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& BatchTableRequest_Operation::_Internal::apply_preview_columns(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.apply_preview_columns_; -} -const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& BatchTableRequest_Operation::_Internal::create_input_table(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.create_input_table_; -} -const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& BatchTableRequest_Operation::_Internal::update_by(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.update_by_; -} -const ::io::deephaven::proto::backplane::grpc::WhereInRequest& BatchTableRequest_Operation::_Internal::where_in(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.where_in_; -} -const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& BatchTableRequest_Operation::_Internal::aggregate_all(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.aggregate_all_; -} -const ::io::deephaven::proto::backplane::grpc::AggregateRequest& BatchTableRequest_Operation::_Internal::aggregate(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.aggregate_; -} -const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& BatchTableRequest_Operation::_Internal::snapshot(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.snapshot_; -} -const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& BatchTableRequest_Operation::_Internal::snapshot_when(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.snapshot_when_; -} -const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& BatchTableRequest_Operation::_Internal::meta_table(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.meta_table_; -} -const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& BatchTableRequest_Operation::_Internal::range_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.range_join_; -} -const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::_Internal::aj(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.aj_; -} -const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::_Internal::raj(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.raj_; -} -const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& BatchTableRequest_Operation::_Internal::column_statistics(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.column_statistics_; -} -const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& BatchTableRequest_Operation::_Internal::multi_join(const BatchTableRequest_Operation* msg) { - return *msg->_impl_.op_.multi_join_; -} + void BatchTableRequest_Operation::set_allocated_empty_table(::io::deephaven::proto::backplane::grpc::EmptyTableRequest* empty_table) { ::google::protobuf::Arena* message_arena = GetArena(); clear_op(); @@ -38253,13 +43670,17 @@ void BatchTableRequest_Operation::set_allocated_multi_join(::io::deephaven::prot // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) } BatchTableRequest_Operation::BatchTableRequest_Operation(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) } inline PROTOBUF_NDEBUG_INLINE BatchTableRequest_Operation::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation& from_msg) : op_{}, _cached_size_{0}, _oneof_case_{from._oneof_case_[0]} {} @@ -38267,137 +43688,141 @@ inline PROTOBUF_NDEBUG_INLINE BatchTableRequest_Operation::Impl_::Impl_( BatchTableRequest_Operation::BatchTableRequest_Operation( ::google::protobuf::Arena* arena, const BatchTableRequest_Operation& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BatchTableRequest_Operation* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); switch (op_case()) { case OP_NOT_SET: break; case kEmptyTable: - _impl_.op_.empty_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(arena, *from._impl_.op_.empty_table_); + _impl_.op_.empty_table_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(arena, *from._impl_.op_.empty_table_); break; case kTimeTable: - _impl_.op_.time_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(arena, *from._impl_.op_.time_table_); + _impl_.op_.time_table_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(arena, *from._impl_.op_.time_table_); break; case kDropColumns: - _impl_.op_.drop_columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(arena, *from._impl_.op_.drop_columns_); + _impl_.op_.drop_columns_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(arena, *from._impl_.op_.drop_columns_); break; case kUpdate: - _impl_.op_.update_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_); + _impl_.op_.update_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_); break; case kLazyUpdate: - _impl_.op_.lazy_update_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.lazy_update_); + _impl_.op_.lazy_update_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.lazy_update_); break; case kView: - _impl_.op_.view_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.view_); + _impl_.op_.view_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.view_); break; case kUpdateView: - _impl_.op_.update_view_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_view_); + _impl_.op_.update_view_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_view_); break; case kSelect: - _impl_.op_.select_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.select_); + _impl_.op_.select_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.select_); break; case kSelectDistinct: - _impl_.op_.select_distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(arena, *from._impl_.op_.select_distinct_); + _impl_.op_.select_distinct_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(arena, *from._impl_.op_.select_distinct_); break; case kFilter: - _impl_.op_.filter_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(arena, *from._impl_.op_.filter_); + _impl_.op_.filter_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(arena, *from._impl_.op_.filter_); break; case kUnstructuredFilter: - _impl_.op_.unstructured_filter_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(arena, *from._impl_.op_.unstructured_filter_); + _impl_.op_.unstructured_filter_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(arena, *from._impl_.op_.unstructured_filter_); break; case kSort: - _impl_.op_.sort_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SortTableRequest>(arena, *from._impl_.op_.sort_); + _impl_.op_.sort_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SortTableRequest>(arena, *from._impl_.op_.sort_); break; case kHead: - _impl_.op_.head_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.head_); + _impl_.op_.head_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.head_); break; case kTail: - _impl_.op_.tail_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.tail_); + _impl_.op_.tail_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.tail_); break; case kHeadBy: - _impl_.op_.head_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.head_by_); + _impl_.op_.head_by_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.head_by_); break; case kTailBy: - _impl_.op_.tail_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.tail_by_); + _impl_.op_.tail_by_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.tail_by_); break; case kUngroup: - _impl_.op_.ungroup_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UngroupRequest>(arena, *from._impl_.op_.ungroup_); + _impl_.op_.ungroup_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UngroupRequest>(arena, *from._impl_.op_.ungroup_); break; case kMerge: - _impl_.op_.merge_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(arena, *from._impl_.op_.merge_); + _impl_.op_.merge_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(arena, *from._impl_.op_.merge_); break; case kComboAggregate: - _impl_.op_.combo_aggregate_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(arena, *from._impl_.op_.combo_aggregate_); + _impl_.op_.combo_aggregate_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(arena, *from._impl_.op_.combo_aggregate_); break; case kFlatten: - _impl_.op_.flatten_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FlattenRequest>(arena, *from._impl_.op_.flatten_); + _impl_.op_.flatten_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FlattenRequest>(arena, *from._impl_.op_.flatten_); break; case kRunChartDownsample: - _impl_.op_.run_chart_downsample_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(arena, *from._impl_.op_.run_chart_downsample_); + _impl_.op_.run_chart_downsample_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(arena, *from._impl_.op_.run_chart_downsample_); break; case kCrossJoin: - _impl_.op_.cross_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(arena, *from._impl_.op_.cross_join_); + _impl_.op_.cross_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(arena, *from._impl_.op_.cross_join_); break; case kNaturalJoin: - _impl_.op_.natural_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(arena, *from._impl_.op_.natural_join_); + _impl_.op_.natural_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(arena, *from._impl_.op_.natural_join_); break; case kExactJoin: - _impl_.op_.exact_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(arena, *from._impl_.op_.exact_join_); + _impl_.op_.exact_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(arena, *from._impl_.op_.exact_join_); break; case kLeftJoin: - _impl_.op_.left_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(arena, *from._impl_.op_.left_join_); + _impl_.op_.left_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(arena, *from._impl_.op_.left_join_); break; case kAsOfJoin: - _impl_.op_.as_of_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(arena, *from._impl_.op_.as_of_join_); + _impl_.op_.as_of_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(arena, *from._impl_.op_.as_of_join_); break; case kFetchTable: - _impl_.op_.fetch_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(arena, *from._impl_.op_.fetch_table_); + _impl_.op_.fetch_table_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(arena, *from._impl_.op_.fetch_table_); break; case kApplyPreviewColumns: - _impl_.op_.apply_preview_columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(arena, *from._impl_.op_.apply_preview_columns_); + _impl_.op_.apply_preview_columns_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(arena, *from._impl_.op_.apply_preview_columns_); break; case kCreateInputTable: - _impl_.op_.create_input_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(arena, *from._impl_.op_.create_input_table_); + _impl_.op_.create_input_table_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(arena, *from._impl_.op_.create_input_table_); break; case kUpdateBy: - _impl_.op_.update_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(arena, *from._impl_.op_.update_by_); + _impl_.op_.update_by_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(arena, *from._impl_.op_.update_by_); break; case kWhereIn: - _impl_.op_.where_in_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::WhereInRequest>(arena, *from._impl_.op_.where_in_); + _impl_.op_.where_in_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::WhereInRequest>(arena, *from._impl_.op_.where_in_); break; case kAggregateAll: - _impl_.op_.aggregate_all_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(arena, *from._impl_.op_.aggregate_all_); + _impl_.op_.aggregate_all_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(arena, *from._impl_.op_.aggregate_all_); break; case kAggregate: - _impl_.op_.aggregate_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggregateRequest>(arena, *from._impl_.op_.aggregate_); + _impl_.op_.aggregate_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggregateRequest>(arena, *from._impl_.op_.aggregate_); break; case kSnapshot: - _impl_.op_.snapshot_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(arena, *from._impl_.op_.snapshot_); + _impl_.op_.snapshot_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(arena, *from._impl_.op_.snapshot_); break; case kSnapshotWhen: - _impl_.op_.snapshot_when_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(arena, *from._impl_.op_.snapshot_when_); + _impl_.op_.snapshot_when_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(arena, *from._impl_.op_.snapshot_when_); break; case kMetaTable: - _impl_.op_.meta_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(arena, *from._impl_.op_.meta_table_); + _impl_.op_.meta_table_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(arena, *from._impl_.op_.meta_table_); break; case kRangeJoin: - _impl_.op_.range_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(arena, *from._impl_.op_.range_join_); + _impl_.op_.range_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(arena, *from._impl_.op_.range_join_); break; case kAj: - _impl_.op_.aj_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.aj_); + _impl_.op_.aj_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.aj_); break; case kRaj: - _impl_.op_.raj_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.raj_); + _impl_.op_.raj_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.raj_); break; case kColumnStatistics: - _impl_.op_.column_statistics_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(arena, *from._impl_.op_.column_statistics_); + _impl_.op_.column_statistics_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(arena, *from._impl_.op_.column_statistics_); break; case kMultiJoin: - _impl_.op_.multi_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(arena, *from._impl_.op_.multi_join_); + _impl_.op_.multi_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(arena, *from._impl_.op_.multi_join_); break; } @@ -38428,251 +43853,333 @@ inline void BatchTableRequest_Operation::SharedDtor() { void BatchTableRequest_Operation::clear_op() { // @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); switch (op_case()) { case kEmptyTable: { if (GetArena() == nullptr) { delete _impl_.op_.empty_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.empty_table_); } break; } case kTimeTable: { if (GetArena() == nullptr) { delete _impl_.op_.time_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.time_table_); } break; } case kDropColumns: { if (GetArena() == nullptr) { delete _impl_.op_.drop_columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.drop_columns_); } break; } case kUpdate: { if (GetArena() == nullptr) { delete _impl_.op_.update_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_); } break; } case kLazyUpdate: { if (GetArena() == nullptr) { delete _impl_.op_.lazy_update_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.lazy_update_); } break; } case kView: { if (GetArena() == nullptr) { delete _impl_.op_.view_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.view_); } break; } case kUpdateView: { if (GetArena() == nullptr) { delete _impl_.op_.update_view_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_view_); } break; } case kSelect: { if (GetArena() == nullptr) { delete _impl_.op_.select_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.select_); } break; } case kSelectDistinct: { if (GetArena() == nullptr) { delete _impl_.op_.select_distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.select_distinct_); } break; } case kFilter: { if (GetArena() == nullptr) { delete _impl_.op_.filter_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.filter_); } break; } case kUnstructuredFilter: { if (GetArena() == nullptr) { delete _impl_.op_.unstructured_filter_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.unstructured_filter_); } break; } case kSort: { if (GetArena() == nullptr) { delete _impl_.op_.sort_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.sort_); } break; } case kHead: { if (GetArena() == nullptr) { delete _impl_.op_.head_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.head_); } break; } case kTail: { if (GetArena() == nullptr) { delete _impl_.op_.tail_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.tail_); } break; } case kHeadBy: { if (GetArena() == nullptr) { delete _impl_.op_.head_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.head_by_); } break; } case kTailBy: { if (GetArena() == nullptr) { delete _impl_.op_.tail_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.tail_by_); } break; } case kUngroup: { if (GetArena() == nullptr) { delete _impl_.op_.ungroup_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.ungroup_); } break; } case kMerge: { if (GetArena() == nullptr) { delete _impl_.op_.merge_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.merge_); } break; } case kComboAggregate: { if (GetArena() == nullptr) { delete _impl_.op_.combo_aggregate_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.combo_aggregate_); } break; } case kFlatten: { if (GetArena() == nullptr) { delete _impl_.op_.flatten_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.flatten_); } break; } case kRunChartDownsample: { if (GetArena() == nullptr) { delete _impl_.op_.run_chart_downsample_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.run_chart_downsample_); } break; } case kCrossJoin: { if (GetArena() == nullptr) { delete _impl_.op_.cross_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.cross_join_); } break; } case kNaturalJoin: { if (GetArena() == nullptr) { delete _impl_.op_.natural_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.natural_join_); } break; } case kExactJoin: { if (GetArena() == nullptr) { delete _impl_.op_.exact_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.exact_join_); } break; } case kLeftJoin: { if (GetArena() == nullptr) { delete _impl_.op_.left_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.left_join_); } break; } case kAsOfJoin: { if (GetArena() == nullptr) { delete _impl_.op_.as_of_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.as_of_join_); } break; } case kFetchTable: { if (GetArena() == nullptr) { delete _impl_.op_.fetch_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.fetch_table_); } break; } case kApplyPreviewColumns: { if (GetArena() == nullptr) { delete _impl_.op_.apply_preview_columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.apply_preview_columns_); } break; } case kCreateInputTable: { if (GetArena() == nullptr) { delete _impl_.op_.create_input_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.create_input_table_); } break; } case kUpdateBy: { if (GetArena() == nullptr) { delete _impl_.op_.update_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_by_); } break; } case kWhereIn: { if (GetArena() == nullptr) { delete _impl_.op_.where_in_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.where_in_); } break; } case kAggregateAll: { if (GetArena() == nullptr) { delete _impl_.op_.aggregate_all_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aggregate_all_); } break; } case kAggregate: { if (GetArena() == nullptr) { delete _impl_.op_.aggregate_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aggregate_); } break; } case kSnapshot: { if (GetArena() == nullptr) { delete _impl_.op_.snapshot_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.snapshot_); } break; } case kSnapshotWhen: { if (GetArena() == nullptr) { delete _impl_.op_.snapshot_when_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.snapshot_when_); } break; } case kMetaTable: { if (GetArena() == nullptr) { delete _impl_.op_.meta_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.meta_table_); } break; } case kRangeJoin: { if (GetArena() == nullptr) { delete _impl_.op_.range_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.range_join_); } break; } case kAj: { if (GetArena() == nullptr) { delete _impl_.op_.aj_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aj_); } break; } case kRaj: { if (GetArena() == nullptr) { delete _impl_.op_.raj_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.raj_); } break; } case kColumnStatistics: { if (GetArena() == nullptr) { delete _impl_.op_.column_statistics_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.column_statistics_); } break; } case kMultiJoin: { if (GetArena() == nullptr) { delete _impl_.op_.multi_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.multi_join_); } break; } @@ -38684,24 +44191,34 @@ void BatchTableRequest_Operation::clear_op() { } -PROTOBUF_NOINLINE void BatchTableRequest_Operation::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_op(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* BatchTableRequest_Operation::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BatchTableRequest_Operation::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_BatchTableRequest_Operation_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BatchTableRequest_Operation::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &BatchTableRequest_Operation::ByteSizeLong, + &BatchTableRequest_Operation::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_._cached_size_), + false, + }, + &BatchTableRequest_Operation::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BatchTableRequest_Operation::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 41, 41, 0, 7> BatchTableRequest_Operation::_table_ = { { @@ -38714,8 +44231,12 @@ const ::_pbi::TcParseTable<0, 41, 41, 0, 7> BatchTableRequest_Operation::_table_ 41, // num_field_entries 41, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_BatchTableRequest_Operation_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ {::_pbi::TcParser::MiniParse, {}}, }}, {{ @@ -38884,766 +44405,959 @@ const ::_pbi::TcParseTable<0, 41, 41, 0, 7> BatchTableRequest_Operation::_table_ {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MetaTableRequest>()}, {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>()}, - }}, {{ - }}, -}; - -::uint8_t* BatchTableRequest_Operation::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - switch (op_case()) { - case kEmptyTable: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::empty_table(this), - _Internal::empty_table(this).GetCachedSize(), target, stream); - break; - } - case kTimeTable: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 2, _Internal::time_table(this), - _Internal::time_table(this).GetCachedSize(), target, stream); - break; - } - case kDropColumns: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 3, _Internal::drop_columns(this), - _Internal::drop_columns(this).GetCachedSize(), target, stream); - break; - } - case kUpdate: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 4, _Internal::update(this), - _Internal::update(this).GetCachedSize(), target, stream); - break; - } - case kLazyUpdate: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 5, _Internal::lazy_update(this), - _Internal::lazy_update(this).GetCachedSize(), target, stream); - break; - } - case kView: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 6, _Internal::view(this), - _Internal::view(this).GetCachedSize(), target, stream); - break; - } - case kUpdateView: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 7, _Internal::update_view(this), - _Internal::update_view(this).GetCachedSize(), target, stream); - break; - } - case kSelect: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 8, _Internal::select(this), - _Internal::select(this).GetCachedSize(), target, stream); - break; - } - case kSelectDistinct: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 9, _Internal::select_distinct(this), - _Internal::select_distinct(this).GetCachedSize(), target, stream); - break; - } - case kFilter: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 10, _Internal::filter(this), - _Internal::filter(this).GetCachedSize(), target, stream); - break; - } - case kUnstructuredFilter: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 11, _Internal::unstructured_filter(this), - _Internal::unstructured_filter(this).GetCachedSize(), target, stream); - break; - } - case kSort: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 12, _Internal::sort(this), - _Internal::sort(this).GetCachedSize(), target, stream); - break; - } - case kHead: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 13, _Internal::head(this), - _Internal::head(this).GetCachedSize(), target, stream); - break; - } - case kTail: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 14, _Internal::tail(this), - _Internal::tail(this).GetCachedSize(), target, stream); - break; - } - case kHeadBy: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 15, _Internal::head_by(this), - _Internal::head_by(this).GetCachedSize(), target, stream); - break; - } - case kTailBy: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 16, _Internal::tail_by(this), - _Internal::tail_by(this).GetCachedSize(), target, stream); - break; - } - case kUngroup: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 17, _Internal::ungroup(this), - _Internal::ungroup(this).GetCachedSize(), target, stream); - break; - } - case kMerge: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 18, _Internal::merge(this), - _Internal::merge(this).GetCachedSize(), target, stream); - break; - } - case kComboAggregate: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 19, _Internal::combo_aggregate(this), - _Internal::combo_aggregate(this).GetCachedSize(), target, stream); - break; - } - case kFlatten: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 21, _Internal::flatten(this), - _Internal::flatten(this).GetCachedSize(), target, stream); - break; - } - case kRunChartDownsample: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 22, _Internal::run_chart_downsample(this), - _Internal::run_chart_downsample(this).GetCachedSize(), target, stream); - break; - } - case kCrossJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 23, _Internal::cross_join(this), - _Internal::cross_join(this).GetCachedSize(), target, stream); - break; - } - case kNaturalJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 24, _Internal::natural_join(this), - _Internal::natural_join(this).GetCachedSize(), target, stream); - break; - } - case kExactJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 25, _Internal::exact_join(this), - _Internal::exact_join(this).GetCachedSize(), target, stream); - break; - } - case kLeftJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 26, _Internal::left_join(this), - _Internal::left_join(this).GetCachedSize(), target, stream); - break; - } - case kAsOfJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 27, _Internal::as_of_join(this), - _Internal::as_of_join(this).GetCachedSize(), target, stream); - break; - } - case kFetchTable: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 28, _Internal::fetch_table(this), - _Internal::fetch_table(this).GetCachedSize(), target, stream); - break; - } - case kApplyPreviewColumns: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 30, _Internal::apply_preview_columns(this), - _Internal::apply_preview_columns(this).GetCachedSize(), target, stream); - break; - } - case kCreateInputTable: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 31, _Internal::create_input_table(this), - _Internal::create_input_table(this).GetCachedSize(), target, stream); - break; - } - case kUpdateBy: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 32, _Internal::update_by(this), - _Internal::update_by(this).GetCachedSize(), target, stream); - break; - } - case kWhereIn: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 33, _Internal::where_in(this), - _Internal::where_in(this).GetCachedSize(), target, stream); - break; - } - case kAggregateAll: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 34, _Internal::aggregate_all(this), - _Internal::aggregate_all(this).GetCachedSize(), target, stream); - break; - } - case kAggregate: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 35, _Internal::aggregate(this), - _Internal::aggregate(this).GetCachedSize(), target, stream); - break; - } - case kSnapshot: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 36, _Internal::snapshot(this), - _Internal::snapshot(this).GetCachedSize(), target, stream); - break; - } - case kSnapshotWhen: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 37, _Internal::snapshot_when(this), - _Internal::snapshot_when(this).GetCachedSize(), target, stream); - break; - } - case kMetaTable: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 38, _Internal::meta_table(this), - _Internal::meta_table(this).GetCachedSize(), target, stream); - break; - } - case kRangeJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 39, _Internal::range_join(this), - _Internal::range_join(this).GetCachedSize(), target, stream); - break; - } - case kAj: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 40, _Internal::aj(this), - _Internal::aj(this).GetCachedSize(), target, stream); - break; - } - case kRaj: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 41, _Internal::raj(this), - _Internal::raj(this).GetCachedSize(), target, stream); - break; - } - case kColumnStatistics: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 42, _Internal::column_statistics(this), - _Internal::column_statistics(this).GetCachedSize(), target, stream); - break; - } - case kMultiJoin: { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 43, _Internal::multi_join(this), - _Internal::multi_join(this).GetCachedSize(), target, stream); - break; - } - default: - break; - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - return target; -} - -::size_t BatchTableRequest_Operation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - ::size_t total_size = 0; - - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - switch (op_case()) { - // .io.deephaven.proto.backplane.grpc.EmptyTableRequest empty_table = 1; - case kEmptyTable: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.empty_table_); - break; - } - // .io.deephaven.proto.backplane.grpc.TimeTableRequest time_table = 2; - case kTimeTable: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.time_table_); - break; - } - // .io.deephaven.proto.backplane.grpc.DropColumnsRequest drop_columns = 3; - case kDropColumns: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.drop_columns_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update = 4; - case kUpdate: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.update_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest lazy_update = 5; - case kLazyUpdate: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.lazy_update_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest view = 6; - case kView: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.view_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update_view = 7; - case kUpdateView: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.update_view_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest select = 8; - case kSelect: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.select_); - break; - } - // .io.deephaven.proto.backplane.grpc.SelectDistinctRequest select_distinct = 9; - case kSelectDistinct: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.select_distinct_); - break; - } - // .io.deephaven.proto.backplane.grpc.FilterTableRequest filter = 10; - case kFilter: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.filter_); - break; - } - // .io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest unstructured_filter = 11; - case kUnstructuredFilter: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.unstructured_filter_); - break; - } - // .io.deephaven.proto.backplane.grpc.SortTableRequest sort = 12; - case kSort: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.sort_); - break; - } - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest head = 13; - case kHead: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.head_); - break; - } - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest tail = 14; - case kTail: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.tail_); - break; - } - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest head_by = 15; - case kHeadBy: { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.head_by_); - break; - } - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest tail_by = 16; - case kTailBy: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.tail_by_); - break; - } - // .io.deephaven.proto.backplane.grpc.UngroupRequest ungroup = 17; - case kUngroup: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.ungroup_); - break; - } - // .io.deephaven.proto.backplane.grpc.MergeTablesRequest merge = 18; - case kMerge: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.merge_); - break; - } - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest combo_aggregate = 19; - case kComboAggregate: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.combo_aggregate_); - break; - } - // .io.deephaven.proto.backplane.grpc.FlattenRequest flatten = 21; - case kFlatten: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.flatten_); - break; - } - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest run_chart_downsample = 22; - case kRunChartDownsample: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.run_chart_downsample_); - break; - } - // .io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest cross_join = 23; - case kCrossJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.cross_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest natural_join = 24; - case kNaturalJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.natural_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest exact_join = 25; - case kExactJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.exact_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest left_join = 26; - case kLeftJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.left_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest as_of_join = 27 [deprecated = true]; - case kAsOfJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.as_of_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.FetchTableRequest fetch_table = 28; - case kFetchTable: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.fetch_table_); - break; - } - // .io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest apply_preview_columns = 30; - case kApplyPreviewColumns: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.apply_preview_columns_); - break; - } - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest create_input_table = 31; - case kCreateInputTable: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.create_input_table_); - break; - } - // .io.deephaven.proto.backplane.grpc.UpdateByRequest update_by = 32; - case kUpdateBy: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.update_by_); - break; - } - // .io.deephaven.proto.backplane.grpc.WhereInRequest where_in = 33; - case kWhereIn: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.where_in_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggregateAllRequest aggregate_all = 34; - case kAggregateAll: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.aggregate_all_); - break; - } - // .io.deephaven.proto.backplane.grpc.AggregateRequest aggregate = 35; - case kAggregate: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.aggregate_); - break; - } - // .io.deephaven.proto.backplane.grpc.SnapshotTableRequest snapshot = 36; - case kSnapshot: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.snapshot_); - break; - } - // .io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest snapshot_when = 37; - case kSnapshotWhen: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.snapshot_when_); - break; - } - // .io.deephaven.proto.backplane.grpc.MetaTableRequest meta_table = 38; - case kMetaTable: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.meta_table_); - break; - } - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest range_join = 39; - case kRangeJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.range_join_); - break; - } - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest aj = 40; - case kAj: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.aj_); - break; - } - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest raj = 41; - case kRaj: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.raj_); - break; - } - // .io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest column_statistics = 42; - case kColumnStatistics: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.column_statistics_); - break; - } - // .io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest multi_join = 43; - case kMultiJoin: { - total_size += - 2 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.op_.multi_join_); - break; - } - case OP_NOT_SET: { - break; - } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData BatchTableRequest_Operation::_class_data_ = { - BatchTableRequest_Operation::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>()}, + {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>()}, + }}, {{ + }}, }; -const ::google::protobuf::Message::ClassData* BatchTableRequest_Operation::GetClassData() const { - return &_class_data_; + +PROTOBUF_NOINLINE void BatchTableRequest_Operation::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) + ::google::protobuf::internal::TSanWrite(&_impl_); + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + clear_op(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void BatchTableRequest_Operation::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* BatchTableRequest_Operation::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const BatchTableRequest_Operation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* BatchTableRequest_Operation::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const BatchTableRequest_Operation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + switch (this_.op_case()) { + case kEmptyTable: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.op_.empty_table_, this_._impl_.op_.empty_table_->GetCachedSize(), target, + stream); + break; + } + case kTimeTable: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 2, *this_._impl_.op_.time_table_, this_._impl_.op_.time_table_->GetCachedSize(), target, + stream); + break; + } + case kDropColumns: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 3, *this_._impl_.op_.drop_columns_, this_._impl_.op_.drop_columns_->GetCachedSize(), target, + stream); + break; + } + case kUpdate: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 4, *this_._impl_.op_.update_, this_._impl_.op_.update_->GetCachedSize(), target, + stream); + break; + } + case kLazyUpdate: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 5, *this_._impl_.op_.lazy_update_, this_._impl_.op_.lazy_update_->GetCachedSize(), target, + stream); + break; + } + case kView: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 6, *this_._impl_.op_.view_, this_._impl_.op_.view_->GetCachedSize(), target, + stream); + break; + } + case kUpdateView: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 7, *this_._impl_.op_.update_view_, this_._impl_.op_.update_view_->GetCachedSize(), target, + stream); + break; + } + case kSelect: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 8, *this_._impl_.op_.select_, this_._impl_.op_.select_->GetCachedSize(), target, + stream); + break; + } + case kSelectDistinct: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 9, *this_._impl_.op_.select_distinct_, this_._impl_.op_.select_distinct_->GetCachedSize(), target, + stream); + break; + } + case kFilter: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 10, *this_._impl_.op_.filter_, this_._impl_.op_.filter_->GetCachedSize(), target, + stream); + break; + } + case kUnstructuredFilter: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 11, *this_._impl_.op_.unstructured_filter_, this_._impl_.op_.unstructured_filter_->GetCachedSize(), target, + stream); + break; + } + case kSort: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 12, *this_._impl_.op_.sort_, this_._impl_.op_.sort_->GetCachedSize(), target, + stream); + break; + } + case kHead: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 13, *this_._impl_.op_.head_, this_._impl_.op_.head_->GetCachedSize(), target, + stream); + break; + } + case kTail: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 14, *this_._impl_.op_.tail_, this_._impl_.op_.tail_->GetCachedSize(), target, + stream); + break; + } + case kHeadBy: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 15, *this_._impl_.op_.head_by_, this_._impl_.op_.head_by_->GetCachedSize(), target, + stream); + break; + } + case kTailBy: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 16, *this_._impl_.op_.tail_by_, this_._impl_.op_.tail_by_->GetCachedSize(), target, + stream); + break; + } + case kUngroup: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 17, *this_._impl_.op_.ungroup_, this_._impl_.op_.ungroup_->GetCachedSize(), target, + stream); + break; + } + case kMerge: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 18, *this_._impl_.op_.merge_, this_._impl_.op_.merge_->GetCachedSize(), target, + stream); + break; + } + case kComboAggregate: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 19, *this_._impl_.op_.combo_aggregate_, this_._impl_.op_.combo_aggregate_->GetCachedSize(), target, + stream); + break; + } + case kFlatten: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 21, *this_._impl_.op_.flatten_, this_._impl_.op_.flatten_->GetCachedSize(), target, + stream); + break; + } + case kRunChartDownsample: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 22, *this_._impl_.op_.run_chart_downsample_, this_._impl_.op_.run_chart_downsample_->GetCachedSize(), target, + stream); + break; + } + case kCrossJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 23, *this_._impl_.op_.cross_join_, this_._impl_.op_.cross_join_->GetCachedSize(), target, + stream); + break; + } + case kNaturalJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 24, *this_._impl_.op_.natural_join_, this_._impl_.op_.natural_join_->GetCachedSize(), target, + stream); + break; + } + case kExactJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 25, *this_._impl_.op_.exact_join_, this_._impl_.op_.exact_join_->GetCachedSize(), target, + stream); + break; + } + case kLeftJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 26, *this_._impl_.op_.left_join_, this_._impl_.op_.left_join_->GetCachedSize(), target, + stream); + break; + } + case kAsOfJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 27, *this_._impl_.op_.as_of_join_, this_._impl_.op_.as_of_join_->GetCachedSize(), target, + stream); + break; + } + case kFetchTable: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 28, *this_._impl_.op_.fetch_table_, this_._impl_.op_.fetch_table_->GetCachedSize(), target, + stream); + break; + } + case kApplyPreviewColumns: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 30, *this_._impl_.op_.apply_preview_columns_, this_._impl_.op_.apply_preview_columns_->GetCachedSize(), target, + stream); + break; + } + case kCreateInputTable: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 31, *this_._impl_.op_.create_input_table_, this_._impl_.op_.create_input_table_->GetCachedSize(), target, + stream); + break; + } + case kUpdateBy: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 32, *this_._impl_.op_.update_by_, this_._impl_.op_.update_by_->GetCachedSize(), target, + stream); + break; + } + case kWhereIn: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 33, *this_._impl_.op_.where_in_, this_._impl_.op_.where_in_->GetCachedSize(), target, + stream); + break; + } + case kAggregateAll: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 34, *this_._impl_.op_.aggregate_all_, this_._impl_.op_.aggregate_all_->GetCachedSize(), target, + stream); + break; + } + case kAggregate: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 35, *this_._impl_.op_.aggregate_, this_._impl_.op_.aggregate_->GetCachedSize(), target, + stream); + break; + } + case kSnapshot: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 36, *this_._impl_.op_.snapshot_, this_._impl_.op_.snapshot_->GetCachedSize(), target, + stream); + break; + } + case kSnapshotWhen: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 37, *this_._impl_.op_.snapshot_when_, this_._impl_.op_.snapshot_when_->GetCachedSize(), target, + stream); + break; + } + case kMetaTable: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 38, *this_._impl_.op_.meta_table_, this_._impl_.op_.meta_table_->GetCachedSize(), target, + stream); + break; + } + case kRangeJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 39, *this_._impl_.op_.range_join_, this_._impl_.op_.range_join_->GetCachedSize(), target, + stream); + break; + } + case kAj: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 40, *this_._impl_.op_.aj_, this_._impl_.op_.aj_->GetCachedSize(), target, + stream); + break; + } + case kRaj: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 41, *this_._impl_.op_.raj_, this_._impl_.op_.raj_->GetCachedSize(), target, + stream); + break; + } + case kColumnStatistics: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 42, *this_._impl_.op_.column_statistics_, this_._impl_.op_.column_statistics_->GetCachedSize(), target, + stream); + break; + } + case kMultiJoin: { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 43, *this_._impl_.op_.multi_join_, this_._impl_.op_.multi_join_->GetCachedSize(), target, + stream); + break; + } + default: + break; + } + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t BatchTableRequest_Operation::ByteSizeLong(const MessageLite& base) { + const BatchTableRequest_Operation& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t BatchTableRequest_Operation::ByteSizeLong() const { + const BatchTableRequest_Operation& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + switch (this_.op_case()) { + // .io.deephaven.proto.backplane.grpc.EmptyTableRequest empty_table = 1; + case kEmptyTable: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.empty_table_); + break; + } + // .io.deephaven.proto.backplane.grpc.TimeTableRequest time_table = 2; + case kTimeTable: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.time_table_); + break; + } + // .io.deephaven.proto.backplane.grpc.DropColumnsRequest drop_columns = 3; + case kDropColumns: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.drop_columns_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update = 4; + case kUpdate: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.update_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest lazy_update = 5; + case kLazyUpdate: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.lazy_update_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest view = 6; + case kView: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.view_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update_view = 7; + case kUpdateView: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.update_view_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest select = 8; + case kSelect: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.select_); + break; + } + // .io.deephaven.proto.backplane.grpc.SelectDistinctRequest select_distinct = 9; + case kSelectDistinct: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.select_distinct_); + break; + } + // .io.deephaven.proto.backplane.grpc.FilterTableRequest filter = 10; + case kFilter: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.filter_); + break; + } + // .io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest unstructured_filter = 11; + case kUnstructuredFilter: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.unstructured_filter_); + break; + } + // .io.deephaven.proto.backplane.grpc.SortTableRequest sort = 12; + case kSort: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.sort_); + break; + } + // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest head = 13; + case kHead: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.head_); + break; + } + // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest tail = 14; + case kTail: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.tail_); + break; + } + // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest head_by = 15; + case kHeadBy: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.head_by_); + break; + } + // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest tail_by = 16; + case kTailBy: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.tail_by_); + break; + } + // .io.deephaven.proto.backplane.grpc.UngroupRequest ungroup = 17; + case kUngroup: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.ungroup_); + break; + } + // .io.deephaven.proto.backplane.grpc.MergeTablesRequest merge = 18; + case kMerge: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.merge_); + break; + } + // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest combo_aggregate = 19; + case kComboAggregate: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.combo_aggregate_); + break; + } + // .io.deephaven.proto.backplane.grpc.FlattenRequest flatten = 21; + case kFlatten: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.flatten_); + break; + } + // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest run_chart_downsample = 22; + case kRunChartDownsample: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.run_chart_downsample_); + break; + } + // .io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest cross_join = 23; + case kCrossJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.cross_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest natural_join = 24; + case kNaturalJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.natural_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest exact_join = 25; + case kExactJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.exact_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest left_join = 26; + case kLeftJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.left_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest as_of_join = 27 [deprecated = true]; + case kAsOfJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.as_of_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.FetchTableRequest fetch_table = 28; + case kFetchTable: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.fetch_table_); + break; + } + // .io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest apply_preview_columns = 30; + case kApplyPreviewColumns: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.apply_preview_columns_); + break; + } + // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest create_input_table = 31; + case kCreateInputTable: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.create_input_table_); + break; + } + // .io.deephaven.proto.backplane.grpc.UpdateByRequest update_by = 32; + case kUpdateBy: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.update_by_); + break; + } + // .io.deephaven.proto.backplane.grpc.WhereInRequest where_in = 33; + case kWhereIn: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.where_in_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggregateAllRequest aggregate_all = 34; + case kAggregateAll: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.aggregate_all_); + break; + } + // .io.deephaven.proto.backplane.grpc.AggregateRequest aggregate = 35; + case kAggregate: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.aggregate_); + break; + } + // .io.deephaven.proto.backplane.grpc.SnapshotTableRequest snapshot = 36; + case kSnapshot: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.snapshot_); + break; + } + // .io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest snapshot_when = 37; + case kSnapshotWhen: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.snapshot_when_); + break; + } + // .io.deephaven.proto.backplane.grpc.MetaTableRequest meta_table = 38; + case kMetaTable: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.meta_table_); + break; + } + // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest range_join = 39; + case kRangeJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.range_join_); + break; + } + // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest aj = 40; + case kAj: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.aj_); + break; + } + // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest raj = 41; + case kRaj: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.raj_); + break; + } + // .io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest column_statistics = 42; + case kColumnStatistics: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.column_statistics_); + break; + } + // .io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest multi_join = 43; + case kMultiJoin: { + total_size += 2 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.op_.multi_join_); + break; + } + case OP_NOT_SET: { + break; + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void BatchTableRequest_Operation::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - switch (from.op_case()) { - case kEmptyTable: { - _this->_internal_mutable_empty_table()->::io::deephaven::proto::backplane::grpc::EmptyTableRequest::MergeFrom( - from._internal_empty_table()); - break; - } - case kTimeTable: { - _this->_internal_mutable_time_table()->::io::deephaven::proto::backplane::grpc::TimeTableRequest::MergeFrom( - from._internal_time_table()); - break; - } - case kDropColumns: { - _this->_internal_mutable_drop_columns()->::io::deephaven::proto::backplane::grpc::DropColumnsRequest::MergeFrom( - from._internal_drop_columns()); - break; - } - case kUpdate: { - _this->_internal_mutable_update()->::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest::MergeFrom( - from._internal_update()); - break; - } - case kLazyUpdate: { - _this->_internal_mutable_lazy_update()->::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest::MergeFrom( - from._internal_lazy_update()); - break; - } - case kView: { - _this->_internal_mutable_view()->::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest::MergeFrom( - from._internal_view()); - break; - } - case kUpdateView: { - _this->_internal_mutable_update_view()->::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest::MergeFrom( - from._internal_update_view()); - break; - } - case kSelect: { - _this->_internal_mutable_select()->::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest::MergeFrom( - from._internal_select()); - break; - } - case kSelectDistinct: { - _this->_internal_mutable_select_distinct()->::io::deephaven::proto::backplane::grpc::SelectDistinctRequest::MergeFrom( - from._internal_select_distinct()); - break; - } - case kFilter: { - _this->_internal_mutable_filter()->::io::deephaven::proto::backplane::grpc::FilterTableRequest::MergeFrom( - from._internal_filter()); - break; - } - case kUnstructuredFilter: { - _this->_internal_mutable_unstructured_filter()->::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest::MergeFrom( - from._internal_unstructured_filter()); - break; - } - case kSort: { - _this->_internal_mutable_sort()->::io::deephaven::proto::backplane::grpc::SortTableRequest::MergeFrom( - from._internal_sort()); - break; - } - case kHead: { - _this->_internal_mutable_head()->::io::deephaven::proto::backplane::grpc::HeadOrTailRequest::MergeFrom( - from._internal_head()); - break; - } - case kTail: { - _this->_internal_mutable_tail()->::io::deephaven::proto::backplane::grpc::HeadOrTailRequest::MergeFrom( - from._internal_tail()); - break; - } - case kHeadBy: { - _this->_internal_mutable_head_by()->::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest::MergeFrom( - from._internal_head_by()); - break; - } - case kTailBy: { - _this->_internal_mutable_tail_by()->::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest::MergeFrom( - from._internal_tail_by()); - break; - } - case kUngroup: { - _this->_internal_mutable_ungroup()->::io::deephaven::proto::backplane::grpc::UngroupRequest::MergeFrom( - from._internal_ungroup()); - break; - } - case kMerge: { - _this->_internal_mutable_merge()->::io::deephaven::proto::backplane::grpc::MergeTablesRequest::MergeFrom( - from._internal_merge()); - break; - } - case kComboAggregate: { - _this->_internal_mutable_combo_aggregate()->::io::deephaven::proto::backplane::grpc::ComboAggregateRequest::MergeFrom( - from._internal_combo_aggregate()); - break; - } - case kFlatten: { - _this->_internal_mutable_flatten()->::io::deephaven::proto::backplane::grpc::FlattenRequest::MergeFrom( - from._internal_flatten()); - break; - } - case kRunChartDownsample: { - _this->_internal_mutable_run_chart_downsample()->::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest::MergeFrom( - from._internal_run_chart_downsample()); - break; - } - case kCrossJoin: { - _this->_internal_mutable_cross_join()->::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest::MergeFrom( - from._internal_cross_join()); - break; - } - case kNaturalJoin: { - _this->_internal_mutable_natural_join()->::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest::MergeFrom( - from._internal_natural_join()); - break; - } - case kExactJoin: { - _this->_internal_mutable_exact_join()->::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest::MergeFrom( - from._internal_exact_join()); - break; - } - case kLeftJoin: { - _this->_internal_mutable_left_join()->::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest::MergeFrom( - from._internal_left_join()); - break; - } - case kAsOfJoin: { - _this->_internal_mutable_as_of_join()->::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest::MergeFrom( - from._internal_as_of_join()); - break; - } - case kFetchTable: { - _this->_internal_mutable_fetch_table()->::io::deephaven::proto::backplane::grpc::FetchTableRequest::MergeFrom( - from._internal_fetch_table()); - break; - } - case kApplyPreviewColumns: { - _this->_internal_mutable_apply_preview_columns()->::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest::MergeFrom( - from._internal_apply_preview_columns()); - break; - } - case kCreateInputTable: { - _this->_internal_mutable_create_input_table()->::io::deephaven::proto::backplane::grpc::CreateInputTableRequest::MergeFrom( - from._internal_create_input_table()); - break; - } - case kUpdateBy: { - _this->_internal_mutable_update_by()->::io::deephaven::proto::backplane::grpc::UpdateByRequest::MergeFrom( - from._internal_update_by()); - break; - } - case kWhereIn: { - _this->_internal_mutable_where_in()->::io::deephaven::proto::backplane::grpc::WhereInRequest::MergeFrom( - from._internal_where_in()); - break; - } - case kAggregateAll: { - _this->_internal_mutable_aggregate_all()->::io::deephaven::proto::backplane::grpc::AggregateAllRequest::MergeFrom( - from._internal_aggregate_all()); - break; - } - case kAggregate: { - _this->_internal_mutable_aggregate()->::io::deephaven::proto::backplane::grpc::AggregateRequest::MergeFrom( - from._internal_aggregate()); - break; - } - case kSnapshot: { - _this->_internal_mutable_snapshot()->::io::deephaven::proto::backplane::grpc::SnapshotTableRequest::MergeFrom( - from._internal_snapshot()); - break; - } - case kSnapshotWhen: { - _this->_internal_mutable_snapshot_when()->::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest::MergeFrom( - from._internal_snapshot_when()); - break; - } - case kMetaTable: { - _this->_internal_mutable_meta_table()->::io::deephaven::proto::backplane::grpc::MetaTableRequest::MergeFrom( - from._internal_meta_table()); - break; - } - case kRangeJoin: { - _this->_internal_mutable_range_join()->::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest::MergeFrom( - from._internal_range_join()); - break; - } - case kAj: { - _this->_internal_mutable_aj()->::io::deephaven::proto::backplane::grpc::AjRajTablesRequest::MergeFrom( - from._internal_aj()); - break; - } - case kRaj: { - _this->_internal_mutable_raj()->::io::deephaven::proto::backplane::grpc::AjRajTablesRequest::MergeFrom( - from._internal_raj()); - break; - } - case kColumnStatistics: { - _this->_internal_mutable_column_statistics()->::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest::MergeFrom( - from._internal_column_statistics()); - break; - } - case kMultiJoin: { - _this->_internal_mutable_multi_join()->::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest::MergeFrom( - from._internal_multi_join()); - break; + if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) { + const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0]; + const bool oneof_needs_init = oneof_to_case != oneof_from_case; + if (oneof_needs_init) { + if (oneof_to_case != 0) { + _this->clear_op(); + } + _this->_impl_._oneof_case_[0] = oneof_from_case; } - case OP_NOT_SET: { - break; + + switch (oneof_from_case) { + case kEmptyTable: { + if (oneof_needs_init) { + _this->_impl_.op_.empty_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(arena, *from._impl_.op_.empty_table_); + } else { + _this->_impl_.op_.empty_table_->MergeFrom(from._internal_empty_table()); + } + break; + } + case kTimeTable: { + if (oneof_needs_init) { + _this->_impl_.op_.time_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(arena, *from._impl_.op_.time_table_); + } else { + _this->_impl_.op_.time_table_->MergeFrom(from._internal_time_table()); + } + break; + } + case kDropColumns: { + if (oneof_needs_init) { + _this->_impl_.op_.drop_columns_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(arena, *from._impl_.op_.drop_columns_); + } else { + _this->_impl_.op_.drop_columns_->MergeFrom(from._internal_drop_columns()); + } + break; + } + case kUpdate: { + if (oneof_needs_init) { + _this->_impl_.op_.update_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_); + } else { + _this->_impl_.op_.update_->MergeFrom(from._internal_update()); + } + break; + } + case kLazyUpdate: { + if (oneof_needs_init) { + _this->_impl_.op_.lazy_update_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.lazy_update_); + } else { + _this->_impl_.op_.lazy_update_->MergeFrom(from._internal_lazy_update()); + } + break; + } + case kView: { + if (oneof_needs_init) { + _this->_impl_.op_.view_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.view_); + } else { + _this->_impl_.op_.view_->MergeFrom(from._internal_view()); + } + break; + } + case kUpdateView: { + if (oneof_needs_init) { + _this->_impl_.op_.update_view_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_view_); + } else { + _this->_impl_.op_.update_view_->MergeFrom(from._internal_update_view()); + } + break; + } + case kSelect: { + if (oneof_needs_init) { + _this->_impl_.op_.select_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.select_); + } else { + _this->_impl_.op_.select_->MergeFrom(from._internal_select()); + } + break; + } + case kSelectDistinct: { + if (oneof_needs_init) { + _this->_impl_.op_.select_distinct_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(arena, *from._impl_.op_.select_distinct_); + } else { + _this->_impl_.op_.select_distinct_->MergeFrom(from._internal_select_distinct()); + } + break; + } + case kFilter: { + if (oneof_needs_init) { + _this->_impl_.op_.filter_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(arena, *from._impl_.op_.filter_); + } else { + _this->_impl_.op_.filter_->MergeFrom(from._internal_filter()); + } + break; + } + case kUnstructuredFilter: { + if (oneof_needs_init) { + _this->_impl_.op_.unstructured_filter_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(arena, *from._impl_.op_.unstructured_filter_); + } else { + _this->_impl_.op_.unstructured_filter_->MergeFrom(from._internal_unstructured_filter()); + } + break; + } + case kSort: { + if (oneof_needs_init) { + _this->_impl_.op_.sort_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SortTableRequest>(arena, *from._impl_.op_.sort_); + } else { + _this->_impl_.op_.sort_->MergeFrom(from._internal_sort()); + } + break; + } + case kHead: { + if (oneof_needs_init) { + _this->_impl_.op_.head_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.head_); + } else { + _this->_impl_.op_.head_->MergeFrom(from._internal_head()); + } + break; + } + case kTail: { + if (oneof_needs_init) { + _this->_impl_.op_.tail_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.tail_); + } else { + _this->_impl_.op_.tail_->MergeFrom(from._internal_tail()); + } + break; + } + case kHeadBy: { + if (oneof_needs_init) { + _this->_impl_.op_.head_by_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.head_by_); + } else { + _this->_impl_.op_.head_by_->MergeFrom(from._internal_head_by()); + } + break; + } + case kTailBy: { + if (oneof_needs_init) { + _this->_impl_.op_.tail_by_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.tail_by_); + } else { + _this->_impl_.op_.tail_by_->MergeFrom(from._internal_tail_by()); + } + break; + } + case kUngroup: { + if (oneof_needs_init) { + _this->_impl_.op_.ungroup_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UngroupRequest>(arena, *from._impl_.op_.ungroup_); + } else { + _this->_impl_.op_.ungroup_->MergeFrom(from._internal_ungroup()); + } + break; + } + case kMerge: { + if (oneof_needs_init) { + _this->_impl_.op_.merge_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(arena, *from._impl_.op_.merge_); + } else { + _this->_impl_.op_.merge_->MergeFrom(from._internal_merge()); + } + break; + } + case kComboAggregate: { + if (oneof_needs_init) { + _this->_impl_.op_.combo_aggregate_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(arena, *from._impl_.op_.combo_aggregate_); + } else { + _this->_impl_.op_.combo_aggregate_->MergeFrom(from._internal_combo_aggregate()); + } + break; + } + case kFlatten: { + if (oneof_needs_init) { + _this->_impl_.op_.flatten_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FlattenRequest>(arena, *from._impl_.op_.flatten_); + } else { + _this->_impl_.op_.flatten_->MergeFrom(from._internal_flatten()); + } + break; + } + case kRunChartDownsample: { + if (oneof_needs_init) { + _this->_impl_.op_.run_chart_downsample_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(arena, *from._impl_.op_.run_chart_downsample_); + } else { + _this->_impl_.op_.run_chart_downsample_->MergeFrom(from._internal_run_chart_downsample()); + } + break; + } + case kCrossJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.cross_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(arena, *from._impl_.op_.cross_join_); + } else { + _this->_impl_.op_.cross_join_->MergeFrom(from._internal_cross_join()); + } + break; + } + case kNaturalJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.natural_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(arena, *from._impl_.op_.natural_join_); + } else { + _this->_impl_.op_.natural_join_->MergeFrom(from._internal_natural_join()); + } + break; + } + case kExactJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.exact_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(arena, *from._impl_.op_.exact_join_); + } else { + _this->_impl_.op_.exact_join_->MergeFrom(from._internal_exact_join()); + } + break; + } + case kLeftJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.left_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(arena, *from._impl_.op_.left_join_); + } else { + _this->_impl_.op_.left_join_->MergeFrom(from._internal_left_join()); + } + break; + } + case kAsOfJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.as_of_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(arena, *from._impl_.op_.as_of_join_); + } else { + _this->_impl_.op_.as_of_join_->MergeFrom(from._internal_as_of_join()); + } + break; + } + case kFetchTable: { + if (oneof_needs_init) { + _this->_impl_.op_.fetch_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(arena, *from._impl_.op_.fetch_table_); + } else { + _this->_impl_.op_.fetch_table_->MergeFrom(from._internal_fetch_table()); + } + break; + } + case kApplyPreviewColumns: { + if (oneof_needs_init) { + _this->_impl_.op_.apply_preview_columns_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(arena, *from._impl_.op_.apply_preview_columns_); + } else { + _this->_impl_.op_.apply_preview_columns_->MergeFrom(from._internal_apply_preview_columns()); + } + break; + } + case kCreateInputTable: { + if (oneof_needs_init) { + _this->_impl_.op_.create_input_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(arena, *from._impl_.op_.create_input_table_); + } else { + _this->_impl_.op_.create_input_table_->MergeFrom(from._internal_create_input_table()); + } + break; + } + case kUpdateBy: { + if (oneof_needs_init) { + _this->_impl_.op_.update_by_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(arena, *from._impl_.op_.update_by_); + } else { + _this->_impl_.op_.update_by_->MergeFrom(from._internal_update_by()); + } + break; + } + case kWhereIn: { + if (oneof_needs_init) { + _this->_impl_.op_.where_in_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::WhereInRequest>(arena, *from._impl_.op_.where_in_); + } else { + _this->_impl_.op_.where_in_->MergeFrom(from._internal_where_in()); + } + break; + } + case kAggregateAll: { + if (oneof_needs_init) { + _this->_impl_.op_.aggregate_all_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(arena, *from._impl_.op_.aggregate_all_); + } else { + _this->_impl_.op_.aggregate_all_->MergeFrom(from._internal_aggregate_all()); + } + break; + } + case kAggregate: { + if (oneof_needs_init) { + _this->_impl_.op_.aggregate_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggregateRequest>(arena, *from._impl_.op_.aggregate_); + } else { + _this->_impl_.op_.aggregate_->MergeFrom(from._internal_aggregate()); + } + break; + } + case kSnapshot: { + if (oneof_needs_init) { + _this->_impl_.op_.snapshot_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(arena, *from._impl_.op_.snapshot_); + } else { + _this->_impl_.op_.snapshot_->MergeFrom(from._internal_snapshot()); + } + break; + } + case kSnapshotWhen: { + if (oneof_needs_init) { + _this->_impl_.op_.snapshot_when_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(arena, *from._impl_.op_.snapshot_when_); + } else { + _this->_impl_.op_.snapshot_when_->MergeFrom(from._internal_snapshot_when()); + } + break; + } + case kMetaTable: { + if (oneof_needs_init) { + _this->_impl_.op_.meta_table_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(arena, *from._impl_.op_.meta_table_); + } else { + _this->_impl_.op_.meta_table_->MergeFrom(from._internal_meta_table()); + } + break; + } + case kRangeJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.range_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(arena, *from._impl_.op_.range_join_); + } else { + _this->_impl_.op_.range_join_->MergeFrom(from._internal_range_join()); + } + break; + } + case kAj: { + if (oneof_needs_init) { + _this->_impl_.op_.aj_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.aj_); + } else { + _this->_impl_.op_.aj_->MergeFrom(from._internal_aj()); + } + break; + } + case kRaj: { + if (oneof_needs_init) { + _this->_impl_.op_.raj_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.raj_); + } else { + _this->_impl_.op_.raj_->MergeFrom(from._internal_raj()); + } + break; + } + case kColumnStatistics: { + if (oneof_needs_init) { + _this->_impl_.op_.column_statistics_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(arena, *from._impl_.op_.column_statistics_); + } else { + _this->_impl_.op_.column_statistics_->MergeFrom(from._internal_column_statistics()); + } + break; + } + case kMultiJoin: { + if (oneof_needs_init) { + _this->_impl_.op_.multi_join_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(arena, *from._impl_.op_.multi_join_); + } else { + _this->_impl_.op_.multi_join_->MergeFrom(from._internal_multi_join()); + } + break; + } + case OP_NOT_SET: + break; } } _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); @@ -39656,13 +45370,7 @@ void BatchTableRequest_Operation::CopyFrom(const BatchTableRequest_Operation& fr MergeFrom(from); } -PROTOBUF_NOINLINE bool BatchTableRequest_Operation::IsInitialized() const { - return true; -} -::_pbi::CachedSize* BatchTableRequest_Operation::AccessCachedSize() const { - return &_impl_._cached_size_; -} void BatchTableRequest_Operation::InternalSwap(BatchTableRequest_Operation* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -39671,9 +45379,7 @@ void BatchTableRequest_Operation::InternalSwap(BatchTableRequest_Operation* PROT } ::google::protobuf::Metadata BatchTableRequest_Operation::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[122]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== @@ -39682,25 +45388,33 @@ class BatchTableRequest::_Internal { }; BatchTableRequest::BatchTableRequest(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.BatchTableRequest) } inline PROTOBUF_NDEBUG_INLINE BatchTableRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& from_msg) : ops_{visibility, arena, from.ops_}, _cached_size_{0} {} BatchTableRequest::BatchTableRequest( ::google::protobuf::Arena* arena, const BatchTableRequest& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE BatchTableRequest* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.BatchTableRequest) } @@ -39723,24 +45437,34 @@ inline void BatchTableRequest::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void BatchTableRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.ops_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* BatchTableRequest::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + BatchTableRequest::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_BatchTableRequest_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &BatchTableRequest::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &BatchTableRequest::ByteSizeLong, + &BatchTableRequest::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(BatchTableRequest, _impl_._cached_size_), + false, + }, + &BatchTableRequest::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2ftable_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* BatchTableRequest::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 1, 0, 2> BatchTableRequest::_table_ = { { @@ -39753,8 +45477,12 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> BatchTableRequest::_table_ = { 1, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_BatchTableRequest_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::BatchTableRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; {::_pbi::TcParser::FastMtR1, @@ -39771,56 +45499,81 @@ const ::_pbi::TcParseTable<0, 1, 1, 0, 2> BatchTableRequest::_table_ = { }}, }; -::uint8_t* BatchTableRequest::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_ops_size()); i < n; i++) { - const auto& repfield = this->_internal_ops().Get(i); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.BatchTableRequest) - return target; -} - -::size_t BatchTableRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void BatchTableRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; - total_size += 1UL * this->_internal_ops_size(); - for (const auto& msg : this->_internal_ops()) { - total_size += - ::google::protobuf::internal::WireFormatLite::MessageSize(msg); - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData BatchTableRequest::_class_data_ = { - BatchTableRequest::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* BatchTableRequest::GetClassData() const { - return &_class_data_; + _impl_.ops_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void BatchTableRequest::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* BatchTableRequest::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const BatchTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* BatchTableRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const BatchTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; + for (unsigned i = 0, n = static_cast( + this_._internal_ops_size()); + i < n; i++) { + const auto& repfield = this_._internal_ops().Get(i); + target = + ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, repfield, repfield.GetCachedSize(), + target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.BatchTableRequest) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t BatchTableRequest::ByteSizeLong(const MessageLite& base) { + const BatchTableRequest& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t BatchTableRequest::ByteSizeLong() const { + const BatchTableRequest& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; + { + total_size += 1UL * this_._internal_ops_size(); + for (const auto& msg : this_._internal_ops()) { + total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg); + } + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void BatchTableRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) @@ -39840,13 +45593,7 @@ void BatchTableRequest::CopyFrom(const BatchTableRequest& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool BatchTableRequest::IsInitialized() const { - return true; -} -::_pbi::CachedSize* BatchTableRequest::AccessCachedSize() const { - return &_impl_._cached_size_; -} void BatchTableRequest::InternalSwap(BatchTableRequest* PROTOBUF_RESTRICT other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); @@ -39854,9 +45601,7 @@ void BatchTableRequest::InternalSwap(BatchTableRequest* PROTOBUF_RESTRICT other) } ::google::protobuf::Metadata BatchTableRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2ftable_2eproto_getter, &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - file_level_metadata_deephaven_2fproto_2ftable_2eproto[123]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -39869,4 +45614,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.h index 93c065ab85c..fb5e51c687f 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/table.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2ftable_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2ftable_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -887,21 +881,18 @@ inline bool MatchType_Parse(absl::string_view name, MatchType* value) { // ------------------------------------------------------------------- -class UpdateByWindowScale_UpdateByWindowTime final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) */ { +class UpdateByWindowScale_UpdateByWindowTime final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) */ { public: inline UpdateByWindowScale_UpdateByWindowTime() : UpdateByWindowScale_UpdateByWindowTime(nullptr) {} - ~UpdateByWindowScale_UpdateByWindowTime() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTime(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByWindowScale_UpdateByWindowTime(const UpdateByWindowScale_UpdateByWindowTime& from) - : UpdateByWindowScale_UpdateByWindowTime(nullptr, from) {} - UpdateByWindowScale_UpdateByWindowTime(UpdateByWindowScale_UpdateByWindowTime&& from) noexcept - : UpdateByWindowScale_UpdateByWindowTime() { - *this = ::std::move(from); - } - + ~UpdateByWindowScale_UpdateByWindowTime() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTime( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByWindowScale_UpdateByWindowTime(const UpdateByWindowScale_UpdateByWindowTime& from) : UpdateByWindowScale_UpdateByWindowTime(nullptr, from) {} + inline UpdateByWindowScale_UpdateByWindowTime(UpdateByWindowScale_UpdateByWindowTime&& from) noexcept + : UpdateByWindowScale_UpdateByWindowTime(nullptr, std::move(from)) {} inline UpdateByWindowScale_UpdateByWindowTime& operator=(const UpdateByWindowScale_UpdateByWindowTime& from) { CopyFrom(from); return *this; @@ -909,9 +900,9 @@ class UpdateByWindowScale_UpdateByWindowTime final : inline UpdateByWindowScale_UpdateByWindowTime& operator=(UpdateByWindowScale_UpdateByWindowTime&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -946,25 +937,19 @@ class UpdateByWindowScale_UpdateByWindowTime final : kDurationString = 3, WINDOW_NOT_SET = 0, }; - static inline const UpdateByWindowScale_UpdateByWindowTime* internal_default_instance() { return reinterpret_cast( - &_UpdateByWindowScale_UpdateByWindowTime_default_instance_); - } - static constexpr int kIndexInFileMessages = - 11; - - friend void swap(UpdateByWindowScale_UpdateByWindowTime& a, UpdateByWindowScale_UpdateByWindowTime& b) { - a.Swap(&b); + &_UpdateByWindowScale_UpdateByWindowTime_default_instance_); } + static constexpr int kIndexInFileMessages = 11; + friend void swap(UpdateByWindowScale_UpdateByWindowTime& a, UpdateByWindowScale_UpdateByWindowTime& b) { a.Swap(&b); } inline void Swap(UpdateByWindowScale_UpdateByWindowTime* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -978,52 +963,69 @@ class UpdateByWindowScale_UpdateByWindowTime final : // implements Message ---------------------------------------------- - UpdateByWindowScale_UpdateByWindowTime* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByWindowScale_UpdateByWindowTime* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByWindowScale_UpdateByWindowTime& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByWindowScale_UpdateByWindowTime& from) { - UpdateByWindowScale_UpdateByWindowTime::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByWindowScale_UpdateByWindowTime& from) { UpdateByWindowScale_UpdateByWindowTime::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByWindowScale_UpdateByWindowTime* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime"; } + + protected: explicit UpdateByWindowScale_UpdateByWindowTime(::google::protobuf::Arena* arena); UpdateByWindowScale_UpdateByWindowTime(::google::protobuf::Arena* arena, const UpdateByWindowScale_UpdateByWindowTime& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByWindowScale_UpdateByWindowTime(::google::protobuf::Arena* arena, UpdateByWindowScale_UpdateByWindowTime&& from) noexcept + : UpdateByWindowScale_UpdateByWindowTime(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnFieldNumber = 1, kNanosFieldNumber = 2, @@ -1080,15 +1082,17 @@ class UpdateByWindowScale_UpdateByWindowTime final : class _Internal; void set_has_nanos(); void set_has_duration_string(); - inline bool has_window() const; inline void clear_has_window(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 3, 0, 102, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByWindowScale_UpdateByWindowTime_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1096,44 +1100,41 @@ class UpdateByWindowScale_UpdateByWindowTime final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByWindowScale_UpdateByWindowTime& from_msg); ::google::protobuf::internal::ArenaStringPtr column_; union WindowUnion { constexpr WindowUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::int64_t nanos_; ::google::protobuf::internal::ArenaStringPtr duration_string_; } window_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByWindowScale_UpdateByWindowTicks final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) */ { +class UpdateByWindowScale_UpdateByWindowTicks final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) */ { public: inline UpdateByWindowScale_UpdateByWindowTicks() : UpdateByWindowScale_UpdateByWindowTicks(nullptr) {} - ~UpdateByWindowScale_UpdateByWindowTicks() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTicks(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByWindowScale_UpdateByWindowTicks(const UpdateByWindowScale_UpdateByWindowTicks& from) - : UpdateByWindowScale_UpdateByWindowTicks(nullptr, from) {} - UpdateByWindowScale_UpdateByWindowTicks(UpdateByWindowScale_UpdateByWindowTicks&& from) noexcept - : UpdateByWindowScale_UpdateByWindowTicks() { - *this = ::std::move(from); - } - + ~UpdateByWindowScale_UpdateByWindowTicks() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTicks( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByWindowScale_UpdateByWindowTicks(const UpdateByWindowScale_UpdateByWindowTicks& from) : UpdateByWindowScale_UpdateByWindowTicks(nullptr, from) {} + inline UpdateByWindowScale_UpdateByWindowTicks(UpdateByWindowScale_UpdateByWindowTicks&& from) noexcept + : UpdateByWindowScale_UpdateByWindowTicks(nullptr, std::move(from)) {} inline UpdateByWindowScale_UpdateByWindowTicks& operator=(const UpdateByWindowScale_UpdateByWindowTicks& from) { CopyFrom(from); return *this; @@ -1141,9 +1142,9 @@ class UpdateByWindowScale_UpdateByWindowTicks final : inline UpdateByWindowScale_UpdateByWindowTicks& operator=(UpdateByWindowScale_UpdateByWindowTicks&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1175,22 +1176,17 @@ class UpdateByWindowScale_UpdateByWindowTicks final : } static inline const UpdateByWindowScale_UpdateByWindowTicks* internal_default_instance() { return reinterpret_cast( - &_UpdateByWindowScale_UpdateByWindowTicks_default_instance_); - } - static constexpr int kIndexInFileMessages = - 10; - - friend void swap(UpdateByWindowScale_UpdateByWindowTicks& a, UpdateByWindowScale_UpdateByWindowTicks& b) { - a.Swap(&b); + &_UpdateByWindowScale_UpdateByWindowTicks_default_instance_); } + static constexpr int kIndexInFileMessages = 10; + friend void swap(UpdateByWindowScale_UpdateByWindowTicks& a, UpdateByWindowScale_UpdateByWindowTicks& b) { a.Swap(&b); } inline void Swap(UpdateByWindowScale_UpdateByWindowTicks* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1204,52 +1200,69 @@ class UpdateByWindowScale_UpdateByWindowTicks final : // implements Message ---------------------------------------------- - UpdateByWindowScale_UpdateByWindowTicks* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByWindowScale_UpdateByWindowTicks* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByWindowScale_UpdateByWindowTicks& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByWindowScale_UpdateByWindowTicks& from) { - UpdateByWindowScale_UpdateByWindowTicks::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByWindowScale_UpdateByWindowTicks& from) { UpdateByWindowScale_UpdateByWindowTicks::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByWindowScale_UpdateByWindowTicks* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks"; } + + protected: explicit UpdateByWindowScale_UpdateByWindowTicks(::google::protobuf::Arena* arena); UpdateByWindowScale_UpdateByWindowTicks(::google::protobuf::Arena* arena, const UpdateByWindowScale_UpdateByWindowTicks& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByWindowScale_UpdateByWindowTicks(::google::protobuf::Arena* arena, UpdateByWindowScale_UpdateByWindowTicks&& from) noexcept + : UpdateByWindowScale_UpdateByWindowTicks(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTicksFieldNumber = 1, }; @@ -1266,12 +1279,15 @@ class UpdateByWindowScale_UpdateByWindowTicks final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByWindowScale_UpdateByWindowTicks_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -1279,35 +1295,33 @@ class UpdateByWindowScale_UpdateByWindowTicks final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByWindowScale_UpdateByWindowTicks& from_msg); double ticks_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill( + ::google::protobuf::internal::ConstantInitialized); + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) { CopyFrom(from); return *this; @@ -1315,9 +1329,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1349,22 +1363,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_); - } - static constexpr int kIndexInFileMessages = - 20; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_); } + static constexpr int kIndexInFileMessages = 20; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1378,8 +1387,8 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) { @@ -1389,27 +1398,41 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1418,32 +1441,30 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum( + ::google::protobuf::internal::ConstantInitialized); + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) { CopyFrom(from); return *this; @@ -1451,9 +1472,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1485,22 +1506,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_); - } - static constexpr int kIndexInFileMessages = - 16; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_); } + static constexpr int kIndexInFileMessages = 16; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1514,8 +1530,8 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) { @@ -1525,27 +1541,41 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1554,32 +1584,30 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct( + ::google::protobuf::internal::ConstantInitialized); + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) { CopyFrom(from); return *this; @@ -1587,9 +1615,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1621,22 +1649,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_); - } - static constexpr int kIndexInFileMessages = - 19; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_); } + static constexpr int kIndexInFileMessages = 19; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1650,8 +1673,8 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) { @@ -1661,27 +1684,41 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1690,32 +1727,30 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin( + ::google::protobuf::internal::ConstantInitialized); + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) { CopyFrom(from); return *this; @@ -1723,9 +1758,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1757,22 +1792,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_); - } - static constexpr int kIndexInFileMessages = - 17; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_); } + static constexpr int kIndexInFileMessages = 17; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1786,8 +1816,8 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) { @@ -1797,27 +1827,41 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1826,32 +1870,30 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax( + ::google::protobuf::internal::ConstantInitialized); + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) { CopyFrom(from); return *this; @@ -1859,9 +1901,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -1893,22 +1935,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_); - } - static constexpr int kIndexInFileMessages = - 18; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_); } + static constexpr int kIndexInFileMessages = 18; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -1922,8 +1959,8 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) { @@ -1933,27 +1970,41 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1962,33 +2013,31 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumu using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByDeltaOptions final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) */ { +class UpdateByDeltaOptions final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) */ { public: inline UpdateByDeltaOptions() : UpdateByDeltaOptions(nullptr) {} - ~UpdateByDeltaOptions() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByDeltaOptions(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByDeltaOptions(const UpdateByDeltaOptions& from) - : UpdateByDeltaOptions(nullptr, from) {} - UpdateByDeltaOptions(UpdateByDeltaOptions&& from) noexcept - : UpdateByDeltaOptions() { - *this = ::std::move(from); - } - + ~UpdateByDeltaOptions() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByDeltaOptions( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByDeltaOptions(const UpdateByDeltaOptions& from) : UpdateByDeltaOptions(nullptr, from) {} + inline UpdateByDeltaOptions(UpdateByDeltaOptions&& from) noexcept + : UpdateByDeltaOptions(nullptr, std::move(from)) {} inline UpdateByDeltaOptions& operator=(const UpdateByDeltaOptions& from) { CopyFrom(from); return *this; @@ -1996,9 +2045,9 @@ class UpdateByDeltaOptions final : inline UpdateByDeltaOptions& operator=(UpdateByDeltaOptions&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2030,22 +2079,17 @@ class UpdateByDeltaOptions final : } static inline const UpdateByDeltaOptions* internal_default_instance() { return reinterpret_cast( - &_UpdateByDeltaOptions_default_instance_); - } - static constexpr int kIndexInFileMessages = - 14; - - friend void swap(UpdateByDeltaOptions& a, UpdateByDeltaOptions& b) { - a.Swap(&b); + &_UpdateByDeltaOptions_default_instance_); } + static constexpr int kIndexInFileMessages = 14; + friend void swap(UpdateByDeltaOptions& a, UpdateByDeltaOptions& b) { a.Swap(&b); } inline void Swap(UpdateByDeltaOptions* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2059,52 +2103,69 @@ class UpdateByDeltaOptions final : // implements Message ---------------------------------------------- - UpdateByDeltaOptions* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByDeltaOptions* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByDeltaOptions& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByDeltaOptions& from) { - UpdateByDeltaOptions::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByDeltaOptions& from) { UpdateByDeltaOptions::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByDeltaOptions* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions"; } + + protected: explicit UpdateByDeltaOptions(::google::protobuf::Arena* arena); UpdateByDeltaOptions(::google::protobuf::Arena* arena, const UpdateByDeltaOptions& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByDeltaOptions(::google::protobuf::Arena* arena, UpdateByDeltaOptions&& from) noexcept + : UpdateByDeltaOptions(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kNullBehaviorFieldNumber = 1, }; @@ -2121,12 +2182,15 @@ class UpdateByDeltaOptions final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByDeltaOptions_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2134,36 +2198,34 @@ class UpdateByDeltaOptions final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByDeltaOptions& from_msg); int null_behavior_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SortDescriptor final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SortDescriptor) */ { +class SortDescriptor final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SortDescriptor) */ { public: inline SortDescriptor() : SortDescriptor(nullptr) {} - ~SortDescriptor() override; - template - explicit PROTOBUF_CONSTEXPR SortDescriptor(::google::protobuf::internal::ConstantInitialized); - - inline SortDescriptor(const SortDescriptor& from) - : SortDescriptor(nullptr, from) {} - SortDescriptor(SortDescriptor&& from) noexcept - : SortDescriptor() { - *this = ::std::move(from); - } - + ~SortDescriptor() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SortDescriptor( + ::google::protobuf::internal::ConstantInitialized); + + inline SortDescriptor(const SortDescriptor& from) : SortDescriptor(nullptr, from) {} + inline SortDescriptor(SortDescriptor&& from) noexcept + : SortDescriptor(nullptr, std::move(from)) {} inline SortDescriptor& operator=(const SortDescriptor& from) { CopyFrom(from); return *this; @@ -2171,9 +2233,9 @@ class SortDescriptor final : inline SortDescriptor& operator=(SortDescriptor&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2205,22 +2267,17 @@ class SortDescriptor final : } static inline const SortDescriptor* internal_default_instance() { return reinterpret_cast( - &_SortDescriptor_default_instance_); - } - static constexpr int kIndexInFileMessages = - 92; - - friend void swap(SortDescriptor& a, SortDescriptor& b) { - a.Swap(&b); + &_SortDescriptor_default_instance_); } + static constexpr int kIndexInFileMessages = 92; + friend void swap(SortDescriptor& a, SortDescriptor& b) { a.Swap(&b); } inline void Swap(SortDescriptor* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2234,50 +2291,67 @@ class SortDescriptor final : // implements Message ---------------------------------------------- - SortDescriptor* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SortDescriptor* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SortDescriptor& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SortDescriptor& from) { - SortDescriptor::MergeImpl(*this, from); - } + void MergeFrom(const SortDescriptor& from) { SortDescriptor::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SortDescriptor* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SortDescriptor"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SortDescriptor"; } + + protected: explicit SortDescriptor(::google::protobuf::Arena* arena); SortDescriptor(::google::protobuf::Arena* arena, const SortDescriptor& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SortDescriptor(::google::protobuf::Arena* arena, SortDescriptor&& from) noexcept + : SortDescriptor(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using SortDirection = SortDescriptor_SortDirection; static constexpr SortDirection UNKNOWN = SortDescriptor_SortDirection_UNKNOWN; static constexpr SortDirection DESCENDING = SortDescriptor_SortDirection_DESCENDING; @@ -2301,7 +2375,6 @@ class SortDescriptor final : } // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, kIsAbsoluteFieldNumber = 2, @@ -2346,12 +2419,15 @@ class SortDescriptor final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SortDescriptor) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, 68, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SortDescriptor_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2359,13 +2435,13 @@ class SortDescriptor final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SortDescriptor& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; bool is_absolute_; int direction_; @@ -2374,23 +2450,21 @@ class SortDescriptor final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SeekRowResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SeekRowResponse) */ { +class SeekRowResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SeekRowResponse) */ { public: inline SeekRowResponse() : SeekRowResponse(nullptr) {} - ~SeekRowResponse() override; - template - explicit PROTOBUF_CONSTEXPR SeekRowResponse(::google::protobuf::internal::ConstantInitialized); - - inline SeekRowResponse(const SeekRowResponse& from) - : SeekRowResponse(nullptr, from) {} - SeekRowResponse(SeekRowResponse&& from) noexcept - : SeekRowResponse() { - *this = ::std::move(from); - } - + ~SeekRowResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SeekRowResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline SeekRowResponse(const SeekRowResponse& from) : SeekRowResponse(nullptr, from) {} + inline SeekRowResponse(SeekRowResponse&& from) noexcept + : SeekRowResponse(nullptr, std::move(from)) {} inline SeekRowResponse& operator=(const SeekRowResponse& from) { CopyFrom(from); return *this; @@ -2398,9 +2472,9 @@ class SeekRowResponse final : inline SeekRowResponse& operator=(SeekRowResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2432,22 +2506,17 @@ class SeekRowResponse final : } static inline const SeekRowResponse* internal_default_instance() { return reinterpret_cast( - &_SeekRowResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 96; - - friend void swap(SeekRowResponse& a, SeekRowResponse& b) { - a.Swap(&b); + &_SeekRowResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 96; + friend void swap(SeekRowResponse& a, SeekRowResponse& b) { a.Swap(&b); } inline void Swap(SeekRowResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2461,52 +2530,69 @@ class SeekRowResponse final : // implements Message ---------------------------------------------- - SeekRowResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SeekRowResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SeekRowResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SeekRowResponse& from) { - SeekRowResponse::MergeImpl(*this, from); - } + void MergeFrom(const SeekRowResponse& from) { SeekRowResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SeekRowResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SeekRowResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SeekRowResponse"; } + + protected: explicit SeekRowResponse(::google::protobuf::Arena* arena); SeekRowResponse(::google::protobuf::Arena* arena, const SeekRowResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SeekRowResponse(::google::protobuf::Arena* arena, SeekRowResponse&& from) noexcept + : SeekRowResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultRowFieldNumber = 1, }; @@ -2523,12 +2609,15 @@ class SeekRowResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SeekRowResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SeekRowResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2536,36 +2625,34 @@ class SeekRowResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SeekRowResponse& from_msg); ::int64_t result_row_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class RunChartDownsampleRequest_ZoomRange final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) */ { +class RunChartDownsampleRequest_ZoomRange final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) */ { public: inline RunChartDownsampleRequest_ZoomRange() : RunChartDownsampleRequest_ZoomRange(nullptr) {} - ~RunChartDownsampleRequest_ZoomRange() override; - template - explicit PROTOBUF_CONSTEXPR RunChartDownsampleRequest_ZoomRange(::google::protobuf::internal::ConstantInitialized); - - inline RunChartDownsampleRequest_ZoomRange(const RunChartDownsampleRequest_ZoomRange& from) - : RunChartDownsampleRequest_ZoomRange(nullptr, from) {} - RunChartDownsampleRequest_ZoomRange(RunChartDownsampleRequest_ZoomRange&& from) noexcept - : RunChartDownsampleRequest_ZoomRange() { - *this = ::std::move(from); - } - + ~RunChartDownsampleRequest_ZoomRange() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR RunChartDownsampleRequest_ZoomRange( + ::google::protobuf::internal::ConstantInitialized); + + inline RunChartDownsampleRequest_ZoomRange(const RunChartDownsampleRequest_ZoomRange& from) : RunChartDownsampleRequest_ZoomRange(nullptr, from) {} + inline RunChartDownsampleRequest_ZoomRange(RunChartDownsampleRequest_ZoomRange&& from) noexcept + : RunChartDownsampleRequest_ZoomRange(nullptr, std::move(from)) {} inline RunChartDownsampleRequest_ZoomRange& operator=(const RunChartDownsampleRequest_ZoomRange& from) { CopyFrom(from); return *this; @@ -2573,9 +2660,9 @@ class RunChartDownsampleRequest_ZoomRange final : inline RunChartDownsampleRequest_ZoomRange& operator=(RunChartDownsampleRequest_ZoomRange&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2607,22 +2694,17 @@ class RunChartDownsampleRequest_ZoomRange final : } static inline const RunChartDownsampleRequest_ZoomRange* internal_default_instance() { return reinterpret_cast( - &_RunChartDownsampleRequest_ZoomRange_default_instance_); - } - static constexpr int kIndexInFileMessages = - 113; - - friend void swap(RunChartDownsampleRequest_ZoomRange& a, RunChartDownsampleRequest_ZoomRange& b) { - a.Swap(&b); + &_RunChartDownsampleRequest_ZoomRange_default_instance_); } + static constexpr int kIndexInFileMessages = 113; + friend void swap(RunChartDownsampleRequest_ZoomRange& a, RunChartDownsampleRequest_ZoomRange& b) { a.Swap(&b); } inline void Swap(RunChartDownsampleRequest_ZoomRange* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2636,52 +2718,69 @@ class RunChartDownsampleRequest_ZoomRange final : // implements Message ---------------------------------------------- - RunChartDownsampleRequest_ZoomRange* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + RunChartDownsampleRequest_ZoomRange* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const RunChartDownsampleRequest_ZoomRange& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const RunChartDownsampleRequest_ZoomRange& from) { - RunChartDownsampleRequest_ZoomRange::MergeImpl(*this, from); - } + void MergeFrom(const RunChartDownsampleRequest_ZoomRange& from) { RunChartDownsampleRequest_ZoomRange::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(RunChartDownsampleRequest_ZoomRange* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange"; } + + protected: explicit RunChartDownsampleRequest_ZoomRange(::google::protobuf::Arena* arena); RunChartDownsampleRequest_ZoomRange(::google::protobuf::Arena* arena, const RunChartDownsampleRequest_ZoomRange& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + RunChartDownsampleRequest_ZoomRange(::google::protobuf::Arena* arena, RunChartDownsampleRequest_ZoomRange&& from) noexcept + : RunChartDownsampleRequest_ZoomRange(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMinDateNanosFieldNumber = 1, kMaxDateNanosFieldNumber = 2, @@ -2711,12 +2810,15 @@ class RunChartDownsampleRequest_ZoomRange final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_RunChartDownsampleRequest_ZoomRange_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2724,13 +2826,13 @@ class RunChartDownsampleRequest_ZoomRange final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const RunChartDownsampleRequest_ZoomRange& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::int64_t min_date_nanos_; @@ -2739,23 +2841,21 @@ class RunChartDownsampleRequest_ZoomRange final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Reference final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Reference) */ { +class Reference final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Reference) */ { public: inline Reference() : Reference(nullptr) {} - ~Reference() override; - template - explicit PROTOBUF_CONSTEXPR Reference(::google::protobuf::internal::ConstantInitialized); - - inline Reference(const Reference& from) - : Reference(nullptr, from) {} - Reference(Reference&& from) noexcept - : Reference() { - *this = ::std::move(from); - } - + ~Reference() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Reference( + ::google::protobuf::internal::ConstantInitialized); + + inline Reference(const Reference& from) : Reference(nullptr, from) {} + inline Reference(Reference&& from) noexcept + : Reference(nullptr, std::move(from)) {} inline Reference& operator=(const Reference& from) { CopyFrom(from); return *this; @@ -2763,9 +2863,9 @@ class Reference final : inline Reference& operator=(Reference&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2797,22 +2897,17 @@ class Reference final : } static inline const Reference* internal_default_instance() { return reinterpret_cast( - &_Reference_default_instance_); - } - static constexpr int kIndexInFileMessages = - 97; - - friend void swap(Reference& a, Reference& b) { - a.Swap(&b); + &_Reference_default_instance_); } + static constexpr int kIndexInFileMessages = 97; + friend void swap(Reference& a, Reference& b) { a.Swap(&b); } inline void Swap(Reference* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -2826,52 +2921,69 @@ class Reference final : // implements Message ---------------------------------------------- - Reference* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Reference* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Reference& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Reference& from) { - Reference::MergeImpl(*this, from); - } + void MergeFrom(const Reference& from) { Reference::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Reference* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Reference"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Reference"; } + + protected: explicit Reference(::google::protobuf::Arena* arena); Reference(::google::protobuf::Arena* arena, const Reference& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Reference(::google::protobuf::Arena* arena, Reference&& from) noexcept + : Reference(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, }; @@ -2894,12 +3006,15 @@ class Reference final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Reference) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 63, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Reference_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -2907,36 +3022,34 @@ class Reference final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Reference& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MathContext final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MathContext) */ { +class MathContext final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MathContext) */ { public: inline MathContext() : MathContext(nullptr) {} - ~MathContext() override; - template - explicit PROTOBUF_CONSTEXPR MathContext(::google::protobuf::internal::ConstantInitialized); - - inline MathContext(const MathContext& from) - : MathContext(nullptr, from) {} - MathContext(MathContext&& from) noexcept - : MathContext() { - *this = ::std::move(from); - } - + ~MathContext() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MathContext( + ::google::protobuf::internal::ConstantInitialized); + + inline MathContext(const MathContext& from) : MathContext(nullptr, from) {} + inline MathContext(MathContext&& from) noexcept + : MathContext(nullptr, std::move(from)) {} inline MathContext& operator=(const MathContext& from) { CopyFrom(from); return *this; @@ -2944,9 +3057,9 @@ class MathContext final : inline MathContext& operator=(MathContext&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -2978,22 +3091,17 @@ class MathContext final : } static inline const MathContext* internal_default_instance() { return reinterpret_cast( - &_MathContext_default_instance_); - } - static constexpr int kIndexInFileMessages = - 9; - - friend void swap(MathContext& a, MathContext& b) { - a.Swap(&b); + &_MathContext_default_instance_); } + static constexpr int kIndexInFileMessages = 9; + friend void swap(MathContext& a, MathContext& b) { a.Swap(&b); } inline void Swap(MathContext* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3007,50 +3115,67 @@ class MathContext final : // implements Message ---------------------------------------------- - MathContext* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MathContext* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MathContext& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MathContext& from) { - MathContext::MergeImpl(*this, from); - } + void MergeFrom(const MathContext& from) { MathContext::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MathContext* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MathContext"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MathContext"; } + + protected: explicit MathContext(::google::protobuf::Arena* arena); MathContext(::google::protobuf::Arena* arena, const MathContext& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MathContext(::google::protobuf::Arena* arena, MathContext&& from) noexcept + : MathContext(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using RoundingMode = MathContext_RoundingMode; static constexpr RoundingMode ROUNDING_MODE_NOT_SPECIFIED = MathContext_RoundingMode_ROUNDING_MODE_NOT_SPECIFIED; static constexpr RoundingMode UP = MathContext_RoundingMode_UP; @@ -3079,7 +3204,6 @@ class MathContext final : } // accessors ------------------------------------------------------- - enum : int { kPrecisionFieldNumber = 1, kRoundingModeFieldNumber = 2, @@ -3107,12 +3231,15 @@ class MathContext final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MathContext) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MathContext_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3120,13 +3247,13 @@ class MathContext final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MathContext& from_msg); ::int32_t precision_; int rounding_mode_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -3134,23 +3261,21 @@ class MathContext final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Literal final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Literal) */ { +class Literal final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Literal) */ { public: inline Literal() : Literal(nullptr) {} - ~Literal() override; - template - explicit PROTOBUF_CONSTEXPR Literal(::google::protobuf::internal::ConstantInitialized); - - inline Literal(const Literal& from) - : Literal(nullptr, from) {} - Literal(Literal&& from) noexcept - : Literal() { - *this = ::std::move(from); - } - + ~Literal() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Literal( + ::google::protobuf::internal::ConstantInitialized); + + inline Literal(const Literal& from) : Literal(nullptr, from) {} + inline Literal(Literal&& from) noexcept + : Literal(nullptr, std::move(from)) {} inline Literal& operator=(const Literal& from) { CopyFrom(from); return *this; @@ -3158,9 +3283,9 @@ class Literal final : inline Literal& operator=(Literal&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3198,25 +3323,19 @@ class Literal final : kNanoTimeValue = 5, VALUE_NOT_SET = 0, }; - static inline const Literal* internal_default_instance() { return reinterpret_cast( - &_Literal_default_instance_); - } - static constexpr int kIndexInFileMessages = - 98; - - friend void swap(Literal& a, Literal& b) { - a.Swap(&b); + &_Literal_default_instance_); } + static constexpr int kIndexInFileMessages = 98; + friend void swap(Literal& a, Literal& b) { a.Swap(&b); } inline void Swap(Literal* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3230,52 +3349,69 @@ class Literal final : // implements Message ---------------------------------------------- - Literal* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Literal* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Literal& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Literal& from) { - Literal::MergeImpl(*this, from); - } + void MergeFrom(const Literal& from) { Literal::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Literal* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Literal"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Literal"; } + + protected: explicit Literal(::google::protobuf::Arena* arena); Literal(::google::protobuf::Arena* arena, const Literal& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Literal(::google::protobuf::Arena* arena, Literal&& from) noexcept + : Literal(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kStringValueFieldNumber = 1, kDoubleValueFieldNumber = 2, @@ -3354,15 +3490,17 @@ class Literal final : void set_has_bool_value(); void set_has_long_value(); void set_has_nano_time_value(); - inline bool has_value() const; inline void clear_has_value(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 5, 0, 62, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Literal_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3370,16 +3508,16 @@ class Literal final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Literal& from_msg); union ValueUnion { constexpr ValueUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::google::protobuf::internal::ArenaStringPtr string_value_; double double_value_; bool bool_value_; @@ -3388,174 +3526,178 @@ class Literal final : } value_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportedTableUpdatesRequest final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) */ { +class ExportedTableUpdatesRequest final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) */ { public: inline ExportedTableUpdatesRequest() : ExportedTableUpdatesRequest(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR ExportedTableUpdatesRequest(::google::protobuf::internal::ConstantInitialized); + template + explicit PROTOBUF_CONSTEXPR ExportedTableUpdatesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ExportedTableUpdatesRequest(const ExportedTableUpdatesRequest& from) : ExportedTableUpdatesRequest(nullptr, from) {} + inline ExportedTableUpdatesRequest(ExportedTableUpdatesRequest&& from) noexcept + : ExportedTableUpdatesRequest(nullptr, std::move(from)) {} + inline ExportedTableUpdatesRequest& operator=(const ExportedTableUpdatesRequest& from) { + CopyFrom(from); + return *this; + } + inline ExportedTableUpdatesRequest& operator=(ExportedTableUpdatesRequest&& from) noexcept { + if (this == &from) return *this; + if (GetArena() == from.GetArena() +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetArena() != nullptr +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); + } + inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); + } + + static const ::google::protobuf::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::google::protobuf::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::google::protobuf::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const ExportedTableUpdatesRequest& default_instance() { + return *internal_default_instance(); + } + static inline const ExportedTableUpdatesRequest* internal_default_instance() { + return reinterpret_cast( + &_ExportedTableUpdatesRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 4; + friend void swap(ExportedTableUpdatesRequest& a, ExportedTableUpdatesRequest& b) { a.Swap(&b); } + inline void Swap(ExportedTableUpdatesRequest* other) { + if (other == this) return; +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() == other->GetArena()) { +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::google::protobuf::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(ExportedTableUpdatesRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- - inline ExportedTableUpdatesRequest(const ExportedTableUpdatesRequest& from) - : ExportedTableUpdatesRequest(nullptr, from) {} - ExportedTableUpdatesRequest(ExportedTableUpdatesRequest&& from) noexcept - : ExportedTableUpdatesRequest() { + ExportedTableUpdatesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); + } + using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const ExportedTableUpdatesRequest& from) { + ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const ExportedTableUpdatesRequest& from) { + ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); + } + + public: + bool IsInitialized() const { + return true; + } + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest"; } + + protected: + explicit ExportedTableUpdatesRequest(::google::protobuf::Arena* arena); + ExportedTableUpdatesRequest(::google::protobuf::Arena* arena, const ExportedTableUpdatesRequest& from); + ExportedTableUpdatesRequest(::google::protobuf::Arena* arena, ExportedTableUpdatesRequest&& from) noexcept + : ExportedTableUpdatesRequest(arena) { *this = ::std::move(from); } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; - inline ExportedTableUpdatesRequest& operator=(const ExportedTableUpdatesRequest& from) { + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportedTableUpdatesRequest_default_instance_; + + friend class ::google::protobuf::MessageLite; + friend class ::google::protobuf::Arena; + template + friend class ::google::protobuf::Arena::InternalHelper; + using InternalArenaConstructable_ = void; + using DestructorSkippable_ = void; + struct Impl_ { + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportedTableUpdatesRequest& from_msg); + PROTOBUF_TSAN_DECLARE_MEMBER + }; + friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; +}; +// ------------------------------------------------------------------- + +class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) */ { + public: + inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(nullptr) {} + ~CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryKeyBacked( + ::google::protobuf::internal::ConstantInitialized); + + inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(nullptr, from) {} + inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&& from) noexcept + : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(nullptr, std::move(from)) {} + inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& operator=(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) { CopyFrom(from); return *this; } - inline ExportedTableUpdatesRequest& operator=(ExportedTableUpdatesRequest&& from) noexcept { + inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& operator=(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE - ) { - InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - - inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); - } - inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); - } - - static const ::google::protobuf::Descriptor* descriptor() { - return GetDescriptor(); - } - static const ::google::protobuf::Descriptor* GetDescriptor() { - return default_instance().GetMetadata().descriptor; - } - static const ::google::protobuf::Reflection* GetReflection() { - return default_instance().GetMetadata().reflection; - } - static const ExportedTableUpdatesRequest& default_instance() { - return *internal_default_instance(); - } - static inline const ExportedTableUpdatesRequest* internal_default_instance() { - return reinterpret_cast( - &_ExportedTableUpdatesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - friend void swap(ExportedTableUpdatesRequest& a, ExportedTableUpdatesRequest& b) { - a.Swap(&b); - } - inline void Swap(ExportedTableUpdatesRequest* other) { - if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportedTableUpdatesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - ExportedTableUpdatesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; - inline void CopyFrom(const ExportedTableUpdatesRequest& from) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ExportedTableUpdatesRequest& from) { - ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); - } - public: - - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest"; - } - protected: - explicit ExportedTableUpdatesRequest(::google::protobuf::Arena* arena); - ExportedTableUpdatesRequest(::google::protobuf::Arena* arena, const ExportedTableUpdatesRequest& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportedTableUpdatesRequest) - private: - class _Internal; - - friend class ::google::protobuf::MessageLite; - friend class ::google::protobuf::Arena; - template - friend class ::google::protobuf::Arena::InternalHelper; - using InternalArenaConstructable_ = void; - using DestructorSkippable_ = void; - struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); - PROTOBUF_TSAN_DECLARE_MEMBER - }; - friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- - -class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) */ { - public: - inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(nullptr) {} - ~CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() override; - template - explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::google::protobuf::internal::ConstantInitialized); - - inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) - : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(nullptr, from) {} - CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&& from) noexcept - : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() { - *this = ::std::move(from); - } - - inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& operator=(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) { - CopyFrom(from); - return *this; - } - inline CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& operator=(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&& from) noexcept { - if (this == &from) return *this; - if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE - && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3587,22 +3729,17 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : } static inline const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* internal_default_instance() { return reinterpret_cast( - &_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_); - } - static constexpr int kIndexInFileMessages = - 116; - - friend void swap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& a, CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& b) { - a.Swap(&b); + &_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_); } + static constexpr int kIndexInFileMessages = 116; + friend void swap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& a, CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& b) { a.Swap(&b); } inline void Swap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3616,52 +3753,69 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : // implements Message ---------------------------------------------- - CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) { - CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl(*this, from); - } + void MergeFrom(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) { CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked"; } + + protected: explicit CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::google::protobuf::Arena* arena); CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::google::protobuf::Arena* arena, CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&& from) noexcept + : CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kKeyColumnsFieldNumber = 1, }; @@ -3674,17 +3828,11 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : void clear_key_columns() ; const std::string& key_columns(int index) const; std::string* mutable_key_columns(int index); - void set_key_columns(int index, const std::string& value); - void set_key_columns(int index, std::string&& value); - void set_key_columns(int index, const char* value); - void set_key_columns(int index, const char* value, std::size_t size); - void set_key_columns(int index, absl::string_view value); + template + void set_key_columns(int index, Arg_&& value, Args_... args); std::string* add_key_columns(); - void add_key_columns(const std::string& value); - void add_key_columns(std::string&& value); - void add_key_columns(const char* value); - void add_key_columns(const char* value, std::size_t size); - void add_key_columns(absl::string_view value); + template + void add_key_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& key_columns() const; ::google::protobuf::RepeatedPtrField* mutable_key_columns(); @@ -3696,12 +3844,15 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 110, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -3709,35 +3860,33 @@ class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from_msg); ::google::protobuf::RepeatedPtrField key_columns_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly) */ { +class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly) */ { public: inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly() : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::internal::ConstantInitialized); - - inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) - : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(nullptr, from) {} - CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly&& from) noexcept - : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryAppendOnly( + ::google::protobuf::internal::ConstantInitialized); + inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(nullptr, from) {} + inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly&& from) noexcept + : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(nullptr, std::move(from)) {} inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& operator=(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) { CopyFrom(from); return *this; @@ -3745,9 +3894,9 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : inline CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& operator=(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3779,22 +3928,17 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : } static inline const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* internal_default_instance() { return reinterpret_cast( - &_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_); - } - static constexpr int kIndexInFileMessages = - 115; - - friend void swap(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& a, CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& b) { - a.Swap(&b); + &_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_); } + static constexpr int kIndexInFileMessages = 115; + friend void swap(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& a, CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& b) { a.Swap(&b); } inline void Swap(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3808,8 +3952,8 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : // implements Message ---------------------------------------------- - CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) { @@ -3819,27 +3963,41 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : void MergeFrom(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly"; } + + protected: explicit CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena); CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena, CreateInputTableRequest_InputTableKind_InMemoryAppendOnly&& from) noexcept + : CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3848,32 +4006,30 @@ class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateInputTableRequest_InputTableKind_Blink final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink) */ { +class CreateInputTableRequest_InputTableKind_Blink final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink) */ { public: inline CreateInputTableRequest_InputTableKind_Blink() : CreateInputTableRequest_InputTableKind_Blink(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::internal::ConstantInitialized); - - inline CreateInputTableRequest_InputTableKind_Blink(const CreateInputTableRequest_InputTableKind_Blink& from) - : CreateInputTableRequest_InputTableKind_Blink(nullptr, from) {} - CreateInputTableRequest_InputTableKind_Blink(CreateInputTableRequest_InputTableKind_Blink&& from) noexcept - : CreateInputTableRequest_InputTableKind_Blink() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_Blink( + ::google::protobuf::internal::ConstantInitialized); + inline CreateInputTableRequest_InputTableKind_Blink(const CreateInputTableRequest_InputTableKind_Blink& from) : CreateInputTableRequest_InputTableKind_Blink(nullptr, from) {} + inline CreateInputTableRequest_InputTableKind_Blink(CreateInputTableRequest_InputTableKind_Blink&& from) noexcept + : CreateInputTableRequest_InputTableKind_Blink(nullptr, std::move(from)) {} inline CreateInputTableRequest_InputTableKind_Blink& operator=(const CreateInputTableRequest_InputTableKind_Blink& from) { CopyFrom(from); return *this; @@ -3881,9 +4037,9 @@ class CreateInputTableRequest_InputTableKind_Blink final : inline CreateInputTableRequest_InputTableKind_Blink& operator=(CreateInputTableRequest_InputTableKind_Blink&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -3915,22 +4071,17 @@ class CreateInputTableRequest_InputTableKind_Blink final : } static inline const CreateInputTableRequest_InputTableKind_Blink* internal_default_instance() { return reinterpret_cast( - &_CreateInputTableRequest_InputTableKind_Blink_default_instance_); - } - static constexpr int kIndexInFileMessages = - 117; - - friend void swap(CreateInputTableRequest_InputTableKind_Blink& a, CreateInputTableRequest_InputTableKind_Blink& b) { - a.Swap(&b); + &_CreateInputTableRequest_InputTableKind_Blink_default_instance_); } + static constexpr int kIndexInFileMessages = 117; + friend void swap(CreateInputTableRequest_InputTableKind_Blink& a, CreateInputTableRequest_InputTableKind_Blink& b) { a.Swap(&b); } inline void Swap(CreateInputTableRequest_InputTableKind_Blink* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -3944,8 +4095,8 @@ class CreateInputTableRequest_InputTableKind_Blink final : // implements Message ---------------------------------------------- - CreateInputTableRequest_InputTableKind_Blink* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateInputTableRequest_InputTableKind_Blink* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const CreateInputTableRequest_InputTableKind_Blink& from) { @@ -3955,27 +4106,41 @@ class CreateInputTableRequest_InputTableKind_Blink final : void MergeFrom(const CreateInputTableRequest_InputTableKind_Blink& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink"; } + + protected: explicit CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena); CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_Blink& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena, CreateInputTableRequest_InputTableKind_Blink&& from) noexcept + : CreateInputTableRequest_InputTableKind_Blink(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateInputTableRequest_InputTableKind_Blink_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3984,33 +4149,31 @@ class CreateInputTableRequest_InputTableKind_Blink final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateInputTableRequest_InputTableKind_Blink& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ComboAggregateRequest_Aggregate final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) */ { +class ComboAggregateRequest_Aggregate final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) */ { public: inline ComboAggregateRequest_Aggregate() : ComboAggregateRequest_Aggregate(nullptr) {} - ~ComboAggregateRequest_Aggregate() override; - template - explicit PROTOBUF_CONSTEXPR ComboAggregateRequest_Aggregate(::google::protobuf::internal::ConstantInitialized); - - inline ComboAggregateRequest_Aggregate(const ComboAggregateRequest_Aggregate& from) - : ComboAggregateRequest_Aggregate(nullptr, from) {} - ComboAggregateRequest_Aggregate(ComboAggregateRequest_Aggregate&& from) noexcept - : ComboAggregateRequest_Aggregate() { - *this = ::std::move(from); - } - + ~ComboAggregateRequest_Aggregate() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ComboAggregateRequest_Aggregate( + ::google::protobuf::internal::ConstantInitialized); + + inline ComboAggregateRequest_Aggregate(const ComboAggregateRequest_Aggregate& from) : ComboAggregateRequest_Aggregate(nullptr, from) {} + inline ComboAggregateRequest_Aggregate(ComboAggregateRequest_Aggregate&& from) noexcept + : ComboAggregateRequest_Aggregate(nullptr, std::move(from)) {} inline ComboAggregateRequest_Aggregate& operator=(const ComboAggregateRequest_Aggregate& from) { CopyFrom(from); return *this; @@ -4018,9 +4181,9 @@ class ComboAggregateRequest_Aggregate final : inline ComboAggregateRequest_Aggregate& operator=(ComboAggregateRequest_Aggregate&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4052,22 +4215,17 @@ class ComboAggregateRequest_Aggregate final : } static inline const ComboAggregateRequest_Aggregate* internal_default_instance() { return reinterpret_cast( - &_ComboAggregateRequest_Aggregate_default_instance_); - } - static constexpr int kIndexInFileMessages = - 59; - - friend void swap(ComboAggregateRequest_Aggregate& a, ComboAggregateRequest_Aggregate& b) { - a.Swap(&b); + &_ComboAggregateRequest_Aggregate_default_instance_); } + static constexpr int kIndexInFileMessages = 59; + friend void swap(ComboAggregateRequest_Aggregate& a, ComboAggregateRequest_Aggregate& b) { a.Swap(&b); } inline void Swap(ComboAggregateRequest_Aggregate* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4081,52 +4239,69 @@ class ComboAggregateRequest_Aggregate final : // implements Message ---------------------------------------------- - ComboAggregateRequest_Aggregate* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ComboAggregateRequest_Aggregate* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ComboAggregateRequest_Aggregate& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ComboAggregateRequest_Aggregate& from) { - ComboAggregateRequest_Aggregate::MergeImpl(*this, from); - } + void MergeFrom(const ComboAggregateRequest_Aggregate& from) { ComboAggregateRequest_Aggregate::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ComboAggregateRequest_Aggregate* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate"; } + + protected: explicit ComboAggregateRequest_Aggregate(::google::protobuf::Arena* arena); ComboAggregateRequest_Aggregate(::google::protobuf::Arena* arena, const ComboAggregateRequest_Aggregate& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ComboAggregateRequest_Aggregate(::google::protobuf::Arena* arena, ComboAggregateRequest_Aggregate&& from) noexcept + : ComboAggregateRequest_Aggregate(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMatchPairsFieldNumber = 2, kColumnNameFieldNumber = 3, @@ -4143,17 +4318,11 @@ class ComboAggregateRequest_Aggregate final : void clear_match_pairs() ; const std::string& match_pairs(int index) const; std::string* mutable_match_pairs(int index); - void set_match_pairs(int index, const std::string& value); - void set_match_pairs(int index, std::string&& value); - void set_match_pairs(int index, const char* value); - void set_match_pairs(int index, const char* value, std::size_t size); - void set_match_pairs(int index, absl::string_view value); + template + void set_match_pairs(int index, Arg_&& value, Args_... args); std::string* add_match_pairs(); - void add_match_pairs(const std::string& value); - void add_match_pairs(std::string&& value); - void add_match_pairs(const char* value); - void add_match_pairs(const char* value, std::size_t size); - void add_match_pairs(absl::string_view value); + template + void add_match_pairs(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& match_pairs() const; ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); @@ -4211,12 +4380,15 @@ class ComboAggregateRequest_Aggregate final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 0, 96, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ComboAggregateRequest_Aggregate_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4224,13 +4396,13 @@ class ComboAggregateRequest_Aggregate final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ComboAggregateRequest_Aggregate& from_msg); ::google::protobuf::RepeatedPtrField match_pairs_; ::google::protobuf::internal::ArenaStringPtr column_name_; int type_; @@ -4241,23 +4413,21 @@ class ComboAggregateRequest_Aggregate final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Aggregation_AggregationRowKey final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) */ { +class Aggregation_AggregationRowKey final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) */ { public: inline Aggregation_AggregationRowKey() : Aggregation_AggregationRowKey(nullptr) {} - ~Aggregation_AggregationRowKey() override; - template - explicit PROTOBUF_CONSTEXPR Aggregation_AggregationRowKey(::google::protobuf::internal::ConstantInitialized); - - inline Aggregation_AggregationRowKey(const Aggregation_AggregationRowKey& from) - : Aggregation_AggregationRowKey(nullptr, from) {} - Aggregation_AggregationRowKey(Aggregation_AggregationRowKey&& from) noexcept - : Aggregation_AggregationRowKey() { - *this = ::std::move(from); - } - + ~Aggregation_AggregationRowKey() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Aggregation_AggregationRowKey( + ::google::protobuf::internal::ConstantInitialized); + + inline Aggregation_AggregationRowKey(const Aggregation_AggregationRowKey& from) : Aggregation_AggregationRowKey(nullptr, from) {} + inline Aggregation_AggregationRowKey(Aggregation_AggregationRowKey&& from) noexcept + : Aggregation_AggregationRowKey(nullptr, std::move(from)) {} inline Aggregation_AggregationRowKey& operator=(const Aggregation_AggregationRowKey& from) { CopyFrom(from); return *this; @@ -4265,9 +4435,9 @@ class Aggregation_AggregationRowKey final : inline Aggregation_AggregationRowKey& operator=(Aggregation_AggregationRowKey&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4299,22 +4469,17 @@ class Aggregation_AggregationRowKey final : } static inline const Aggregation_AggregationRowKey* internal_default_instance() { return reinterpret_cast( - &_Aggregation_AggregationRowKey_default_instance_); - } - static constexpr int kIndexInFileMessages = - 89; - - friend void swap(Aggregation_AggregationRowKey& a, Aggregation_AggregationRowKey& b) { - a.Swap(&b); + &_Aggregation_AggregationRowKey_default_instance_); } + static constexpr int kIndexInFileMessages = 89; + friend void swap(Aggregation_AggregationRowKey& a, Aggregation_AggregationRowKey& b) { a.Swap(&b); } inline void Swap(Aggregation_AggregationRowKey* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4328,52 +4493,69 @@ class Aggregation_AggregationRowKey final : // implements Message ---------------------------------------------- - Aggregation_AggregationRowKey* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Aggregation_AggregationRowKey* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Aggregation_AggregationRowKey& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Aggregation_AggregationRowKey& from) { - Aggregation_AggregationRowKey::MergeImpl(*this, from); - } + void MergeFrom(const Aggregation_AggregationRowKey& from) { Aggregation_AggregationRowKey::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Aggregation_AggregationRowKey* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey"; } + + protected: explicit Aggregation_AggregationRowKey(::google::protobuf::Arena* arena); Aggregation_AggregationRowKey(::google::protobuf::Arena* arena, const Aggregation_AggregationRowKey& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Aggregation_AggregationRowKey(::google::protobuf::Arena* arena, Aggregation_AggregationRowKey&& from) noexcept + : Aggregation_AggregationRowKey(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, }; @@ -4396,12 +4578,15 @@ class Aggregation_AggregationRowKey final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 83, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Aggregation_AggregationRowKey_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4409,36 +4594,34 @@ class Aggregation_AggregationRowKey final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Aggregation_AggregationRowKey& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Aggregation_AggregationPartition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) */ { +class Aggregation_AggregationPartition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) */ { public: inline Aggregation_AggregationPartition() : Aggregation_AggregationPartition(nullptr) {} - ~Aggregation_AggregationPartition() override; - template - explicit PROTOBUF_CONSTEXPR Aggregation_AggregationPartition(::google::protobuf::internal::ConstantInitialized); - - inline Aggregation_AggregationPartition(const Aggregation_AggregationPartition& from) - : Aggregation_AggregationPartition(nullptr, from) {} - Aggregation_AggregationPartition(Aggregation_AggregationPartition&& from) noexcept - : Aggregation_AggregationPartition() { - *this = ::std::move(from); - } - + ~Aggregation_AggregationPartition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Aggregation_AggregationPartition( + ::google::protobuf::internal::ConstantInitialized); + + inline Aggregation_AggregationPartition(const Aggregation_AggregationPartition& from) : Aggregation_AggregationPartition(nullptr, from) {} + inline Aggregation_AggregationPartition(Aggregation_AggregationPartition&& from) noexcept + : Aggregation_AggregationPartition(nullptr, std::move(from)) {} inline Aggregation_AggregationPartition& operator=(const Aggregation_AggregationPartition& from) { CopyFrom(from); return *this; @@ -4446,9 +4629,9 @@ class Aggregation_AggregationPartition final : inline Aggregation_AggregationPartition& operator=(Aggregation_AggregationPartition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4480,22 +4663,17 @@ class Aggregation_AggregationPartition final : } static inline const Aggregation_AggregationPartition* internal_default_instance() { return reinterpret_cast( - &_Aggregation_AggregationPartition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 90; - - friend void swap(Aggregation_AggregationPartition& a, Aggregation_AggregationPartition& b) { - a.Swap(&b); + &_Aggregation_AggregationPartition_default_instance_); } + static constexpr int kIndexInFileMessages = 90; + friend void swap(Aggregation_AggregationPartition& a, Aggregation_AggregationPartition& b) { a.Swap(&b); } inline void Swap(Aggregation_AggregationPartition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4509,52 +4687,69 @@ class Aggregation_AggregationPartition final : // implements Message ---------------------------------------------- - Aggregation_AggregationPartition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Aggregation_AggregationPartition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Aggregation_AggregationPartition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Aggregation_AggregationPartition& from) { - Aggregation_AggregationPartition::MergeImpl(*this, from); - } + void MergeFrom(const Aggregation_AggregationPartition& from) { Aggregation_AggregationPartition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Aggregation_AggregationPartition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition"; } + + protected: explicit Aggregation_AggregationPartition(::google::protobuf::Arena* arena); Aggregation_AggregationPartition(::google::protobuf::Arena* arena, const Aggregation_AggregationPartition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Aggregation_AggregationPartition(::google::protobuf::Arena* arena, Aggregation_AggregationPartition&& from) noexcept + : Aggregation_AggregationPartition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, kIncludeGroupByColumnsFieldNumber = 2, @@ -4588,12 +4783,15 @@ class Aggregation_AggregationPartition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 86, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Aggregation_AggregationPartition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4601,13 +4799,13 @@ class Aggregation_AggregationPartition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Aggregation_AggregationPartition& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; bool include_group_by_columns_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4615,23 +4813,21 @@ class Aggregation_AggregationPartition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Aggregation_AggregationCount final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) */ { +class Aggregation_AggregationCount final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) */ { public: inline Aggregation_AggregationCount() : Aggregation_AggregationCount(nullptr) {} - ~Aggregation_AggregationCount() override; - template - explicit PROTOBUF_CONSTEXPR Aggregation_AggregationCount(::google::protobuf::internal::ConstantInitialized); - - inline Aggregation_AggregationCount(const Aggregation_AggregationCount& from) - : Aggregation_AggregationCount(nullptr, from) {} - Aggregation_AggregationCount(Aggregation_AggregationCount&& from) noexcept - : Aggregation_AggregationCount() { - *this = ::std::move(from); - } - + ~Aggregation_AggregationCount() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Aggregation_AggregationCount( + ::google::protobuf::internal::ConstantInitialized); + + inline Aggregation_AggregationCount(const Aggregation_AggregationCount& from) : Aggregation_AggregationCount(nullptr, from) {} + inline Aggregation_AggregationCount(Aggregation_AggregationCount&& from) noexcept + : Aggregation_AggregationCount(nullptr, std::move(from)) {} inline Aggregation_AggregationCount& operator=(const Aggregation_AggregationCount& from) { CopyFrom(from); return *this; @@ -4639,9 +4835,9 @@ class Aggregation_AggregationCount final : inline Aggregation_AggregationCount& operator=(Aggregation_AggregationCount&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4673,22 +4869,17 @@ class Aggregation_AggregationCount final : } static inline const Aggregation_AggregationCount* internal_default_instance() { return reinterpret_cast( - &_Aggregation_AggregationCount_default_instance_); - } - static constexpr int kIndexInFileMessages = - 88; - - friend void swap(Aggregation_AggregationCount& a, Aggregation_AggregationCount& b) { - a.Swap(&b); + &_Aggregation_AggregationCount_default_instance_); } + static constexpr int kIndexInFileMessages = 88; + friend void swap(Aggregation_AggregationCount& a, Aggregation_AggregationCount& b) { a.Swap(&b); } inline void Swap(Aggregation_AggregationCount* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4702,52 +4893,69 @@ class Aggregation_AggregationCount final : // implements Message ---------------------------------------------- - Aggregation_AggregationCount* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Aggregation_AggregationCount* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Aggregation_AggregationCount& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Aggregation_AggregationCount& from) { - Aggregation_AggregationCount::MergeImpl(*this, from); - } + void MergeFrom(const Aggregation_AggregationCount& from) { Aggregation_AggregationCount::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Aggregation_AggregationCount* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount"; } + + protected: explicit Aggregation_AggregationCount(::google::protobuf::Arena* arena); Aggregation_AggregationCount(::google::protobuf::Arena* arena, const Aggregation_AggregationCount& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Aggregation_AggregationCount(::google::protobuf::Arena* arena, Aggregation_AggregationCount&& from) noexcept + : Aggregation_AggregationCount(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, }; @@ -4770,12 +4978,15 @@ class Aggregation_AggregationCount final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 82, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Aggregation_AggregationCount_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4783,36 +4994,34 @@ class Aggregation_AggregationCount final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Aggregation_AggregationCount& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecWeighted final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) */ { +class AggSpec_AggSpecWeighted final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) */ { public: inline AggSpec_AggSpecWeighted() : AggSpec_AggSpecWeighted(nullptr) {} - ~AggSpec_AggSpecWeighted() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecWeighted(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecWeighted(const AggSpec_AggSpecWeighted& from) - : AggSpec_AggSpecWeighted(nullptr, from) {} - AggSpec_AggSpecWeighted(AggSpec_AggSpecWeighted&& from) noexcept - : AggSpec_AggSpecWeighted() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecWeighted() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecWeighted( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecWeighted(const AggSpec_AggSpecWeighted& from) : AggSpec_AggSpecWeighted(nullptr, from) {} + inline AggSpec_AggSpecWeighted(AggSpec_AggSpecWeighted&& from) noexcept + : AggSpec_AggSpecWeighted(nullptr, std::move(from)) {} inline AggSpec_AggSpecWeighted& operator=(const AggSpec_AggSpecWeighted& from) { CopyFrom(from); return *this; @@ -4820,9 +5029,9 @@ class AggSpec_AggSpecWeighted final : inline AggSpec_AggSpecWeighted& operator=(AggSpec_AggSpecWeighted&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -4854,22 +5063,17 @@ class AggSpec_AggSpecWeighted final : } static inline const AggSpec_AggSpecWeighted* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecWeighted_default_instance_); - } - static constexpr int kIndexInFileMessages = - 73; - - friend void swap(AggSpec_AggSpecWeighted& a, AggSpec_AggSpecWeighted& b) { - a.Swap(&b); + &_AggSpec_AggSpecWeighted_default_instance_); } + static constexpr int kIndexInFileMessages = 73; + friend void swap(AggSpec_AggSpecWeighted& a, AggSpec_AggSpecWeighted& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecWeighted* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -4883,52 +5087,69 @@ class AggSpec_AggSpecWeighted final : // implements Message ---------------------------------------------- - AggSpec_AggSpecWeighted* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecWeighted* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecWeighted& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecWeighted& from) { - AggSpec_AggSpecWeighted::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecWeighted& from) { AggSpec_AggSpecWeighted::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecWeighted* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted"; } + + protected: explicit AggSpec_AggSpecWeighted(::google::protobuf::Arena* arena); AggSpec_AggSpecWeighted(::google::protobuf::Arena* arena, const AggSpec_AggSpecWeighted& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecWeighted(::google::protobuf::Arena* arena, AggSpec_AggSpecWeighted&& from) noexcept + : AggSpec_AggSpecWeighted(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kWeightColumnFieldNumber = 1, }; @@ -4951,12 +5172,15 @@ class AggSpec_AggSpecWeighted final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 79, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecWeighted_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -4964,35 +5188,33 @@ class AggSpec_AggSpecWeighted final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecWeighted& from_msg); ::google::protobuf::internal::ArenaStringPtr weight_column_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecVar final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar) */ { +class AggSpec_AggSpecVar final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar) */ { public: inline AggSpec_AggSpecVar() : AggSpec_AggSpecVar(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecVar(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecVar(const AggSpec_AggSpecVar& from) - : AggSpec_AggSpecVar(nullptr, from) {} - AggSpec_AggSpecVar(AggSpec_AggSpecVar&& from) noexcept - : AggSpec_AggSpecVar() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecVar( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecVar(const AggSpec_AggSpecVar& from) : AggSpec_AggSpecVar(nullptr, from) {} + inline AggSpec_AggSpecVar(AggSpec_AggSpecVar&& from) noexcept + : AggSpec_AggSpecVar(nullptr, std::move(from)) {} inline AggSpec_AggSpecVar& operator=(const AggSpec_AggSpecVar& from) { CopyFrom(from); return *this; @@ -5000,9 +5222,9 @@ class AggSpec_AggSpecVar final : inline AggSpec_AggSpecVar& operator=(AggSpec_AggSpecVar&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5034,22 +5256,17 @@ class AggSpec_AggSpecVar final : } static inline const AggSpec_AggSpecVar* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecVar_default_instance_); - } - static constexpr int kIndexInFileMessages = - 84; - - friend void swap(AggSpec_AggSpecVar& a, AggSpec_AggSpecVar& b) { - a.Swap(&b); + &_AggSpec_AggSpecVar_default_instance_); } + static constexpr int kIndexInFileMessages = 84; + friend void swap(AggSpec_AggSpecVar& a, AggSpec_AggSpecVar& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecVar* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5063,8 +5280,8 @@ class AggSpec_AggSpecVar final : // implements Message ---------------------------------------------- - AggSpec_AggSpecVar* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecVar* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecVar& from) { @@ -5074,27 +5291,41 @@ class AggSpec_AggSpecVar final : void MergeFrom(const AggSpec_AggSpecVar& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar"; } + + protected: explicit AggSpec_AggSpecVar(::google::protobuf::Arena* arena); AggSpec_AggSpecVar(::google::protobuf::Arena* arena, const AggSpec_AggSpecVar& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecVar(::google::protobuf::Arena* arena, AggSpec_AggSpecVar&& from) noexcept + : AggSpec_AggSpecVar(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecVar_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5103,33 +5334,31 @@ class AggSpec_AggSpecVar final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecVar& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecTDigest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) */ { +class AggSpec_AggSpecTDigest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) */ { public: inline AggSpec_AggSpecTDigest() : AggSpec_AggSpecTDigest(nullptr) {} - ~AggSpec_AggSpecTDigest() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecTDigest(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecTDigest(const AggSpec_AggSpecTDigest& from) - : AggSpec_AggSpecTDigest(nullptr, from) {} - AggSpec_AggSpecTDigest(AggSpec_AggSpecTDigest&& from) noexcept - : AggSpec_AggSpecTDigest() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecTDigest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecTDigest( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecTDigest(const AggSpec_AggSpecTDigest& from) : AggSpec_AggSpecTDigest(nullptr, from) {} + inline AggSpec_AggSpecTDigest(AggSpec_AggSpecTDigest&& from) noexcept + : AggSpec_AggSpecTDigest(nullptr, std::move(from)) {} inline AggSpec_AggSpecTDigest& operator=(const AggSpec_AggSpecTDigest& from) { CopyFrom(from); return *this; @@ -5137,9 +5366,9 @@ class AggSpec_AggSpecTDigest final : inline AggSpec_AggSpecTDigest& operator=(AggSpec_AggSpecTDigest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5171,22 +5400,17 @@ class AggSpec_AggSpecTDigest final : } static inline const AggSpec_AggSpecTDigest* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecTDigest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 70; - - friend void swap(AggSpec_AggSpecTDigest& a, AggSpec_AggSpecTDigest& b) { - a.Swap(&b); + &_AggSpec_AggSpecTDigest_default_instance_); } + static constexpr int kIndexInFileMessages = 70; + friend void swap(AggSpec_AggSpecTDigest& a, AggSpec_AggSpecTDigest& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecTDigest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5200,52 +5424,69 @@ class AggSpec_AggSpecTDigest final : // implements Message ---------------------------------------------- - AggSpec_AggSpecTDigest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecTDigest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecTDigest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecTDigest& from) { - AggSpec_AggSpecTDigest::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecTDigest& from) { AggSpec_AggSpecTDigest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecTDigest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest"; } + + protected: explicit AggSpec_AggSpecTDigest(::google::protobuf::Arena* arena); AggSpec_AggSpecTDigest(::google::protobuf::Arena* arena, const AggSpec_AggSpecTDigest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecTDigest(::google::protobuf::Arena* arena, AggSpec_AggSpecTDigest&& from) noexcept + : AggSpec_AggSpecTDigest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kCompressionFieldNumber = 1, }; @@ -5263,12 +5504,15 @@ class AggSpec_AggSpecTDigest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecTDigest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5276,13 +5520,13 @@ class AggSpec_AggSpecTDigest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecTDigest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; double compression_; @@ -5290,22 +5534,20 @@ class AggSpec_AggSpecTDigest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecSum final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum) */ { +class AggSpec_AggSpecSum final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum) */ { public: inline AggSpec_AggSpecSum() : AggSpec_AggSpecSum(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSum(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecSum(const AggSpec_AggSpecSum& from) - : AggSpec_AggSpecSum(nullptr, from) {} - AggSpec_AggSpecSum(AggSpec_AggSpecSum&& from) noexcept - : AggSpec_AggSpecSum() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSum( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecSum(const AggSpec_AggSpecSum& from) : AggSpec_AggSpecSum(nullptr, from) {} + inline AggSpec_AggSpecSum(AggSpec_AggSpecSum&& from) noexcept + : AggSpec_AggSpecSum(nullptr, std::move(from)) {} inline AggSpec_AggSpecSum& operator=(const AggSpec_AggSpecSum& from) { CopyFrom(from); return *this; @@ -5313,9 +5555,9 @@ class AggSpec_AggSpecSum final : inline AggSpec_AggSpecSum& operator=(AggSpec_AggSpecSum&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5347,22 +5589,17 @@ class AggSpec_AggSpecSum final : } static inline const AggSpec_AggSpecSum* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecSum_default_instance_); - } - static constexpr int kIndexInFileMessages = - 83; - - friend void swap(AggSpec_AggSpecSum& a, AggSpec_AggSpecSum& b) { - a.Swap(&b); + &_AggSpec_AggSpecSum_default_instance_); } + static constexpr int kIndexInFileMessages = 83; + friend void swap(AggSpec_AggSpecSum& a, AggSpec_AggSpecSum& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecSum* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5376,8 +5613,8 @@ class AggSpec_AggSpecSum final : // implements Message ---------------------------------------------- - AggSpec_AggSpecSum* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecSum* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecSum& from) { @@ -5387,27 +5624,41 @@ class AggSpec_AggSpecSum final : void MergeFrom(const AggSpec_AggSpecSum& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum"; } + + protected: explicit AggSpec_AggSpecSum(::google::protobuf::Arena* arena); AggSpec_AggSpecSum(::google::protobuf::Arena* arena, const AggSpec_AggSpecSum& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecSum(::google::protobuf::Arena* arena, AggSpec_AggSpecSum&& from) noexcept + : AggSpec_AggSpecSum(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecSum_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5416,32 +5667,30 @@ class AggSpec_AggSpecSum final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecSum& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecStd final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd) */ { +class AggSpec_AggSpecStd final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd) */ { public: inline AggSpec_AggSpecStd() : AggSpec_AggSpecStd(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecStd(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecStd(const AggSpec_AggSpecStd& from) - : AggSpec_AggSpecStd(nullptr, from) {} - AggSpec_AggSpecStd(AggSpec_AggSpecStd&& from) noexcept - : AggSpec_AggSpecStd() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecStd( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecStd(const AggSpec_AggSpecStd& from) : AggSpec_AggSpecStd(nullptr, from) {} + inline AggSpec_AggSpecStd(AggSpec_AggSpecStd&& from) noexcept + : AggSpec_AggSpecStd(nullptr, std::move(from)) {} inline AggSpec_AggSpecStd& operator=(const AggSpec_AggSpecStd& from) { CopyFrom(from); return *this; @@ -5449,9 +5698,9 @@ class AggSpec_AggSpecStd final : inline AggSpec_AggSpecStd& operator=(AggSpec_AggSpecStd&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5483,22 +5732,17 @@ class AggSpec_AggSpecStd final : } static inline const AggSpec_AggSpecStd* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecStd_default_instance_); - } - static constexpr int kIndexInFileMessages = - 82; - - friend void swap(AggSpec_AggSpecStd& a, AggSpec_AggSpecStd& b) { - a.Swap(&b); + &_AggSpec_AggSpecStd_default_instance_); } + static constexpr int kIndexInFileMessages = 82; + friend void swap(AggSpec_AggSpecStd& a, AggSpec_AggSpecStd& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecStd* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5512,8 +5756,8 @@ class AggSpec_AggSpecStd final : // implements Message ---------------------------------------------- - AggSpec_AggSpecStd* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecStd* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecStd& from) { @@ -5523,27 +5767,41 @@ class AggSpec_AggSpecStd final : void MergeFrom(const AggSpec_AggSpecStd& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd"; } + + protected: explicit AggSpec_AggSpecStd(::google::protobuf::Arena* arena); AggSpec_AggSpecStd(::google::protobuf::Arena* arena, const AggSpec_AggSpecStd& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecStd(::google::protobuf::Arena* arena, AggSpec_AggSpecStd&& from) noexcept + : AggSpec_AggSpecStd(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecStd_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5552,33 +5810,31 @@ class AggSpec_AggSpecStd final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecStd& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecSortedColumn final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) */ { +class AggSpec_AggSpecSortedColumn final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) */ { public: inline AggSpec_AggSpecSortedColumn() : AggSpec_AggSpecSortedColumn(nullptr) {} - ~AggSpec_AggSpecSortedColumn() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedColumn(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecSortedColumn(const AggSpec_AggSpecSortedColumn& from) - : AggSpec_AggSpecSortedColumn(nullptr, from) {} - AggSpec_AggSpecSortedColumn(AggSpec_AggSpecSortedColumn&& from) noexcept - : AggSpec_AggSpecSortedColumn() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecSortedColumn() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedColumn( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecSortedColumn(const AggSpec_AggSpecSortedColumn& from) : AggSpec_AggSpecSortedColumn(nullptr, from) {} + inline AggSpec_AggSpecSortedColumn(AggSpec_AggSpecSortedColumn&& from) noexcept + : AggSpec_AggSpecSortedColumn(nullptr, std::move(from)) {} inline AggSpec_AggSpecSortedColumn& operator=(const AggSpec_AggSpecSortedColumn& from) { CopyFrom(from); return *this; @@ -5586,9 +5842,9 @@ class AggSpec_AggSpecSortedColumn final : inline AggSpec_AggSpecSortedColumn& operator=(AggSpec_AggSpecSortedColumn&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5620,22 +5876,17 @@ class AggSpec_AggSpecSortedColumn final : } static inline const AggSpec_AggSpecSortedColumn* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecSortedColumn_default_instance_); - } - static constexpr int kIndexInFileMessages = - 69; - - friend void swap(AggSpec_AggSpecSortedColumn& a, AggSpec_AggSpecSortedColumn& b) { - a.Swap(&b); + &_AggSpec_AggSpecSortedColumn_default_instance_); } + static constexpr int kIndexInFileMessages = 69; + friend void swap(AggSpec_AggSpecSortedColumn& a, AggSpec_AggSpecSortedColumn& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecSortedColumn* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5649,52 +5900,69 @@ class AggSpec_AggSpecSortedColumn final : // implements Message ---------------------------------------------- - AggSpec_AggSpecSortedColumn* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecSortedColumn* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecSortedColumn& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecSortedColumn& from) { - AggSpec_AggSpecSortedColumn::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecSortedColumn& from) { AggSpec_AggSpecSortedColumn::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecSortedColumn* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn"; } + + protected: explicit AggSpec_AggSpecSortedColumn(::google::protobuf::Arena* arena); AggSpec_AggSpecSortedColumn(::google::protobuf::Arena* arena, const AggSpec_AggSpecSortedColumn& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecSortedColumn(::google::protobuf::Arena* arena, AggSpec_AggSpecSortedColumn&& from) noexcept + : AggSpec_AggSpecSortedColumn(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 1, }; @@ -5717,12 +5985,15 @@ class AggSpec_AggSpecSortedColumn final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 81, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecSortedColumn_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5730,36 +6001,34 @@ class AggSpec_AggSpecSortedColumn final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecSortedColumn& from_msg); ::google::protobuf::internal::ArenaStringPtr column_name_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecPercentile final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) */ { +class AggSpec_AggSpecPercentile final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) */ { public: inline AggSpec_AggSpecPercentile() : AggSpec_AggSpecPercentile(nullptr) {} - ~AggSpec_AggSpecPercentile() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecPercentile(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecPercentile(const AggSpec_AggSpecPercentile& from) - : AggSpec_AggSpecPercentile(nullptr, from) {} - AggSpec_AggSpecPercentile(AggSpec_AggSpecPercentile&& from) noexcept - : AggSpec_AggSpecPercentile() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecPercentile() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecPercentile( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecPercentile(const AggSpec_AggSpecPercentile& from) : AggSpec_AggSpecPercentile(nullptr, from) {} + inline AggSpec_AggSpecPercentile(AggSpec_AggSpecPercentile&& from) noexcept + : AggSpec_AggSpecPercentile(nullptr, std::move(from)) {} inline AggSpec_AggSpecPercentile& operator=(const AggSpec_AggSpecPercentile& from) { CopyFrom(from); return *this; @@ -5767,9 +6036,9 @@ class AggSpec_AggSpecPercentile final : inline AggSpec_AggSpecPercentile& operator=(AggSpec_AggSpecPercentile&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5801,22 +6070,17 @@ class AggSpec_AggSpecPercentile final : } static inline const AggSpec_AggSpecPercentile* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecPercentile_default_instance_); - } - static constexpr int kIndexInFileMessages = - 67; - - friend void swap(AggSpec_AggSpecPercentile& a, AggSpec_AggSpecPercentile& b) { - a.Swap(&b); + &_AggSpec_AggSpecPercentile_default_instance_); } + static constexpr int kIndexInFileMessages = 67; + friend void swap(AggSpec_AggSpecPercentile& a, AggSpec_AggSpecPercentile& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecPercentile* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -5830,52 +6094,69 @@ class AggSpec_AggSpecPercentile final : // implements Message ---------------------------------------------- - AggSpec_AggSpecPercentile* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecPercentile* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecPercentile& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecPercentile& from) { - AggSpec_AggSpecPercentile::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecPercentile& from) { AggSpec_AggSpecPercentile::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecPercentile* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile"; } + + protected: explicit AggSpec_AggSpecPercentile(::google::protobuf::Arena* arena); AggSpec_AggSpecPercentile(::google::protobuf::Arena* arena, const AggSpec_AggSpecPercentile& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecPercentile(::google::protobuf::Arena* arena, AggSpec_AggSpecPercentile&& from) noexcept + : AggSpec_AggSpecPercentile(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPercentileFieldNumber = 1, kAverageEvenlyDividedFieldNumber = 2, @@ -5903,12 +6184,15 @@ class AggSpec_AggSpecPercentile final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecPercentile_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -5916,13 +6200,13 @@ class AggSpec_AggSpecPercentile final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecPercentile& from_msg); double percentile_; bool average_evenly_divided_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -5930,23 +6214,21 @@ class AggSpec_AggSpecPercentile final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecNonUniqueSentinel final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) */ { +class AggSpec_AggSpecNonUniqueSentinel final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) */ { public: inline AggSpec_AggSpecNonUniqueSentinel() : AggSpec_AggSpecNonUniqueSentinel(nullptr) {} - ~AggSpec_AggSpecNonUniqueSentinel() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecNonUniqueSentinel(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecNonUniqueSentinel(const AggSpec_AggSpecNonUniqueSentinel& from) - : AggSpec_AggSpecNonUniqueSentinel(nullptr, from) {} - AggSpec_AggSpecNonUniqueSentinel(AggSpec_AggSpecNonUniqueSentinel&& from) noexcept - : AggSpec_AggSpecNonUniqueSentinel() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecNonUniqueSentinel() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecNonUniqueSentinel( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecNonUniqueSentinel(const AggSpec_AggSpecNonUniqueSentinel& from) : AggSpec_AggSpecNonUniqueSentinel(nullptr, from) {} + inline AggSpec_AggSpecNonUniqueSentinel(AggSpec_AggSpecNonUniqueSentinel&& from) noexcept + : AggSpec_AggSpecNonUniqueSentinel(nullptr, std::move(from)) {} inline AggSpec_AggSpecNonUniqueSentinel& operator=(const AggSpec_AggSpecNonUniqueSentinel& from) { CopyFrom(from); return *this; @@ -5954,9 +6236,9 @@ class AggSpec_AggSpecNonUniqueSentinel final : inline AggSpec_AggSpecNonUniqueSentinel& operator=(AggSpec_AggSpecNonUniqueSentinel&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -5999,25 +6281,19 @@ class AggSpec_AggSpecNonUniqueSentinel final : kCharValue = 10, TYPE_NOT_SET = 0, }; - static inline const AggSpec_AggSpecNonUniqueSentinel* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecNonUniqueSentinel_default_instance_); - } - static constexpr int kIndexInFileMessages = - 72; - - friend void swap(AggSpec_AggSpecNonUniqueSentinel& a, AggSpec_AggSpecNonUniqueSentinel& b) { - a.Swap(&b); + &_AggSpec_AggSpecNonUniqueSentinel_default_instance_); } + static constexpr int kIndexInFileMessages = 72; + friend void swap(AggSpec_AggSpecNonUniqueSentinel& a, AggSpec_AggSpecNonUniqueSentinel& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecNonUniqueSentinel* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6031,52 +6307,69 @@ class AggSpec_AggSpecNonUniqueSentinel final : // implements Message ---------------------------------------------- - AggSpec_AggSpecNonUniqueSentinel* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecNonUniqueSentinel* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecNonUniqueSentinel& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecNonUniqueSentinel& from) { - AggSpec_AggSpecNonUniqueSentinel::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecNonUniqueSentinel& from) { AggSpec_AggSpecNonUniqueSentinel::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecNonUniqueSentinel* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel"; } + + protected: explicit AggSpec_AggSpecNonUniqueSentinel(::google::protobuf::Arena* arena); AggSpec_AggSpecNonUniqueSentinel(::google::protobuf::Arena* arena, const AggSpec_AggSpecNonUniqueSentinel& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecNonUniqueSentinel(::google::protobuf::Arena* arena, AggSpec_AggSpecNonUniqueSentinel&& from) noexcept + : AggSpec_AggSpecNonUniqueSentinel(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kNullValueFieldNumber = 1, kStringValueFieldNumber = 2, @@ -6220,15 +6513,17 @@ class AggSpec_AggSpecNonUniqueSentinel final : void set_has_byte_value(); void set_has_short_value(); void set_has_char_value(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 10, 0, 95, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecNonUniqueSentinel_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -6236,16 +6531,16 @@ class AggSpec_AggSpecNonUniqueSentinel final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecNonUniqueSentinel& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; int null_value_; ::google::protobuf::internal::ArenaStringPtr string_value_; ::int32_t int_value_; @@ -6259,27 +6554,24 @@ class AggSpec_AggSpecNonUniqueSentinel final : } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecMin final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin) */ { +class AggSpec_AggSpecMin final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin) */ { public: inline AggSpec_AggSpecMin() : AggSpec_AggSpecMin(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMin(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecMin(const AggSpec_AggSpecMin& from) - : AggSpec_AggSpecMin(nullptr, from) {} - AggSpec_AggSpecMin(AggSpec_AggSpecMin&& from) noexcept - : AggSpec_AggSpecMin() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMin( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecMin(const AggSpec_AggSpecMin& from) : AggSpec_AggSpecMin(nullptr, from) {} + inline AggSpec_AggSpecMin(AggSpec_AggSpecMin&& from) noexcept + : AggSpec_AggSpecMin(nullptr, std::move(from)) {} inline AggSpec_AggSpecMin& operator=(const AggSpec_AggSpecMin& from) { CopyFrom(from); return *this; @@ -6287,9 +6579,9 @@ class AggSpec_AggSpecMin final : inline AggSpec_AggSpecMin& operator=(AggSpec_AggSpecMin&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6321,22 +6613,17 @@ class AggSpec_AggSpecMin final : } static inline const AggSpec_AggSpecMin* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecMin_default_instance_); - } - static constexpr int kIndexInFileMessages = - 81; - - friend void swap(AggSpec_AggSpecMin& a, AggSpec_AggSpecMin& b) { - a.Swap(&b); + &_AggSpec_AggSpecMin_default_instance_); } + static constexpr int kIndexInFileMessages = 81; + friend void swap(AggSpec_AggSpecMin& a, AggSpec_AggSpecMin& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecMin* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6350,8 +6637,8 @@ class AggSpec_AggSpecMin final : // implements Message ---------------------------------------------- - AggSpec_AggSpecMin* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecMin* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecMin& from) { @@ -6361,27 +6648,41 @@ class AggSpec_AggSpecMin final : void MergeFrom(const AggSpec_AggSpecMin& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin"; } + + protected: explicit AggSpec_AggSpecMin(::google::protobuf::Arena* arena); AggSpec_AggSpecMin(::google::protobuf::Arena* arena, const AggSpec_AggSpecMin& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecMin(::google::protobuf::Arena* arena, AggSpec_AggSpecMin&& from) noexcept + : AggSpec_AggSpecMin(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecMin_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6390,33 +6691,31 @@ class AggSpec_AggSpecMin final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecMin& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecMedian final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) */ { +class AggSpec_AggSpecMedian final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) */ { public: inline AggSpec_AggSpecMedian() : AggSpec_AggSpecMedian(nullptr) {} - ~AggSpec_AggSpecMedian() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMedian(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecMedian(const AggSpec_AggSpecMedian& from) - : AggSpec_AggSpecMedian(nullptr, from) {} - AggSpec_AggSpecMedian(AggSpec_AggSpecMedian&& from) noexcept - : AggSpec_AggSpecMedian() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecMedian() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMedian( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecMedian(const AggSpec_AggSpecMedian& from) : AggSpec_AggSpecMedian(nullptr, from) {} + inline AggSpec_AggSpecMedian(AggSpec_AggSpecMedian&& from) noexcept + : AggSpec_AggSpecMedian(nullptr, std::move(from)) {} inline AggSpec_AggSpecMedian& operator=(const AggSpec_AggSpecMedian& from) { CopyFrom(from); return *this; @@ -6424,9 +6723,9 @@ class AggSpec_AggSpecMedian final : inline AggSpec_AggSpecMedian& operator=(AggSpec_AggSpecMedian&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6458,22 +6757,17 @@ class AggSpec_AggSpecMedian final : } static inline const AggSpec_AggSpecMedian* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecMedian_default_instance_); - } - static constexpr int kIndexInFileMessages = - 66; - - friend void swap(AggSpec_AggSpecMedian& a, AggSpec_AggSpecMedian& b) { - a.Swap(&b); + &_AggSpec_AggSpecMedian_default_instance_); } + static constexpr int kIndexInFileMessages = 66; + friend void swap(AggSpec_AggSpecMedian& a, AggSpec_AggSpecMedian& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecMedian* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6487,52 +6781,69 @@ class AggSpec_AggSpecMedian final : // implements Message ---------------------------------------------- - AggSpec_AggSpecMedian* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecMedian* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecMedian& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecMedian& from) { - AggSpec_AggSpecMedian::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecMedian& from) { AggSpec_AggSpecMedian::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecMedian* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian"; } + + protected: explicit AggSpec_AggSpecMedian(::google::protobuf::Arena* arena); AggSpec_AggSpecMedian(::google::protobuf::Arena* arena, const AggSpec_AggSpecMedian& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecMedian(::google::protobuf::Arena* arena, AggSpec_AggSpecMedian&& from) noexcept + : AggSpec_AggSpecMedian(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAverageEvenlyDividedFieldNumber = 1, }; @@ -6549,12 +6860,15 @@ class AggSpec_AggSpecMedian final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecMedian_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -6562,35 +6876,33 @@ class AggSpec_AggSpecMedian final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecMedian& from_msg); bool average_evenly_divided_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecMax final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax) */ { +class AggSpec_AggSpecMax final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax) */ { public: inline AggSpec_AggSpecMax() : AggSpec_AggSpecMax(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMax(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecMax(const AggSpec_AggSpecMax& from) - : AggSpec_AggSpecMax(nullptr, from) {} - AggSpec_AggSpecMax(AggSpec_AggSpecMax&& from) noexcept - : AggSpec_AggSpecMax() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecMax( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecMax(const AggSpec_AggSpecMax& from) : AggSpec_AggSpecMax(nullptr, from) {} + inline AggSpec_AggSpecMax(AggSpec_AggSpecMax&& from) noexcept + : AggSpec_AggSpecMax(nullptr, std::move(from)) {} inline AggSpec_AggSpecMax& operator=(const AggSpec_AggSpecMax& from) { CopyFrom(from); return *this; @@ -6598,9 +6910,9 @@ class AggSpec_AggSpecMax final : inline AggSpec_AggSpecMax& operator=(AggSpec_AggSpecMax&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6632,22 +6944,17 @@ class AggSpec_AggSpecMax final : } static inline const AggSpec_AggSpecMax* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecMax_default_instance_); - } - static constexpr int kIndexInFileMessages = - 80; - - friend void swap(AggSpec_AggSpecMax& a, AggSpec_AggSpecMax& b) { - a.Swap(&b); + &_AggSpec_AggSpecMax_default_instance_); } + static constexpr int kIndexInFileMessages = 80; + friend void swap(AggSpec_AggSpecMax& a, AggSpec_AggSpecMax& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecMax* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6661,8 +6968,8 @@ class AggSpec_AggSpecMax final : // implements Message ---------------------------------------------- - AggSpec_AggSpecMax* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecMax* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecMax& from) { @@ -6672,27 +6979,41 @@ class AggSpec_AggSpecMax final : void MergeFrom(const AggSpec_AggSpecMax& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax"; } + + protected: explicit AggSpec_AggSpecMax(::google::protobuf::Arena* arena); AggSpec_AggSpecMax(::google::protobuf::Arena* arena, const AggSpec_AggSpecMax& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecMax(::google::protobuf::Arena* arena, AggSpec_AggSpecMax&& from) noexcept + : AggSpec_AggSpecMax(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecMax_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6701,32 +7022,30 @@ class AggSpec_AggSpecMax final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecMax& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecLast final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast) */ { +class AggSpec_AggSpecLast final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast) */ { public: inline AggSpec_AggSpecLast() : AggSpec_AggSpecLast(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecLast(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecLast(const AggSpec_AggSpecLast& from) - : AggSpec_AggSpecLast(nullptr, from) {} - AggSpec_AggSpecLast(AggSpec_AggSpecLast&& from) noexcept - : AggSpec_AggSpecLast() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecLast( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecLast(const AggSpec_AggSpecLast& from) : AggSpec_AggSpecLast(nullptr, from) {} + inline AggSpec_AggSpecLast(AggSpec_AggSpecLast&& from) noexcept + : AggSpec_AggSpecLast(nullptr, std::move(from)) {} inline AggSpec_AggSpecLast& operator=(const AggSpec_AggSpecLast& from) { CopyFrom(from); return *this; @@ -6734,9 +7053,9 @@ class AggSpec_AggSpecLast final : inline AggSpec_AggSpecLast& operator=(AggSpec_AggSpecLast&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6768,22 +7087,17 @@ class AggSpec_AggSpecLast final : } static inline const AggSpec_AggSpecLast* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecLast_default_instance_); - } - static constexpr int kIndexInFileMessages = - 79; - - friend void swap(AggSpec_AggSpecLast& a, AggSpec_AggSpecLast& b) { - a.Swap(&b); + &_AggSpec_AggSpecLast_default_instance_); } + static constexpr int kIndexInFileMessages = 79; + friend void swap(AggSpec_AggSpecLast& a, AggSpec_AggSpecLast& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecLast* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6797,8 +7111,8 @@ class AggSpec_AggSpecLast final : // implements Message ---------------------------------------------- - AggSpec_AggSpecLast* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecLast* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecLast& from) { @@ -6808,27 +7122,41 @@ class AggSpec_AggSpecLast final : void MergeFrom(const AggSpec_AggSpecLast& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast"; } + + protected: explicit AggSpec_AggSpecLast(::google::protobuf::Arena* arena); AggSpec_AggSpecLast(::google::protobuf::Arena* arena, const AggSpec_AggSpecLast& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecLast(::google::protobuf::Arena* arena, AggSpec_AggSpecLast&& from) noexcept + : AggSpec_AggSpecLast(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecLast_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6837,32 +7165,30 @@ class AggSpec_AggSpecLast final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecLast& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecGroup final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) */ { +class AggSpec_AggSpecGroup final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) */ { public: inline AggSpec_AggSpecGroup() : AggSpec_AggSpecGroup(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecGroup(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecGroup(const AggSpec_AggSpecGroup& from) - : AggSpec_AggSpecGroup(nullptr, from) {} - AggSpec_AggSpecGroup(AggSpec_AggSpecGroup&& from) noexcept - : AggSpec_AggSpecGroup() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecGroup( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecGroup(const AggSpec_AggSpecGroup& from) : AggSpec_AggSpecGroup(nullptr, from) {} + inline AggSpec_AggSpecGroup(AggSpec_AggSpecGroup&& from) noexcept + : AggSpec_AggSpecGroup(nullptr, std::move(from)) {} inline AggSpec_AggSpecGroup& operator=(const AggSpec_AggSpecGroup& from) { CopyFrom(from); return *this; @@ -6870,9 +7196,9 @@ class AggSpec_AggSpecGroup final : inline AggSpec_AggSpecGroup& operator=(AggSpec_AggSpecGroup&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -6904,22 +7230,17 @@ class AggSpec_AggSpecGroup final : } static inline const AggSpec_AggSpecGroup* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecGroup_default_instance_); - } - static constexpr int kIndexInFileMessages = - 78; - - friend void swap(AggSpec_AggSpecGroup& a, AggSpec_AggSpecGroup& b) { - a.Swap(&b); + &_AggSpec_AggSpecGroup_default_instance_); } + static constexpr int kIndexInFileMessages = 78; + friend void swap(AggSpec_AggSpecGroup& a, AggSpec_AggSpecGroup& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecGroup* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -6933,8 +7254,8 @@ class AggSpec_AggSpecGroup final : // implements Message ---------------------------------------------- - AggSpec_AggSpecGroup* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecGroup* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecGroup& from) { @@ -6944,27 +7265,41 @@ class AggSpec_AggSpecGroup final : void MergeFrom(const AggSpec_AggSpecGroup& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup"; } + + protected: explicit AggSpec_AggSpecGroup(::google::protobuf::Arena* arena); AggSpec_AggSpecGroup(::google::protobuf::Arena* arena, const AggSpec_AggSpecGroup& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecGroup(::google::protobuf::Arena* arena, AggSpec_AggSpecGroup&& from) noexcept + : AggSpec_AggSpecGroup(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecGroup_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6973,32 +7308,30 @@ class AggSpec_AggSpecGroup final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecGroup& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecFreeze final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze) */ { +class AggSpec_AggSpecFreeze final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze) */ { public: inline AggSpec_AggSpecFreeze() : AggSpec_AggSpecFreeze(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFreeze(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecFreeze(const AggSpec_AggSpecFreeze& from) - : AggSpec_AggSpecFreeze(nullptr, from) {} - AggSpec_AggSpecFreeze(AggSpec_AggSpecFreeze&& from) noexcept - : AggSpec_AggSpecFreeze() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFreeze( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecFreeze(const AggSpec_AggSpecFreeze& from) : AggSpec_AggSpecFreeze(nullptr, from) {} + inline AggSpec_AggSpecFreeze(AggSpec_AggSpecFreeze&& from) noexcept + : AggSpec_AggSpecFreeze(nullptr, std::move(from)) {} inline AggSpec_AggSpecFreeze& operator=(const AggSpec_AggSpecFreeze& from) { CopyFrom(from); return *this; @@ -7006,9 +7339,9 @@ class AggSpec_AggSpecFreeze final : inline AggSpec_AggSpecFreeze& operator=(AggSpec_AggSpecFreeze&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7040,22 +7373,17 @@ class AggSpec_AggSpecFreeze final : } static inline const AggSpec_AggSpecFreeze* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecFreeze_default_instance_); - } - static constexpr int kIndexInFileMessages = - 77; - - friend void swap(AggSpec_AggSpecFreeze& a, AggSpec_AggSpecFreeze& b) { - a.Swap(&b); + &_AggSpec_AggSpecFreeze_default_instance_); } + static constexpr int kIndexInFileMessages = 77; + friend void swap(AggSpec_AggSpecFreeze& a, AggSpec_AggSpecFreeze& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecFreeze* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7069,8 +7397,8 @@ class AggSpec_AggSpecFreeze final : // implements Message ---------------------------------------------- - AggSpec_AggSpecFreeze* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecFreeze* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecFreeze& from) { @@ -7080,27 +7408,41 @@ class AggSpec_AggSpecFreeze final : void MergeFrom(const AggSpec_AggSpecFreeze& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze"; } + + protected: explicit AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena); AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena, const AggSpec_AggSpecFreeze& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena, AggSpec_AggSpecFreeze&& from) noexcept + : AggSpec_AggSpecFreeze(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecFreeze_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7109,33 +7451,31 @@ class AggSpec_AggSpecFreeze final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecFreeze& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecFormula final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) */ { +class AggSpec_AggSpecFormula final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) */ { public: inline AggSpec_AggSpecFormula() : AggSpec_AggSpecFormula(nullptr) {} - ~AggSpec_AggSpecFormula() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFormula(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecFormula(const AggSpec_AggSpecFormula& from) - : AggSpec_AggSpecFormula(nullptr, from) {} - AggSpec_AggSpecFormula(AggSpec_AggSpecFormula&& from) noexcept - : AggSpec_AggSpecFormula() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecFormula() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFormula( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecFormula(const AggSpec_AggSpecFormula& from) : AggSpec_AggSpecFormula(nullptr, from) {} + inline AggSpec_AggSpecFormula(AggSpec_AggSpecFormula&& from) noexcept + : AggSpec_AggSpecFormula(nullptr, std::move(from)) {} inline AggSpec_AggSpecFormula& operator=(const AggSpec_AggSpecFormula& from) { CopyFrom(from); return *this; @@ -7143,9 +7483,9 @@ class AggSpec_AggSpecFormula final : inline AggSpec_AggSpecFormula& operator=(AggSpec_AggSpecFormula&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7177,22 +7517,17 @@ class AggSpec_AggSpecFormula final : } static inline const AggSpec_AggSpecFormula* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecFormula_default_instance_); - } - static constexpr int kIndexInFileMessages = - 65; - - friend void swap(AggSpec_AggSpecFormula& a, AggSpec_AggSpecFormula& b) { - a.Swap(&b); + &_AggSpec_AggSpecFormula_default_instance_); } + static constexpr int kIndexInFileMessages = 65; + friend void swap(AggSpec_AggSpecFormula& a, AggSpec_AggSpecFormula& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecFormula* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7206,52 +7541,69 @@ class AggSpec_AggSpecFormula final : // implements Message ---------------------------------------------- - AggSpec_AggSpecFormula* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecFormula* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecFormula& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecFormula& from) { - AggSpec_AggSpecFormula::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecFormula& from) { AggSpec_AggSpecFormula::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecFormula* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula"; } + + protected: explicit AggSpec_AggSpecFormula(::google::protobuf::Arena* arena); AggSpec_AggSpecFormula(::google::protobuf::Arena* arena, const AggSpec_AggSpecFormula& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecFormula(::google::protobuf::Arena* arena, AggSpec_AggSpecFormula&& from) noexcept + : AggSpec_AggSpecFormula(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFormulaFieldNumber = 1, kParamTokenFieldNumber = 2, @@ -7291,12 +7643,15 @@ class AggSpec_AggSpecFormula final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 83, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecFormula_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7304,13 +7659,13 @@ class AggSpec_AggSpecFormula final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecFormula& from_msg); ::google::protobuf::internal::ArenaStringPtr formula_; ::google::protobuf::internal::ArenaStringPtr param_token_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -7318,22 +7673,20 @@ class AggSpec_AggSpecFormula final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecFirst final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst) */ { +class AggSpec_AggSpecFirst final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst) */ { public: inline AggSpec_AggSpecFirst() : AggSpec_AggSpecFirst(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFirst(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecFirst(const AggSpec_AggSpecFirst& from) - : AggSpec_AggSpecFirst(nullptr, from) {} - AggSpec_AggSpecFirst(AggSpec_AggSpecFirst&& from) noexcept - : AggSpec_AggSpecFirst() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecFirst( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecFirst(const AggSpec_AggSpecFirst& from) : AggSpec_AggSpecFirst(nullptr, from) {} + inline AggSpec_AggSpecFirst(AggSpec_AggSpecFirst&& from) noexcept + : AggSpec_AggSpecFirst(nullptr, std::move(from)) {} inline AggSpec_AggSpecFirst& operator=(const AggSpec_AggSpecFirst& from) { CopyFrom(from); return *this; @@ -7341,9 +7694,9 @@ class AggSpec_AggSpecFirst final : inline AggSpec_AggSpecFirst& operator=(AggSpec_AggSpecFirst&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7375,22 +7728,17 @@ class AggSpec_AggSpecFirst final : } static inline const AggSpec_AggSpecFirst* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecFirst_default_instance_); - } - static constexpr int kIndexInFileMessages = - 76; - - friend void swap(AggSpec_AggSpecFirst& a, AggSpec_AggSpecFirst& b) { - a.Swap(&b); + &_AggSpec_AggSpecFirst_default_instance_); } + static constexpr int kIndexInFileMessages = 76; + friend void swap(AggSpec_AggSpecFirst& a, AggSpec_AggSpecFirst& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecFirst* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7404,8 +7752,8 @@ class AggSpec_AggSpecFirst final : // implements Message ---------------------------------------------- - AggSpec_AggSpecFirst* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecFirst* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecFirst& from) { @@ -7415,27 +7763,41 @@ class AggSpec_AggSpecFirst final : void MergeFrom(const AggSpec_AggSpecFirst& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst"; } + + protected: explicit AggSpec_AggSpecFirst(::google::protobuf::Arena* arena); AggSpec_AggSpecFirst(::google::protobuf::Arena* arena, const AggSpec_AggSpecFirst& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecFirst(::google::protobuf::Arena* arena, AggSpec_AggSpecFirst&& from) noexcept + : AggSpec_AggSpecFirst(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecFirst_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7444,33 +7806,31 @@ class AggSpec_AggSpecFirst final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecFirst& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecDistinct final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) */ { +class AggSpec_AggSpecDistinct final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) */ { public: inline AggSpec_AggSpecDistinct() : AggSpec_AggSpecDistinct(nullptr) {} - ~AggSpec_AggSpecDistinct() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecDistinct(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecDistinct(const AggSpec_AggSpecDistinct& from) - : AggSpec_AggSpecDistinct(nullptr, from) {} - AggSpec_AggSpecDistinct(AggSpec_AggSpecDistinct&& from) noexcept - : AggSpec_AggSpecDistinct() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecDistinct() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecDistinct( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecDistinct(const AggSpec_AggSpecDistinct& from) : AggSpec_AggSpecDistinct(nullptr, from) {} + inline AggSpec_AggSpecDistinct(AggSpec_AggSpecDistinct&& from) noexcept + : AggSpec_AggSpecDistinct(nullptr, std::move(from)) {} inline AggSpec_AggSpecDistinct& operator=(const AggSpec_AggSpecDistinct& from) { CopyFrom(from); return *this; @@ -7478,9 +7838,9 @@ class AggSpec_AggSpecDistinct final : inline AggSpec_AggSpecDistinct& operator=(AggSpec_AggSpecDistinct&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7512,22 +7872,17 @@ class AggSpec_AggSpecDistinct final : } static inline const AggSpec_AggSpecDistinct* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecDistinct_default_instance_); - } - static constexpr int kIndexInFileMessages = - 64; - - friend void swap(AggSpec_AggSpecDistinct& a, AggSpec_AggSpecDistinct& b) { - a.Swap(&b); + &_AggSpec_AggSpecDistinct_default_instance_); } + static constexpr int kIndexInFileMessages = 64; + friend void swap(AggSpec_AggSpecDistinct& a, AggSpec_AggSpecDistinct& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecDistinct* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7541,52 +7896,69 @@ class AggSpec_AggSpecDistinct final : // implements Message ---------------------------------------------- - AggSpec_AggSpecDistinct* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecDistinct* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecDistinct& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecDistinct& from) { - AggSpec_AggSpecDistinct::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecDistinct& from) { AggSpec_AggSpecDistinct::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecDistinct* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct"; } + + protected: explicit AggSpec_AggSpecDistinct(::google::protobuf::Arena* arena); AggSpec_AggSpecDistinct(::google::protobuf::Arena* arena, const AggSpec_AggSpecDistinct& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecDistinct(::google::protobuf::Arena* arena, AggSpec_AggSpecDistinct&& from) noexcept + : AggSpec_AggSpecDistinct(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kIncludeNullsFieldNumber = 1, }; @@ -7603,12 +7975,15 @@ class AggSpec_AggSpecDistinct final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecDistinct_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7616,36 +7991,34 @@ class AggSpec_AggSpecDistinct final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecDistinct& from_msg); bool include_nulls_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecCountDistinct final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) */ { +class AggSpec_AggSpecCountDistinct final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) */ { public: inline AggSpec_AggSpecCountDistinct() : AggSpec_AggSpecCountDistinct(nullptr) {} - ~AggSpec_AggSpecCountDistinct() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecCountDistinct(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecCountDistinct(const AggSpec_AggSpecCountDistinct& from) - : AggSpec_AggSpecCountDistinct(nullptr, from) {} - AggSpec_AggSpecCountDistinct(AggSpec_AggSpecCountDistinct&& from) noexcept - : AggSpec_AggSpecCountDistinct() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecCountDistinct() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecCountDistinct( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecCountDistinct(const AggSpec_AggSpecCountDistinct& from) : AggSpec_AggSpecCountDistinct(nullptr, from) {} + inline AggSpec_AggSpecCountDistinct(AggSpec_AggSpecCountDistinct&& from) noexcept + : AggSpec_AggSpecCountDistinct(nullptr, std::move(from)) {} inline AggSpec_AggSpecCountDistinct& operator=(const AggSpec_AggSpecCountDistinct& from) { CopyFrom(from); return *this; @@ -7653,9 +8026,9 @@ class AggSpec_AggSpecCountDistinct final : inline AggSpec_AggSpecCountDistinct& operator=(AggSpec_AggSpecCountDistinct&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7687,22 +8060,17 @@ class AggSpec_AggSpecCountDistinct final : } static inline const AggSpec_AggSpecCountDistinct* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecCountDistinct_default_instance_); - } - static constexpr int kIndexInFileMessages = - 63; - - friend void swap(AggSpec_AggSpecCountDistinct& a, AggSpec_AggSpecCountDistinct& b) { - a.Swap(&b); + &_AggSpec_AggSpecCountDistinct_default_instance_); } + static constexpr int kIndexInFileMessages = 63; + friend void swap(AggSpec_AggSpecCountDistinct& a, AggSpec_AggSpecCountDistinct& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecCountDistinct* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7716,52 +8084,69 @@ class AggSpec_AggSpecCountDistinct final : // implements Message ---------------------------------------------- - AggSpec_AggSpecCountDistinct* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecCountDistinct* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecCountDistinct& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecCountDistinct& from) { - AggSpec_AggSpecCountDistinct::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecCountDistinct& from) { AggSpec_AggSpecCountDistinct::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecCountDistinct* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct"; } + + protected: explicit AggSpec_AggSpecCountDistinct(::google::protobuf::Arena* arena); AggSpec_AggSpecCountDistinct(::google::protobuf::Arena* arena, const AggSpec_AggSpecCountDistinct& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecCountDistinct(::google::protobuf::Arena* arena, AggSpec_AggSpecCountDistinct&& from) noexcept + : AggSpec_AggSpecCountDistinct(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kCountNullsFieldNumber = 1, }; @@ -7778,12 +8163,15 @@ class AggSpec_AggSpecCountDistinct final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecCountDistinct_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -7791,35 +8179,33 @@ class AggSpec_AggSpecCountDistinct final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecCountDistinct& from_msg); bool count_nulls_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecAvg final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg) */ { +class AggSpec_AggSpecAvg final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg) */ { public: inline AggSpec_AggSpecAvg() : AggSpec_AggSpecAvg(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecAvg(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecAvg(const AggSpec_AggSpecAvg& from) - : AggSpec_AggSpecAvg(nullptr, from) {} - AggSpec_AggSpecAvg(AggSpec_AggSpecAvg&& from) noexcept - : AggSpec_AggSpecAvg() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecAvg( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecAvg(const AggSpec_AggSpecAvg& from) : AggSpec_AggSpecAvg(nullptr, from) {} + inline AggSpec_AggSpecAvg(AggSpec_AggSpecAvg&& from) noexcept + : AggSpec_AggSpecAvg(nullptr, std::move(from)) {} inline AggSpec_AggSpecAvg& operator=(const AggSpec_AggSpecAvg& from) { CopyFrom(from); return *this; @@ -7827,9 +8213,9 @@ class AggSpec_AggSpecAvg final : inline AggSpec_AggSpecAvg& operator=(AggSpec_AggSpecAvg&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7861,22 +8247,17 @@ class AggSpec_AggSpecAvg final : } static inline const AggSpec_AggSpecAvg* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecAvg_default_instance_); - } - static constexpr int kIndexInFileMessages = - 75; - - friend void swap(AggSpec_AggSpecAvg& a, AggSpec_AggSpecAvg& b) { - a.Swap(&b); + &_AggSpec_AggSpecAvg_default_instance_); } + static constexpr int kIndexInFileMessages = 75; + friend void swap(AggSpec_AggSpecAvg& a, AggSpec_AggSpecAvg& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecAvg* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -7890,8 +8271,8 @@ class AggSpec_AggSpecAvg final : // implements Message ---------------------------------------------- - AggSpec_AggSpecAvg* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecAvg* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecAvg& from) { @@ -7901,27 +8282,41 @@ class AggSpec_AggSpecAvg final : void MergeFrom(const AggSpec_AggSpecAvg& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg"; } + + protected: explicit AggSpec_AggSpecAvg(::google::protobuf::Arena* arena); AggSpec_AggSpecAvg(::google::protobuf::Arena* arena, const AggSpec_AggSpecAvg& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecAvg(::google::protobuf::Arena* arena, AggSpec_AggSpecAvg&& from) noexcept + : AggSpec_AggSpecAvg(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecAvg_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7930,33 +8325,31 @@ class AggSpec_AggSpecAvg final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecAvg& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecApproximatePercentile final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) */ { +class AggSpec_AggSpecApproximatePercentile final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) */ { public: inline AggSpec_AggSpecApproximatePercentile() : AggSpec_AggSpecApproximatePercentile(nullptr) {} - ~AggSpec_AggSpecApproximatePercentile() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecApproximatePercentile(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecApproximatePercentile(const AggSpec_AggSpecApproximatePercentile& from) - : AggSpec_AggSpecApproximatePercentile(nullptr, from) {} - AggSpec_AggSpecApproximatePercentile(AggSpec_AggSpecApproximatePercentile&& from) noexcept - : AggSpec_AggSpecApproximatePercentile() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecApproximatePercentile() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecApproximatePercentile( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecApproximatePercentile(const AggSpec_AggSpecApproximatePercentile& from) : AggSpec_AggSpecApproximatePercentile(nullptr, from) {} + inline AggSpec_AggSpecApproximatePercentile(AggSpec_AggSpecApproximatePercentile&& from) noexcept + : AggSpec_AggSpecApproximatePercentile(nullptr, std::move(from)) {} inline AggSpec_AggSpecApproximatePercentile& operator=(const AggSpec_AggSpecApproximatePercentile& from) { CopyFrom(from); return *this; @@ -7964,9 +8357,9 @@ class AggSpec_AggSpecApproximatePercentile final : inline AggSpec_AggSpecApproximatePercentile& operator=(AggSpec_AggSpecApproximatePercentile&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -7998,22 +8391,17 @@ class AggSpec_AggSpecApproximatePercentile final : } static inline const AggSpec_AggSpecApproximatePercentile* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecApproximatePercentile_default_instance_); - } - static constexpr int kIndexInFileMessages = - 62; - - friend void swap(AggSpec_AggSpecApproximatePercentile& a, AggSpec_AggSpecApproximatePercentile& b) { - a.Swap(&b); + &_AggSpec_AggSpecApproximatePercentile_default_instance_); } + static constexpr int kIndexInFileMessages = 62; + friend void swap(AggSpec_AggSpecApproximatePercentile& a, AggSpec_AggSpecApproximatePercentile& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecApproximatePercentile* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8027,52 +8415,69 @@ class AggSpec_AggSpecApproximatePercentile final : // implements Message ---------------------------------------------- - AggSpec_AggSpecApproximatePercentile* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecApproximatePercentile* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecApproximatePercentile& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecApproximatePercentile& from) { - AggSpec_AggSpecApproximatePercentile::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecApproximatePercentile& from) { AggSpec_AggSpecApproximatePercentile::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecApproximatePercentile* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile"; } + + protected: explicit AggSpec_AggSpecApproximatePercentile(::google::protobuf::Arena* arena); AggSpec_AggSpecApproximatePercentile(::google::protobuf::Arena* arena, const AggSpec_AggSpecApproximatePercentile& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecApproximatePercentile(::google::protobuf::Arena* arena, AggSpec_AggSpecApproximatePercentile&& from) noexcept + : AggSpec_AggSpecApproximatePercentile(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kPercentileFieldNumber = 1, kCompressionFieldNumber = 2, @@ -8101,12 +8506,15 @@ class AggSpec_AggSpecApproximatePercentile final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecApproximatePercentile_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8114,13 +8522,13 @@ class AggSpec_AggSpecApproximatePercentile final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecApproximatePercentile& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; double percentile_; @@ -8129,22 +8537,20 @@ class AggSpec_AggSpecApproximatePercentile final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecAbsSum final : - public ::google::protobuf::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum) */ { +class AggSpec_AggSpecAbsSum final : public ::google::protobuf::internal::ZeroFieldsBase +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum) */ { public: inline AggSpec_AggSpecAbsSum() : AggSpec_AggSpecAbsSum(nullptr) {} - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecAbsSum(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecAbsSum(const AggSpec_AggSpecAbsSum& from) - : AggSpec_AggSpecAbsSum(nullptr, from) {} - AggSpec_AggSpecAbsSum(AggSpec_AggSpecAbsSum&& from) noexcept - : AggSpec_AggSpecAbsSum() { - *this = ::std::move(from); - } + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecAbsSum( + ::google::protobuf::internal::ConstantInitialized); + inline AggSpec_AggSpecAbsSum(const AggSpec_AggSpecAbsSum& from) : AggSpec_AggSpecAbsSum(nullptr, from) {} + inline AggSpec_AggSpecAbsSum(AggSpec_AggSpecAbsSum&& from) noexcept + : AggSpec_AggSpecAbsSum(nullptr, std::move(from)) {} inline AggSpec_AggSpecAbsSum& operator=(const AggSpec_AggSpecAbsSum& from) { CopyFrom(from); return *this; @@ -8152,9 +8558,9 @@ class AggSpec_AggSpecAbsSum final : inline AggSpec_AggSpecAbsSum& operator=(AggSpec_AggSpecAbsSum&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8186,22 +8592,17 @@ class AggSpec_AggSpecAbsSum final : } static inline const AggSpec_AggSpecAbsSum* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecAbsSum_default_instance_); - } - static constexpr int kIndexInFileMessages = - 74; - - friend void swap(AggSpec_AggSpecAbsSum& a, AggSpec_AggSpecAbsSum& b) { - a.Swap(&b); + &_AggSpec_AggSpecAbsSum_default_instance_); } + static constexpr int kIndexInFileMessages = 74; + friend void swap(AggSpec_AggSpecAbsSum& a, AggSpec_AggSpecAbsSum& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecAbsSum* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8215,8 +8616,8 @@ class AggSpec_AggSpecAbsSum final : // implements Message ---------------------------------------------- - AggSpec_AggSpecAbsSum* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecAbsSum* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct(arena); } using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom; inline void CopyFrom(const AggSpec_AggSpecAbsSum& from) { @@ -8226,27 +8627,41 @@ class AggSpec_AggSpecAbsSum final : void MergeFrom(const AggSpec_AggSpecAbsSum& from) { ::google::protobuf::internal::ZeroFieldsBase::MergeImpl(*this, from); } - public: - private: - friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum"; + public: + bool IsInitialized() const { + return true; } - protected: + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum"; } + + protected: explicit AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena); AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena, const AggSpec_AggSpecAbsSum& from); - public: - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena, AggSpec_AggSpecAbsSum&& from) noexcept + : AggSpec_AggSpecAbsSum(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum) private: class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 0, 0, + 0, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecAbsSum_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8255,33 +8670,31 @@ class AggSpec_AggSpecAbsSum final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecAbsSum& from_msg); PROTOBUF_TSAN_DECLARE_MEMBER }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Value final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Value) */ { +class Value final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Value) */ { public: inline Value() : Value(nullptr) {} - ~Value() override; - template - explicit PROTOBUF_CONSTEXPR Value(::google::protobuf::internal::ConstantInitialized); - - inline Value(const Value& from) - : Value(nullptr, from) {} - Value(Value&& from) noexcept - : Value() { - *this = ::std::move(from); - } - + ~Value() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Value( + ::google::protobuf::internal::ConstantInitialized); + + inline Value(const Value& from) : Value(nullptr, from) {} + inline Value(Value&& from) noexcept + : Value(nullptr, std::move(from)) {} inline Value& operator=(const Value& from) { CopyFrom(from); return *this; @@ -8289,9 +8702,9 @@ class Value final : inline Value& operator=(Value&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8326,25 +8739,19 @@ class Value final : kLiteral = 2, DATA_NOT_SET = 0, }; - static inline const Value* internal_default_instance() { return reinterpret_cast( - &_Value_default_instance_); - } - static constexpr int kIndexInFileMessages = - 99; - - friend void swap(Value& a, Value& b) { - a.Swap(&b); + &_Value_default_instance_); } + static constexpr int kIndexInFileMessages = 99; + friend void swap(Value& a, Value& b) { a.Swap(&b); } inline void Swap(Value* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8358,52 +8765,69 @@ class Value final : // implements Message ---------------------------------------------- - Value* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Value& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Value& from) { - Value::MergeImpl(*this, from); - } + void MergeFrom(const Value& from) { Value::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Value* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Value"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Value"; } + + protected: explicit Value(::google::protobuf::Arena* arena); Value(::google::protobuf::Arena* arena, const Value& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Value(::google::protobuf::Arena* arena, Value&& from) noexcept + : Value(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReferenceFieldNumber = 1, kLiteralFieldNumber = 2, @@ -8453,15 +8877,17 @@ class Value final : class _Internal; void set_has_reference(); void set_has_literal(); - inline bool has_data() const; inline void clear_has_data(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Value_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8469,43 +8895,40 @@ class Value final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Value& from_msg); union DataUnion { constexpr DataUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::Reference* reference_; ::io::deephaven::proto::backplane::grpc::Literal* literal_; } data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByWindowScale final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) */ { +class UpdateByWindowScale final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) */ { public: inline UpdateByWindowScale() : UpdateByWindowScale(nullptr) {} - ~UpdateByWindowScale() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByWindowScale(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByWindowScale(const UpdateByWindowScale& from) - : UpdateByWindowScale(nullptr, from) {} - UpdateByWindowScale(UpdateByWindowScale&& from) noexcept - : UpdateByWindowScale() { - *this = ::std::move(from); - } - + ~UpdateByWindowScale() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByWindowScale( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByWindowScale(const UpdateByWindowScale& from) : UpdateByWindowScale(nullptr, from) {} + inline UpdateByWindowScale(UpdateByWindowScale&& from) noexcept + : UpdateByWindowScale(nullptr, std::move(from)) {} inline UpdateByWindowScale& operator=(const UpdateByWindowScale& from) { CopyFrom(from); return *this; @@ -8513,9 +8936,9 @@ class UpdateByWindowScale final : inline UpdateByWindowScale& operator=(UpdateByWindowScale&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8550,25 +8973,19 @@ class UpdateByWindowScale final : kTime = 2, TYPE_NOT_SET = 0, }; - static inline const UpdateByWindowScale* internal_default_instance() { return reinterpret_cast( - &_UpdateByWindowScale_default_instance_); - } - static constexpr int kIndexInFileMessages = - 12; - - friend void swap(UpdateByWindowScale& a, UpdateByWindowScale& b) { - a.Swap(&b); + &_UpdateByWindowScale_default_instance_); } + static constexpr int kIndexInFileMessages = 12; + friend void swap(UpdateByWindowScale& a, UpdateByWindowScale& b) { a.Swap(&b); } inline void Swap(UpdateByWindowScale* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8582,55 +8999,71 @@ class UpdateByWindowScale final : // implements Message ---------------------------------------------- - UpdateByWindowScale* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByWindowScale* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByWindowScale& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByWindowScale& from) { - UpdateByWindowScale::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByWindowScale& from) { UpdateByWindowScale::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByWindowScale* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByWindowScale"; } + + protected: explicit UpdateByWindowScale(::google::protobuf::Arena* arena); UpdateByWindowScale(::google::protobuf::Arena* arena, const UpdateByWindowScale& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByWindowScale(::google::protobuf::Arena* arena, UpdateByWindowScale&& from) noexcept + : UpdateByWindowScale(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using UpdateByWindowTicks = UpdateByWindowScale_UpdateByWindowTicks; using UpdateByWindowTime = UpdateByWindowScale_UpdateByWindowTime; // accessors ------------------------------------------------------- - enum : int { kTicksFieldNumber = 1, kTimeFieldNumber = 2, @@ -8680,15 +9113,17 @@ class UpdateByWindowScale final : class _Internal; void set_has_ticks(); void set_has_time(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByWindowScale_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8696,43 +9131,40 @@ class UpdateByWindowScale final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByWindowScale& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* ticks_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* time_; } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOptions final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) */ { +class UpdateByRequest_UpdateByOptions final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) */ { public: inline UpdateByRequest_UpdateByOptions() : UpdateByRequest_UpdateByOptions(nullptr) {} - ~UpdateByRequest_UpdateByOptions() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOptions(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOptions(const UpdateByRequest_UpdateByOptions& from) - : UpdateByRequest_UpdateByOptions(nullptr, from) {} - UpdateByRequest_UpdateByOptions(UpdateByRequest_UpdateByOptions&& from) noexcept - : UpdateByRequest_UpdateByOptions() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOptions() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOptions( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOptions(const UpdateByRequest_UpdateByOptions& from) : UpdateByRequest_UpdateByOptions(nullptr, from) {} + inline UpdateByRequest_UpdateByOptions(UpdateByRequest_UpdateByOptions&& from) noexcept + : UpdateByRequest_UpdateByOptions(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOptions& operator=(const UpdateByRequest_UpdateByOptions& from) { CopyFrom(from); return *this; @@ -8740,9 +9172,9 @@ class UpdateByRequest_UpdateByOptions final : inline UpdateByRequest_UpdateByOptions& operator=(UpdateByRequest_UpdateByOptions&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -8774,22 +9206,17 @@ class UpdateByRequest_UpdateByOptions final : } static inline const UpdateByRequest_UpdateByOptions* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOptions_default_instance_); - } - static constexpr int kIndexInFileMessages = - 15; - - friend void swap(UpdateByRequest_UpdateByOptions& a, UpdateByRequest_UpdateByOptions& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOptions_default_instance_); } + static constexpr int kIndexInFileMessages = 15; + friend void swap(UpdateByRequest_UpdateByOptions& a, UpdateByRequest_UpdateByOptions& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOptions* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -8803,52 +9230,69 @@ class UpdateByRequest_UpdateByOptions final : // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOptions* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOptions* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOptions& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOptions& from) { - UpdateByRequest_UpdateByOptions::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOptions& from) { UpdateByRequest_UpdateByOptions::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOptions* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions"; } + + protected: explicit UpdateByRequest_UpdateByOptions(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOptions(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOptions& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOptions(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOptions&& from) noexcept + : UpdateByRequest_UpdateByOptions(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMathContextFieldNumber = 7, kUseRedirectionFieldNumber = 1, @@ -8942,12 +9386,15 @@ class UpdateByRequest_UpdateByOptions final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 7, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOptions_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -8955,13 +9402,13 @@ class UpdateByRequest_UpdateByOptions final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOptions& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::MathContext* math_context_; @@ -8975,23 +9422,21 @@ class UpdateByRequest_UpdateByOptions final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) { CopyFrom(from); return *this; @@ -8999,9 +9444,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9033,22 +9478,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_); - } - static constexpr int kIndexInFileMessages = - 26; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_); } + static constexpr int kIndexInFileMessages = 26; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9062,52 +9502,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, }; @@ -9129,12 +9586,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9142,13 +9602,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* options_; @@ -9156,23 +9616,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelt }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByEmOptions final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) */ { +class UpdateByEmOptions final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) */ { public: inline UpdateByEmOptions() : UpdateByEmOptions(nullptr) {} - ~UpdateByEmOptions() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByEmOptions(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByEmOptions(const UpdateByEmOptions& from) - : UpdateByEmOptions(nullptr, from) {} - UpdateByEmOptions(UpdateByEmOptions&& from) noexcept - : UpdateByEmOptions() { - *this = ::std::move(from); - } - + ~UpdateByEmOptions() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByEmOptions( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByEmOptions(const UpdateByEmOptions& from) : UpdateByEmOptions(nullptr, from) {} + inline UpdateByEmOptions(UpdateByEmOptions&& from) noexcept + : UpdateByEmOptions(nullptr, std::move(from)) {} inline UpdateByEmOptions& operator=(const UpdateByEmOptions& from) { CopyFrom(from); return *this; @@ -9180,9 +9638,9 @@ class UpdateByEmOptions final : inline UpdateByEmOptions& operator=(UpdateByEmOptions&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9214,22 +9672,17 @@ class UpdateByEmOptions final : } static inline const UpdateByEmOptions* internal_default_instance() { return reinterpret_cast( - &_UpdateByEmOptions_default_instance_); - } - static constexpr int kIndexInFileMessages = - 13; - - friend void swap(UpdateByEmOptions& a, UpdateByEmOptions& b) { - a.Swap(&b); + &_UpdateByEmOptions_default_instance_); } + static constexpr int kIndexInFileMessages = 13; + friend void swap(UpdateByEmOptions& a, UpdateByEmOptions& b) { a.Swap(&b); } inline void Swap(UpdateByEmOptions* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9243,52 +9696,69 @@ class UpdateByEmOptions final : // implements Message ---------------------------------------------- - UpdateByEmOptions* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByEmOptions* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByEmOptions& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByEmOptions& from) { - UpdateByEmOptions::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByEmOptions& from) { UpdateByEmOptions::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByEmOptions* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByEmOptions"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByEmOptions"; } + + protected: explicit UpdateByEmOptions(::google::protobuf::Arena* arena); UpdateByEmOptions(::google::protobuf::Arena* arena, const UpdateByEmOptions& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByEmOptions(::google::protobuf::Arena* arena, UpdateByEmOptions&& from) noexcept + : UpdateByEmOptions(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kBigValueContextFieldNumber = 6, kOnNullValueFieldNumber = 1, @@ -9365,12 +9835,15 @@ class UpdateByEmOptions final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByEmOptions_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9378,13 +9851,13 @@ class UpdateByEmOptions final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByEmOptions& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::MathContext* big_value_context_; @@ -9397,23 +9870,21 @@ class UpdateByEmOptions final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TimeTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TimeTableRequest) */ { +class TimeTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TimeTableRequest) */ { public: inline TimeTableRequest() : TimeTableRequest(nullptr) {} - ~TimeTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR TimeTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline TimeTableRequest(const TimeTableRequest& from) - : TimeTableRequest(nullptr, from) {} - TimeTableRequest(TimeTableRequest&& from) noexcept - : TimeTableRequest() { - *this = ::std::move(from); - } - + ~TimeTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TimeTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline TimeTableRequest(const TimeTableRequest& from) : TimeTableRequest(nullptr, from) {} + inline TimeTableRequest(TimeTableRequest&& from) noexcept + : TimeTableRequest(nullptr, std::move(from)) {} inline TimeTableRequest& operator=(const TimeTableRequest& from) { CopyFrom(from); return *this; @@ -9421,9 +9892,9 @@ class TimeTableRequest final : inline TimeTableRequest& operator=(TimeTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9458,31 +9929,24 @@ class TimeTableRequest final : kStartTimeString = 5, START_TIME_NOT_SET = 0, }; - enum PeriodCase { kPeriodNanos = 3, kPeriodString = 6, PERIOD_NOT_SET = 0, }; - static inline const TimeTableRequest* internal_default_instance() { return reinterpret_cast( - &_TimeTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(TimeTableRequest& a, TimeTableRequest& b) { - a.Swap(&b); + &_TimeTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 7; + friend void swap(TimeTableRequest& a, TimeTableRequest& b) { a.Swap(&b); } inline void Swap(TimeTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9496,52 +9960,69 @@ class TimeTableRequest final : // implements Message ---------------------------------------------- - TimeTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TimeTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TimeTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TimeTableRequest& from) { - TimeTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const TimeTableRequest& from) { TimeTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TimeTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TimeTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TimeTableRequest"; } + + protected: explicit TimeTableRequest(::google::protobuf::Arena* arena); TimeTableRequest(::google::protobuf::Arena* arena, const TimeTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TimeTableRequest(::google::protobuf::Arena* arena, TimeTableRequest&& from) noexcept + : TimeTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kBlinkTableFieldNumber = 4, @@ -9642,18 +10123,19 @@ class TimeTableRequest final : void set_has_start_time_string(); void set_has_period_nanos(); void set_has_period_string(); - inline bool has_start_time() const; inline void clear_has_start_time(); - inline bool has_period() const; inline void clear_has_period(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 6, 1, 89, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TimeTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9661,52 +10143,49 @@ class TimeTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TimeTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; bool blink_table_; union StartTimeUnion { constexpr StartTimeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::int64_t start_time_nanos_; ::google::protobuf::internal::ArenaStringPtr start_time_string_; } start_time_; union PeriodUnion { constexpr PeriodUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::int64_t period_nanos_; ::google::protobuf::internal::ArenaStringPtr period_string_; } period_; ::uint32_t _oneof_case_[2]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TableReference final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TableReference) */ { +class TableReference final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TableReference) */ { public: inline TableReference() : TableReference(nullptr) {} - ~TableReference() override; - template - explicit PROTOBUF_CONSTEXPR TableReference(::google::protobuf::internal::ConstantInitialized); - - inline TableReference(const TableReference& from) - : TableReference(nullptr, from) {} - TableReference(TableReference&& from) noexcept - : TableReference() { - *this = ::std::move(from); - } - + ~TableReference() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TableReference( + ::google::protobuf::internal::ConstantInitialized); + + inline TableReference(const TableReference& from) : TableReference(nullptr, from) {} + inline TableReference(TableReference&& from) noexcept + : TableReference(nullptr, std::move(from)) {} inline TableReference& operator=(const TableReference& from) { CopyFrom(from); return *this; @@ -9714,9 +10193,9 @@ class TableReference final : inline TableReference& operator=(TableReference&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9751,25 +10230,19 @@ class TableReference final : kBatchOffset = 2, REF_NOT_SET = 0, }; - static inline const TableReference* internal_default_instance() { return reinterpret_cast( - &_TableReference_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(TableReference& a, TableReference& b) { - a.Swap(&b); + &_TableReference_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(TableReference& a, TableReference& b) { a.Swap(&b); } inline void Swap(TableReference* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9783,52 +10256,69 @@ class TableReference final : // implements Message ---------------------------------------------- - TableReference* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TableReference* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TableReference& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TableReference& from) { - TableReference::MergeImpl(*this, from); - } + void MergeFrom(const TableReference& from) { TableReference::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TableReference* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TableReference"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TableReference"; } + + protected: explicit TableReference(::google::protobuf::Arena* arena); TableReference(::google::protobuf::Arena* arena, const TableReference& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TableReference(::google::protobuf::Arena* arena, TableReference&& from) noexcept + : TableReference(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTicketFieldNumber = 1, kBatchOffsetFieldNumber = 2, @@ -9870,15 +10360,17 @@ class TableReference final : class _Internal; void set_has_ticket(); void set_has_batch_offset(); - inline bool has_ref() const; inline void clear_has_ref(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TableReference_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -9886,43 +10378,40 @@ class TableReference final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TableReference& from_msg); union RefUnion { constexpr RefUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::Ticket* ticket_; ::int32_t batch_offset_; } ref_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SeekRowRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SeekRowRequest) */ { +class SeekRowRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SeekRowRequest) */ { public: inline SeekRowRequest() : SeekRowRequest(nullptr) {} - ~SeekRowRequest() override; - template - explicit PROTOBUF_CONSTEXPR SeekRowRequest(::google::protobuf::internal::ConstantInitialized); - - inline SeekRowRequest(const SeekRowRequest& from) - : SeekRowRequest(nullptr, from) {} - SeekRowRequest(SeekRowRequest&& from) noexcept - : SeekRowRequest() { - *this = ::std::move(from); - } - + ~SeekRowRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SeekRowRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SeekRowRequest(const SeekRowRequest& from) : SeekRowRequest(nullptr, from) {} + inline SeekRowRequest(SeekRowRequest&& from) noexcept + : SeekRowRequest(nullptr, std::move(from)) {} inline SeekRowRequest& operator=(const SeekRowRequest& from) { CopyFrom(from); return *this; @@ -9930,9 +10419,9 @@ class SeekRowRequest final : inline SeekRowRequest& operator=(SeekRowRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -9964,22 +10453,17 @@ class SeekRowRequest final : } static inline const SeekRowRequest* internal_default_instance() { return reinterpret_cast( - &_SeekRowRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 95; - - friend void swap(SeekRowRequest& a, SeekRowRequest& b) { - a.Swap(&b); + &_SeekRowRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 95; + friend void swap(SeekRowRequest& a, SeekRowRequest& b) { a.Swap(&b); } inline void Swap(SeekRowRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -9993,52 +10477,69 @@ class SeekRowRequest final : // implements Message ---------------------------------------------- - SeekRowRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SeekRowRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SeekRowRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SeekRowRequest& from) { - SeekRowRequest::MergeImpl(*this, from); - } + void MergeFrom(const SeekRowRequest& from) { SeekRowRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SeekRowRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SeekRowRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SeekRowRequest"; } + + protected: explicit SeekRowRequest(::google::protobuf::Arena* arena); SeekRowRequest(::google::protobuf::Arena* arena, const SeekRowRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SeekRowRequest(::google::protobuf::Arena* arena, SeekRowRequest&& from) noexcept + : SeekRowRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 3, kSourceIdFieldNumber = 1, @@ -10137,12 +10638,15 @@ class SeekRowRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SeekRowRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 7, 2, 68, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SeekRowRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10150,13 +10654,13 @@ class SeekRowRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SeekRowRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr column_name_; @@ -10170,23 +10674,21 @@ class SeekRowRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SearchCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SearchCondition) */ { +class SearchCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SearchCondition) */ { public: inline SearchCondition() : SearchCondition(nullptr) {} - ~SearchCondition() override; - template - explicit PROTOBUF_CONSTEXPR SearchCondition(::google::protobuf::internal::ConstantInitialized); - - inline SearchCondition(const SearchCondition& from) - : SearchCondition(nullptr, from) {} - SearchCondition(SearchCondition&& from) noexcept - : SearchCondition() { - *this = ::std::move(from); - } - + ~SearchCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SearchCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline SearchCondition(const SearchCondition& from) : SearchCondition(nullptr, from) {} + inline SearchCondition(SearchCondition&& from) noexcept + : SearchCondition(nullptr, std::move(from)) {} inline SearchCondition& operator=(const SearchCondition& from) { CopyFrom(from); return *this; @@ -10194,9 +10696,9 @@ class SearchCondition final : inline SearchCondition& operator=(SearchCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10228,22 +10730,17 @@ class SearchCondition final : } static inline const SearchCondition* internal_default_instance() { return reinterpret_cast( - &_SearchCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 110; - - friend void swap(SearchCondition& a, SearchCondition& b) { - a.Swap(&b); + &_SearchCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 110; + friend void swap(SearchCondition& a, SearchCondition& b) { a.Swap(&b); } inline void Swap(SearchCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10257,52 +10754,69 @@ class SearchCondition final : // implements Message ---------------------------------------------- - SearchCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SearchCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SearchCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SearchCondition& from) { - SearchCondition::MergeImpl(*this, from); - } + void MergeFrom(const SearchCondition& from) { SearchCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SearchCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SearchCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SearchCondition"; } + + protected: explicit SearchCondition(::google::protobuf::Arena* arena); SearchCondition(::google::protobuf::Arena* arena, const SearchCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SearchCondition(::google::protobuf::Arena* arena, SearchCondition&& from) noexcept + : SearchCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionalReferencesFieldNumber = 2, kSearchStringFieldNumber = 1, @@ -10315,16 +10829,15 @@ class SearchCondition final : public: void clear_optional_references() ; ::io::deephaven::proto::backplane::grpc::Reference* mutable_optional_references(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Reference >* - mutable_optional_references(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>* mutable_optional_references(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>& _internal_optional_references() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>* _internal_mutable_optional_references(); public: const ::io::deephaven::proto::backplane::grpc::Reference& optional_references(int index) const; ::io::deephaven::proto::backplane::grpc::Reference* add_optional_references(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Reference >& - optional_references() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>& optional_references() const; // string search_string = 1; void clear_search_string() ; const std::string& search_string() const; @@ -10344,12 +10857,15 @@ class SearchCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SearchCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 71, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SearchCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10357,13 +10873,13 @@ class SearchCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SearchCondition& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Reference > optional_references_; ::google::protobuf::internal::ArenaStringPtr search_string_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -10371,23 +10887,21 @@ class SearchCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MatchesCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MatchesCondition) */ { +class MatchesCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MatchesCondition) */ { public: inline MatchesCondition() : MatchesCondition(nullptr) {} - ~MatchesCondition() override; - template - explicit PROTOBUF_CONSTEXPR MatchesCondition(::google::protobuf::internal::ConstantInitialized); - - inline MatchesCondition(const MatchesCondition& from) - : MatchesCondition(nullptr, from) {} - MatchesCondition(MatchesCondition&& from) noexcept - : MatchesCondition() { - *this = ::std::move(from); - } - + ~MatchesCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MatchesCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline MatchesCondition(const MatchesCondition& from) : MatchesCondition(nullptr, from) {} + inline MatchesCondition(MatchesCondition&& from) noexcept + : MatchesCondition(nullptr, std::move(from)) {} inline MatchesCondition& operator=(const MatchesCondition& from) { CopyFrom(from); return *this; @@ -10395,9 +10909,9 @@ class MatchesCondition final : inline MatchesCondition& operator=(MatchesCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10429,22 +10943,17 @@ class MatchesCondition final : } static inline const MatchesCondition* internal_default_instance() { return reinterpret_cast( - &_MatchesCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 108; - - friend void swap(MatchesCondition& a, MatchesCondition& b) { - a.Swap(&b); + &_MatchesCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 108; + friend void swap(MatchesCondition& a, MatchesCondition& b) { a.Swap(&b); } inline void Swap(MatchesCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10458,52 +10967,69 @@ class MatchesCondition final : // implements Message ---------------------------------------------- - MatchesCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MatchesCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MatchesCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MatchesCondition& from) { - MatchesCondition::MergeImpl(*this, from); - } + void MergeFrom(const MatchesCondition& from) { MatchesCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MatchesCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MatchesCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MatchesCondition"; } + + protected: explicit MatchesCondition(::google::protobuf::Arena* arena); MatchesCondition(::google::protobuf::Arena* arena, const MatchesCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MatchesCondition(::google::protobuf::Arena* arena, MatchesCondition&& from) noexcept + : MatchesCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kRegexFieldNumber = 2, kReferenceFieldNumber = 1, @@ -10564,12 +11090,15 @@ class MatchesCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MatchesCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 1, 64, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MatchesCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10577,13 +11106,13 @@ class MatchesCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MatchesCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr regex_; @@ -10594,23 +11123,21 @@ class MatchesCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class IsNullCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.IsNullCondition) */ { +class IsNullCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.IsNullCondition) */ { public: inline IsNullCondition() : IsNullCondition(nullptr) {} - ~IsNullCondition() override; - template - explicit PROTOBUF_CONSTEXPR IsNullCondition(::google::protobuf::internal::ConstantInitialized); - - inline IsNullCondition(const IsNullCondition& from) - : IsNullCondition(nullptr, from) {} - IsNullCondition(IsNullCondition&& from) noexcept - : IsNullCondition() { - *this = ::std::move(from); - } - + ~IsNullCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR IsNullCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline IsNullCondition(const IsNullCondition& from) : IsNullCondition(nullptr, from) {} + inline IsNullCondition(IsNullCondition&& from) noexcept + : IsNullCondition(nullptr, std::move(from)) {} inline IsNullCondition& operator=(const IsNullCondition& from) { CopyFrom(from); return *this; @@ -10618,9 +11145,9 @@ class IsNullCondition final : inline IsNullCondition& operator=(IsNullCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10652,22 +11179,17 @@ class IsNullCondition final : } static inline const IsNullCondition* internal_default_instance() { return reinterpret_cast( - &_IsNullCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 107; - - friend void swap(IsNullCondition& a, IsNullCondition& b) { - a.Swap(&b); + &_IsNullCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 107; + friend void swap(IsNullCondition& a, IsNullCondition& b) { a.Swap(&b); } inline void Swap(IsNullCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10681,52 +11203,69 @@ class IsNullCondition final : // implements Message ---------------------------------------------- - IsNullCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + IsNullCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const IsNullCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const IsNullCondition& from) { - IsNullCondition::MergeImpl(*this, from); - } + void MergeFrom(const IsNullCondition& from) { IsNullCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(IsNullCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.IsNullCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.IsNullCondition"; } + + protected: explicit IsNullCondition(::google::protobuf::Arena* arena); IsNullCondition(::google::protobuf::Arena* arena, const IsNullCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + IsNullCondition(::google::protobuf::Arena* arena, IsNullCondition&& from) noexcept + : IsNullCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReferenceFieldNumber = 1, }; @@ -10748,12 +11287,15 @@ class IsNullCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.IsNullCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_IsNullCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10761,13 +11303,13 @@ class IsNullCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const IsNullCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Reference* reference_; @@ -10775,23 +11317,21 @@ class IsNullCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportedTableUpdateMessage final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) */ { +class ExportedTableUpdateMessage final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) */ { public: inline ExportedTableUpdateMessage() : ExportedTableUpdateMessage(nullptr) {} - ~ExportedTableUpdateMessage() override; - template - explicit PROTOBUF_CONSTEXPR ExportedTableUpdateMessage(::google::protobuf::internal::ConstantInitialized); - - inline ExportedTableUpdateMessage(const ExportedTableUpdateMessage& from) - : ExportedTableUpdateMessage(nullptr, from) {} - ExportedTableUpdateMessage(ExportedTableUpdateMessage&& from) noexcept - : ExportedTableUpdateMessage() { - *this = ::std::move(from); - } - + ~ExportedTableUpdateMessage() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExportedTableUpdateMessage( + ::google::protobuf::internal::ConstantInitialized); + + inline ExportedTableUpdateMessage(const ExportedTableUpdateMessage& from) : ExportedTableUpdateMessage(nullptr, from) {} + inline ExportedTableUpdateMessage(ExportedTableUpdateMessage&& from) noexcept + : ExportedTableUpdateMessage(nullptr, std::move(from)) {} inline ExportedTableUpdateMessage& operator=(const ExportedTableUpdateMessage& from) { CopyFrom(from); return *this; @@ -10799,9 +11339,9 @@ class ExportedTableUpdateMessage final : inline ExportedTableUpdateMessage& operator=(ExportedTableUpdateMessage&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -10833,22 +11373,17 @@ class ExportedTableUpdateMessage final : } static inline const ExportedTableUpdateMessage* internal_default_instance() { return reinterpret_cast( - &_ExportedTableUpdateMessage_default_instance_); - } - static constexpr int kIndexInFileMessages = - 5; - - friend void swap(ExportedTableUpdateMessage& a, ExportedTableUpdateMessage& b) { - a.Swap(&b); + &_ExportedTableUpdateMessage_default_instance_); } + static constexpr int kIndexInFileMessages = 5; + friend void swap(ExportedTableUpdateMessage& a, ExportedTableUpdateMessage& b) { a.Swap(&b); } inline void Swap(ExportedTableUpdateMessage* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -10862,52 +11397,69 @@ class ExportedTableUpdateMessage final : // implements Message ---------------------------------------------- - ExportedTableUpdateMessage* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportedTableUpdateMessage* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExportedTableUpdateMessage& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExportedTableUpdateMessage& from) { - ExportedTableUpdateMessage::MergeImpl(*this, from); - } + void MergeFrom(const ExportedTableUpdateMessage& from) { ExportedTableUpdateMessage::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExportedTableUpdateMessage* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage"; } + + protected: explicit ExportedTableUpdateMessage(::google::protobuf::Arena* arena); ExportedTableUpdateMessage(::google::protobuf::Arena* arena, const ExportedTableUpdateMessage& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExportedTableUpdateMessage(::google::protobuf::Arena* arena, ExportedTableUpdateMessage&& from) noexcept + : ExportedTableUpdateMessage(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kUpdateFailureMessageFieldNumber = 3, kExportIdFieldNumber = 1, @@ -10957,12 +11509,15 @@ class ExportedTableUpdateMessage final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 91, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportedTableUpdateMessage_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -10970,13 +11525,13 @@ class ExportedTableUpdateMessage final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportedTableUpdateMessage& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr update_failure_message_; @@ -10986,23 +11541,21 @@ class ExportedTableUpdateMessage final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class EmptyTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.EmptyTableRequest) */ { +class EmptyTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.EmptyTableRequest) */ { public: inline EmptyTableRequest() : EmptyTableRequest(nullptr) {} - ~EmptyTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR EmptyTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline EmptyTableRequest(const EmptyTableRequest& from) - : EmptyTableRequest(nullptr, from) {} - EmptyTableRequest(EmptyTableRequest&& from) noexcept - : EmptyTableRequest() { - *this = ::std::move(from); - } - + ~EmptyTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR EmptyTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline EmptyTableRequest(const EmptyTableRequest& from) : EmptyTableRequest(nullptr, from) {} + inline EmptyTableRequest(EmptyTableRequest&& from) noexcept + : EmptyTableRequest(nullptr, std::move(from)) {} inline EmptyTableRequest& operator=(const EmptyTableRequest& from) { CopyFrom(from); return *this; @@ -11010,9 +11563,9 @@ class EmptyTableRequest final : inline EmptyTableRequest& operator=(EmptyTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11044,22 +11597,17 @@ class EmptyTableRequest final : } static inline const EmptyTableRequest* internal_default_instance() { return reinterpret_cast( - &_EmptyTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - friend void swap(EmptyTableRequest& a, EmptyTableRequest& b) { - a.Swap(&b); + &_EmptyTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 6; + friend void swap(EmptyTableRequest& a, EmptyTableRequest& b) { a.Swap(&b); } inline void Swap(EmptyTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11073,52 +11621,69 @@ class EmptyTableRequest final : // implements Message ---------------------------------------------- - EmptyTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + EmptyTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const EmptyTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const EmptyTableRequest& from) { - EmptyTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const EmptyTableRequest& from) { EmptyTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(EmptyTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.EmptyTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.EmptyTableRequest"; } + + protected: explicit EmptyTableRequest(::google::protobuf::Arena* arena); EmptyTableRequest(::google::protobuf::Arena* arena, const EmptyTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + EmptyTableRequest(::google::protobuf::Arena* arena, EmptyTableRequest&& from) noexcept + : EmptyTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kSizeFieldNumber = 2, @@ -11151,12 +11716,15 @@ class EmptyTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.EmptyTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_EmptyTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11164,13 +11732,13 @@ class EmptyTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const EmptyTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -11179,23 +11747,21 @@ class EmptyTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateInputTableRequest_InputTableKind final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) */ { +class CreateInputTableRequest_InputTableKind final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) */ { public: inline CreateInputTableRequest_InputTableKind() : CreateInputTableRequest_InputTableKind(nullptr) {} - ~CreateInputTableRequest_InputTableKind() override; - template - explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind(::google::protobuf::internal::ConstantInitialized); - - inline CreateInputTableRequest_InputTableKind(const CreateInputTableRequest_InputTableKind& from) - : CreateInputTableRequest_InputTableKind(nullptr, from) {} - CreateInputTableRequest_InputTableKind(CreateInputTableRequest_InputTableKind&& from) noexcept - : CreateInputTableRequest_InputTableKind() { - *this = ::std::move(from); - } - + ~CreateInputTableRequest_InputTableKind() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind( + ::google::protobuf::internal::ConstantInitialized); + + inline CreateInputTableRequest_InputTableKind(const CreateInputTableRequest_InputTableKind& from) : CreateInputTableRequest_InputTableKind(nullptr, from) {} + inline CreateInputTableRequest_InputTableKind(CreateInputTableRequest_InputTableKind&& from) noexcept + : CreateInputTableRequest_InputTableKind(nullptr, std::move(from)) {} inline CreateInputTableRequest_InputTableKind& operator=(const CreateInputTableRequest_InputTableKind& from) { CopyFrom(from); return *this; @@ -11203,9 +11769,9 @@ class CreateInputTableRequest_InputTableKind final : inline CreateInputTableRequest_InputTableKind& operator=(CreateInputTableRequest_InputTableKind&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11241,25 +11807,19 @@ class CreateInputTableRequest_InputTableKind final : kBlink = 3, KIND_NOT_SET = 0, }; - static inline const CreateInputTableRequest_InputTableKind* internal_default_instance() { return reinterpret_cast( - &_CreateInputTableRequest_InputTableKind_default_instance_); - } - static constexpr int kIndexInFileMessages = - 118; - - friend void swap(CreateInputTableRequest_InputTableKind& a, CreateInputTableRequest_InputTableKind& b) { - a.Swap(&b); + &_CreateInputTableRequest_InputTableKind_default_instance_); } + static constexpr int kIndexInFileMessages = 118; + friend void swap(CreateInputTableRequest_InputTableKind& a, CreateInputTableRequest_InputTableKind& b) { a.Swap(&b); } inline void Swap(CreateInputTableRequest_InputTableKind* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11273,56 +11833,72 @@ class CreateInputTableRequest_InputTableKind final : // implements Message ---------------------------------------------- - CreateInputTableRequest_InputTableKind* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateInputTableRequest_InputTableKind* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CreateInputTableRequest_InputTableKind& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CreateInputTableRequest_InputTableKind& from) { - CreateInputTableRequest_InputTableKind::MergeImpl(*this, from); - } + void MergeFrom(const CreateInputTableRequest_InputTableKind& from) { CreateInputTableRequest_InputTableKind::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CreateInputTableRequest_InputTableKind* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind"; } + + protected: explicit CreateInputTableRequest_InputTableKind(::google::protobuf::Arena* arena); CreateInputTableRequest_InputTableKind(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CreateInputTableRequest_InputTableKind(::google::protobuf::Arena* arena, CreateInputTableRequest_InputTableKind&& from) noexcept + : CreateInputTableRequest_InputTableKind(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using InMemoryAppendOnly = CreateInputTableRequest_InputTableKind_InMemoryAppendOnly; using InMemoryKeyBacked = CreateInputTableRequest_InputTableKind_InMemoryKeyBacked; using Blink = CreateInputTableRequest_InputTableKind_Blink; // accessors ------------------------------------------------------- - enum : int { kInMemoryAppendOnlyFieldNumber = 1, kInMemoryKeyBackedFieldNumber = 2, @@ -11393,15 +11969,17 @@ class CreateInputTableRequest_InputTableKind final : void set_has_in_memory_append_only(); void set_has_in_memory_key_backed(); void set_has_blink(); - inline bool has_kind() const; inline void clear_has_kind(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateInputTableRequest_InputTableKind_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11409,44 +11987,41 @@ class CreateInputTableRequest_InputTableKind final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateInputTableRequest_InputTableKind& from_msg); union KindUnion { constexpr KindUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* in_memory_append_only_; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* in_memory_key_backed_; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* blink_; } kind_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ContainsCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ContainsCondition) */ { +class ContainsCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ContainsCondition) */ { public: inline ContainsCondition() : ContainsCondition(nullptr) {} - ~ContainsCondition() override; - template - explicit PROTOBUF_CONSTEXPR ContainsCondition(::google::protobuf::internal::ConstantInitialized); - - inline ContainsCondition(const ContainsCondition& from) - : ContainsCondition(nullptr, from) {} - ContainsCondition(ContainsCondition&& from) noexcept - : ContainsCondition() { - *this = ::std::move(from); - } - + ~ContainsCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ContainsCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline ContainsCondition(const ContainsCondition& from) : ContainsCondition(nullptr, from) {} + inline ContainsCondition(ContainsCondition&& from) noexcept + : ContainsCondition(nullptr, std::move(from)) {} inline ContainsCondition& operator=(const ContainsCondition& from) { CopyFrom(from); return *this; @@ -11454,9 +12029,9 @@ class ContainsCondition final : inline ContainsCondition& operator=(ContainsCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11488,22 +12063,17 @@ class ContainsCondition final : } static inline const ContainsCondition* internal_default_instance() { return reinterpret_cast( - &_ContainsCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 109; - - friend void swap(ContainsCondition& a, ContainsCondition& b) { - a.Swap(&b); + &_ContainsCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 109; + friend void swap(ContainsCondition& a, ContainsCondition& b) { a.Swap(&b); } inline void Swap(ContainsCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11517,52 +12087,69 @@ class ContainsCondition final : // implements Message ---------------------------------------------- - ContainsCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ContainsCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ContainsCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ContainsCondition& from) { - ContainsCondition::MergeImpl(*this, from); - } + void MergeFrom(const ContainsCondition& from) { ContainsCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ContainsCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ContainsCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ContainsCondition"; } + + protected: explicit ContainsCondition(::google::protobuf::Arena* arena); ContainsCondition(::google::protobuf::Arena* arena, const ContainsCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ContainsCondition(::google::protobuf::Arena* arena, ContainsCondition&& from) noexcept + : ContainsCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSearchStringFieldNumber = 2, kReferenceFieldNumber = 1, @@ -11623,12 +12210,15 @@ class ContainsCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ContainsCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 1, 73, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ContainsCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11636,13 +12226,13 @@ class ContainsCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ContainsCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr search_string_; @@ -11653,23 +12243,21 @@ class ContainsCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecUnique final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) */ { +class AggSpec_AggSpecUnique final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) */ { public: inline AggSpec_AggSpecUnique() : AggSpec_AggSpecUnique(nullptr) {} - ~AggSpec_AggSpecUnique() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecUnique(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecUnique(const AggSpec_AggSpecUnique& from) - : AggSpec_AggSpecUnique(nullptr, from) {} - AggSpec_AggSpecUnique(AggSpec_AggSpecUnique&& from) noexcept - : AggSpec_AggSpecUnique() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecUnique() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecUnique( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecUnique(const AggSpec_AggSpecUnique& from) : AggSpec_AggSpecUnique(nullptr, from) {} + inline AggSpec_AggSpecUnique(AggSpec_AggSpecUnique&& from) noexcept + : AggSpec_AggSpecUnique(nullptr, std::move(from)) {} inline AggSpec_AggSpecUnique& operator=(const AggSpec_AggSpecUnique& from) { CopyFrom(from); return *this; @@ -11677,9 +12265,9 @@ class AggSpec_AggSpecUnique final : inline AggSpec_AggSpecUnique& operator=(AggSpec_AggSpecUnique&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11711,22 +12299,17 @@ class AggSpec_AggSpecUnique final : } static inline const AggSpec_AggSpecUnique* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecUnique_default_instance_); - } - static constexpr int kIndexInFileMessages = - 71; - - friend void swap(AggSpec_AggSpecUnique& a, AggSpec_AggSpecUnique& b) { - a.Swap(&b); + &_AggSpec_AggSpecUnique_default_instance_); } + static constexpr int kIndexInFileMessages = 71; + friend void swap(AggSpec_AggSpecUnique& a, AggSpec_AggSpecUnique& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecUnique* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11740,52 +12323,69 @@ class AggSpec_AggSpecUnique final : // implements Message ---------------------------------------------- - AggSpec_AggSpecUnique* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecUnique* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecUnique& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecUnique& from) { - AggSpec_AggSpecUnique::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecUnique& from) { AggSpec_AggSpecUnique::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecUnique* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique"; } + + protected: explicit AggSpec_AggSpecUnique(::google::protobuf::Arena* arena); AggSpec_AggSpecUnique(::google::protobuf::Arena* arena, const AggSpec_AggSpecUnique& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecUnique(::google::protobuf::Arena* arena, AggSpec_AggSpecUnique&& from) noexcept + : AggSpec_AggSpecUnique(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kNonUniqueSentinelFieldNumber = 2, kIncludeNullsFieldNumber = 1, @@ -11818,12 +12418,15 @@ class AggSpec_AggSpecUnique final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecUnique_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -11831,13 +12434,13 @@ class AggSpec_AggSpecUnique final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecUnique& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* non_unique_sentinel_; @@ -11846,23 +12449,21 @@ class AggSpec_AggSpecUnique final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec_AggSpecSorted final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) */ { +class AggSpec_AggSpecSorted final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) */ { public: inline AggSpec_AggSpecSorted() : AggSpec_AggSpecSorted(nullptr) {} - ~AggSpec_AggSpecSorted() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSorted(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec_AggSpecSorted(const AggSpec_AggSpecSorted& from) - : AggSpec_AggSpecSorted(nullptr, from) {} - AggSpec_AggSpecSorted(AggSpec_AggSpecSorted&& from) noexcept - : AggSpec_AggSpecSorted() { - *this = ::std::move(from); - } - + ~AggSpec_AggSpecSorted() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec_AggSpecSorted( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec_AggSpecSorted(const AggSpec_AggSpecSorted& from) : AggSpec_AggSpecSorted(nullptr, from) {} + inline AggSpec_AggSpecSorted(AggSpec_AggSpecSorted&& from) noexcept + : AggSpec_AggSpecSorted(nullptr, std::move(from)) {} inline AggSpec_AggSpecSorted& operator=(const AggSpec_AggSpecSorted& from) { CopyFrom(from); return *this; @@ -11870,9 +12471,9 @@ class AggSpec_AggSpecSorted final : inline AggSpec_AggSpecSorted& operator=(AggSpec_AggSpecSorted&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -11904,22 +12505,17 @@ class AggSpec_AggSpecSorted final : } static inline const AggSpec_AggSpecSorted* internal_default_instance() { return reinterpret_cast( - &_AggSpec_AggSpecSorted_default_instance_); - } - static constexpr int kIndexInFileMessages = - 68; - - friend void swap(AggSpec_AggSpecSorted& a, AggSpec_AggSpecSorted& b) { - a.Swap(&b); + &_AggSpec_AggSpecSorted_default_instance_); } + static constexpr int kIndexInFileMessages = 68; + friend void swap(AggSpec_AggSpecSorted& a, AggSpec_AggSpecSorted& b) { a.Swap(&b); } inline void Swap(AggSpec_AggSpecSorted* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -11933,52 +12529,69 @@ class AggSpec_AggSpecSorted final : // implements Message ---------------------------------------------- - AggSpec_AggSpecSorted* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec_AggSpecSorted* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec_AggSpecSorted& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec_AggSpecSorted& from) { - AggSpec_AggSpecSorted::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec_AggSpecSorted& from) { AggSpec_AggSpecSorted::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec_AggSpecSorted* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted"; } + + protected: explicit AggSpec_AggSpecSorted(::google::protobuf::Arena* arena); AggSpec_AggSpecSorted(::google::protobuf::Arena* arena, const AggSpec_AggSpecSorted& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec_AggSpecSorted(::google::protobuf::Arena* arena, AggSpec_AggSpecSorted&& from) noexcept + : AggSpec_AggSpecSorted(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsFieldNumber = 1, }; @@ -11990,25 +12603,27 @@ class AggSpec_AggSpecSorted final : public: void clear_columns() ; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* mutable_columns(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn >* - mutable_columns(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>* mutable_columns(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>& _internal_columns() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>* _internal_mutable_columns(); public: const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn& columns(int index) const; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* add_columns(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn >& - columns() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>& columns() const; // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_AggSpecSorted_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12016,36 +12631,34 @@ class AggSpec_AggSpecSorted final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec_AggSpecSorted& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn > columns_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class WhereInRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.WhereInRequest) */ { +class WhereInRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.WhereInRequest) */ { public: inline WhereInRequest() : WhereInRequest(nullptr) {} - ~WhereInRequest() override; - template - explicit PROTOBUF_CONSTEXPR WhereInRequest(::google::protobuf::internal::ConstantInitialized); - - inline WhereInRequest(const WhereInRequest& from) - : WhereInRequest(nullptr, from) {} - WhereInRequest(WhereInRequest&& from) noexcept - : WhereInRequest() { - *this = ::std::move(from); - } - + ~WhereInRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR WhereInRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline WhereInRequest(const WhereInRequest& from) : WhereInRequest(nullptr, from) {} + inline WhereInRequest(WhereInRequest&& from) noexcept + : WhereInRequest(nullptr, std::move(from)) {} inline WhereInRequest& operator=(const WhereInRequest& from) { CopyFrom(from); return *this; @@ -12053,9 +12666,9 @@ class WhereInRequest final : inline WhereInRequest& operator=(WhereInRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12087,22 +12700,17 @@ class WhereInRequest final : } static inline const WhereInRequest* internal_default_instance() { return reinterpret_cast( - &_WhereInRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 120; - - friend void swap(WhereInRequest& a, WhereInRequest& b) { - a.Swap(&b); + &_WhereInRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 120; + friend void swap(WhereInRequest& a, WhereInRequest& b) { a.Swap(&b); } inline void Swap(WhereInRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12116,52 +12724,69 @@ class WhereInRequest final : // implements Message ---------------------------------------------- - WhereInRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + WhereInRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const WhereInRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const WhereInRequest& from) { - WhereInRequest::MergeImpl(*this, from); - } + void MergeFrom(const WhereInRequest& from) { WhereInRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(WhereInRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.WhereInRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.WhereInRequest"; } + + protected: explicit WhereInRequest(::google::protobuf::Arena* arena); WhereInRequest(::google::protobuf::Arena* arena, const WhereInRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + WhereInRequest(::google::protobuf::Arena* arena, WhereInRequest&& from) noexcept + : WhereInRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 5, kResultIdFieldNumber = 1, @@ -12178,17 +12803,11 @@ class WhereInRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -12255,12 +12874,15 @@ class WhereInRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.WhereInRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 73, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_WhereInRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12268,13 +12890,13 @@ class WhereInRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const WhereInRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -12286,23 +12908,21 @@ class WhereInRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) { CopyFrom(from); return *this; @@ -12310,9 +12930,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12344,22 +12964,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_); - } - static constexpr int kIndexInFileMessages = - 35; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_); } + static constexpr int kIndexInFileMessages = 35; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12373,52 +12988,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kWeightColumnFieldNumber = 3, kReverseWindowScaleFieldNumber = 1, @@ -12473,12 +13105,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 137, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12486,13 +13121,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr weight_column_; @@ -12502,23 +13137,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) { CopyFrom(from); return *this; @@ -12526,9 +13159,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12560,22 +13193,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_); - } - static constexpr int kIndexInFileMessages = - 27; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_); } + static constexpr int kIndexInFileMessages = 27; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12589,52 +13217,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -12672,12 +13317,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12685,13 +13333,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -12700,23 +13348,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) { CopyFrom(from); return *this; @@ -12724,9 +13370,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12758,22 +13404,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_); - } - static constexpr int kIndexInFileMessages = - 34; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_); } + static constexpr int kIndexInFileMessages = 34; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12787,52 +13428,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -12870,12 +13528,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -12883,13 +13544,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -12898,23 +13559,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) { CopyFrom(from); return *this; @@ -12922,9 +13581,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -12956,22 +13615,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_); - } - static constexpr int kIndexInFileMessages = - 32; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_); } + static constexpr int kIndexInFileMessages = 32; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -12985,52 +13639,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -13068,12 +13739,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13081,13 +13755,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -13096,23 +13770,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) { CopyFrom(from); return *this; @@ -13120,9 +13792,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13154,22 +13826,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_); - } - static constexpr int kIndexInFileMessages = - 30; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_); } + static constexpr int kIndexInFileMessages = 30; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13183,52 +13850,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -13266,12 +13950,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13279,13 +13966,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -13294,23 +13981,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) { CopyFrom(from); return *this; @@ -13318,9 +14003,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13352,22 +14037,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_); - } - static constexpr int kIndexInFileMessages = - 31; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_); } + static constexpr int kIndexInFileMessages = 31; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13381,52 +14061,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -13464,12 +14161,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13477,13 +14177,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -13492,23 +14192,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) { CopyFrom(from); return *this; @@ -13516,9 +14214,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13550,22 +14248,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_); - } - static constexpr int kIndexInFileMessages = - 28; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_); } + static constexpr int kIndexInFileMessages = 28; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13579,52 +14272,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -13662,12 +14372,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13675,13 +14388,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -13690,23 +14403,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) { CopyFrom(from); return *this; @@ -13714,9 +14425,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13748,22 +14459,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_); - } - static constexpr int kIndexInFileMessages = - 36; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_); } + static constexpr int kIndexInFileMessages = 36; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -13777,52 +14483,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFormulaFieldNumber = 3, kParamTokenFieldNumber = 4, @@ -13894,12 +14617,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 145, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -13907,13 +14633,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr formula_; @@ -13924,23 +14650,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) { CopyFrom(from); return *this; @@ -13948,9 +14672,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -13982,22 +14706,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_); - } - static constexpr int kIndexInFileMessages = - 33; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_); } + static constexpr int kIndexInFileMessages = 33; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14011,52 +14730,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -14094,12 +14830,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14107,13 +14846,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -14122,23 +14861,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) { CopyFrom(from); return *this; @@ -14146,9 +14883,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14180,22 +14917,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_); - } - static constexpr int kIndexInFileMessages = - 29; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_); } + static constexpr int kIndexInFileMessages = 29; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14209,52 +14941,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kReverseWindowScaleFieldNumber = 1, kForwardWindowScaleFieldNumber = 2, @@ -14292,12 +15041,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14305,13 +15057,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; @@ -14320,23 +15072,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRoll }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) { CopyFrom(from); return *this; @@ -14344,9 +15094,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14378,22 +15128,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_); - } - static constexpr int kIndexInFileMessages = - 22; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_); } + static constexpr int kIndexInFileMessages = 22; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14407,52 +15152,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, kWindowScaleFieldNumber = 2, @@ -14490,12 +15252,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14503,13 +15268,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* options_; @@ -14518,23 +15283,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) { CopyFrom(from); return *this; @@ -14542,9 +15305,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14576,22 +15339,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_); - } - static constexpr int kIndexInFileMessages = - 21; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_); } + static constexpr int kIndexInFileMessages = 21; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14605,52 +15363,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, kWindowScaleFieldNumber = 2, @@ -14688,12 +15463,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14701,13 +15479,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* options_; @@ -14716,23 +15494,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) { CopyFrom(from); return *this; @@ -14740,9 +15516,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14774,22 +15550,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_); - } - static constexpr int kIndexInFileMessages = - 25; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_); } + static constexpr int kIndexInFileMessages = 25; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -14803,52 +15574,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, kWindowScaleFieldNumber = 2, @@ -14886,12 +15674,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -14899,13 +15690,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* options_; @@ -14914,23 +15705,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmSt }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) { CopyFrom(from); return *this; @@ -14938,9 +15727,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -14972,22 +15761,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_); - } - static constexpr int kIndexInFileMessages = - 23; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_); } + static constexpr int kIndexInFileMessages = 23; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -15001,52 +15785,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, kWindowScaleFieldNumber = 2, @@ -15084,12 +15885,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -15097,13 +15901,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* options_; @@ -15112,23 +15916,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMi }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) { CopyFrom(from); return *this; @@ -15136,9 +15938,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -15170,22 +15972,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_); - } - static constexpr int kIndexInFileMessages = - 24; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_); } + static constexpr int kIndexInFileMessages = 24; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -15199,52 +15996,69 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kOptionsFieldNumber = 1, kWindowScaleFieldNumber = 2, @@ -15282,12 +16096,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -15295,13 +16112,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* options_; @@ -15310,23 +16127,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMa }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UnstructuredFilterTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) */ { +class UnstructuredFilterTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) */ { public: inline UnstructuredFilterTableRequest() : UnstructuredFilterTableRequest(nullptr) {} - ~UnstructuredFilterTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR UnstructuredFilterTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline UnstructuredFilterTableRequest(const UnstructuredFilterTableRequest& from) - : UnstructuredFilterTableRequest(nullptr, from) {} - UnstructuredFilterTableRequest(UnstructuredFilterTableRequest&& from) noexcept - : UnstructuredFilterTableRequest() { - *this = ::std::move(from); - } - + ~UnstructuredFilterTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UnstructuredFilterTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline UnstructuredFilterTableRequest(const UnstructuredFilterTableRequest& from) : UnstructuredFilterTableRequest(nullptr, from) {} + inline UnstructuredFilterTableRequest(UnstructuredFilterTableRequest&& from) noexcept + : UnstructuredFilterTableRequest(nullptr, std::move(from)) {} inline UnstructuredFilterTableRequest& operator=(const UnstructuredFilterTableRequest& from) { CopyFrom(from); return *this; @@ -15334,9 +16149,9 @@ class UnstructuredFilterTableRequest final : inline UnstructuredFilterTableRequest& operator=(UnstructuredFilterTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -15368,22 +16183,17 @@ class UnstructuredFilterTableRequest final : } static inline const UnstructuredFilterTableRequest* internal_default_instance() { return reinterpret_cast( - &_UnstructuredFilterTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 43; - - friend void swap(UnstructuredFilterTableRequest& a, UnstructuredFilterTableRequest& b) { - a.Swap(&b); + &_UnstructuredFilterTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 43; + friend void swap(UnstructuredFilterTableRequest& a, UnstructuredFilterTableRequest& b) { a.Swap(&b); } inline void Swap(UnstructuredFilterTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -15397,52 +16207,69 @@ class UnstructuredFilterTableRequest final : // implements Message ---------------------------------------------- - UnstructuredFilterTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UnstructuredFilterTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UnstructuredFilterTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UnstructuredFilterTableRequest& from) { - UnstructuredFilterTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const UnstructuredFilterTableRequest& from) { UnstructuredFilterTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UnstructuredFilterTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest"; } + + protected: explicit UnstructuredFilterTableRequest(::google::protobuf::Arena* arena); UnstructuredFilterTableRequest(::google::protobuf::Arena* arena, const UnstructuredFilterTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UnstructuredFilterTableRequest(::google::protobuf::Arena* arena, UnstructuredFilterTableRequest&& from) noexcept + : UnstructuredFilterTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFiltersFieldNumber = 3, kResultIdFieldNumber = 1, @@ -15457,17 +16284,11 @@ class UnstructuredFilterTableRequest final : void clear_filters() ; const std::string& filters(int index) const; std::string* mutable_filters(int index); - void set_filters(int index, const std::string& value); - void set_filters(int index, std::string&& value); - void set_filters(int index, const char* value); - void set_filters(int index, const char* value, std::size_t size); - void set_filters(int index, absl::string_view value); + template + void set_filters(int index, Arg_&& value, Args_... args); std::string* add_filters(); - void add_filters(const std::string& value); - void add_filters(std::string&& value); - void add_filters(const char* value); - void add_filters(const char* value, std::size_t size); - void add_filters(absl::string_view value); + template + void add_filters(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& filters() const; ::google::protobuf::RepeatedPtrField* mutable_filters(); @@ -15509,12 +16330,15 @@ class UnstructuredFilterTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 80, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UnstructuredFilterTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -15522,13 +16346,13 @@ class UnstructuredFilterTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UnstructuredFilterTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField filters_; @@ -15538,23 +16362,21 @@ class UnstructuredFilterTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UngroupRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UngroupRequest) */ { +class UngroupRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UngroupRequest) */ { public: inline UngroupRequest() : UngroupRequest(nullptr) {} - ~UngroupRequest() override; - template - explicit PROTOBUF_CONSTEXPR UngroupRequest(::google::protobuf::internal::ConstantInitialized); - - inline UngroupRequest(const UngroupRequest& from) - : UngroupRequest(nullptr, from) {} - UngroupRequest(UngroupRequest&& from) noexcept - : UngroupRequest() { - *this = ::std::move(from); - } - + ~UngroupRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UngroupRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline UngroupRequest(const UngroupRequest& from) : UngroupRequest(nullptr, from) {} + inline UngroupRequest(UngroupRequest&& from) noexcept + : UngroupRequest(nullptr, std::move(from)) {} inline UngroupRequest& operator=(const UngroupRequest& from) { CopyFrom(from); return *this; @@ -15562,9 +16384,9 @@ class UngroupRequest final : inline UngroupRequest& operator=(UngroupRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -15596,22 +16418,17 @@ class UngroupRequest final : } static inline const UngroupRequest* internal_default_instance() { return reinterpret_cast( - &_UngroupRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 46; - - friend void swap(UngroupRequest& a, UngroupRequest& b) { - a.Swap(&b); + &_UngroupRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 46; + friend void swap(UngroupRequest& a, UngroupRequest& b) { a.Swap(&b); } inline void Swap(UngroupRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -15625,52 +16442,69 @@ class UngroupRequest final : // implements Message ---------------------------------------------- - UngroupRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UngroupRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UngroupRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UngroupRequest& from) { - UngroupRequest::MergeImpl(*this, from); - } + void MergeFrom(const UngroupRequest& from) { UngroupRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UngroupRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UngroupRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UngroupRequest"; } + + protected: explicit UngroupRequest(::google::protobuf::Arena* arena); UngroupRequest(::google::protobuf::Arena* arena, const UngroupRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UngroupRequest(::google::protobuf::Arena* arena, UngroupRequest&& from) noexcept + : UngroupRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToUngroupFieldNumber = 4, kResultIdFieldNumber = 1, @@ -15686,17 +16520,11 @@ class UngroupRequest final : void clear_columns_to_ungroup() ; const std::string& columns_to_ungroup(int index) const; std::string* mutable_columns_to_ungroup(int index); - void set_columns_to_ungroup(int index, const std::string& value); - void set_columns_to_ungroup(int index, std::string&& value); - void set_columns_to_ungroup(int index, const char* value); - void set_columns_to_ungroup(int index, const char* value, std::size_t size); - void set_columns_to_ungroup(int index, absl::string_view value); + template + void set_columns_to_ungroup(int index, Arg_&& value, Args_... args); std::string* add_columns_to_ungroup(); - void add_columns_to_ungroup(const std::string& value); - void add_columns_to_ungroup(std::string&& value); - void add_columns_to_ungroup(const char* value); - void add_columns_to_ungroup(const char* value, std::size_t size); - void add_columns_to_ungroup(absl::string_view value); + template + void add_columns_to_ungroup(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_ungroup() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_ungroup(); @@ -15748,12 +16576,15 @@ class UngroupRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UngroupRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UngroupRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -15761,13 +16592,13 @@ class UngroupRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UngroupRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_ungroup_; @@ -15778,23 +16609,21 @@ class UngroupRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SortTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SortTableRequest) */ { +class SortTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SortTableRequest) */ { public: inline SortTableRequest() : SortTableRequest(nullptr) {} - ~SortTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR SortTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline SortTableRequest(const SortTableRequest& from) - : SortTableRequest(nullptr, from) {} - SortTableRequest(SortTableRequest&& from) noexcept - : SortTableRequest() { - *this = ::std::move(from); - } - + ~SortTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SortTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SortTableRequest(const SortTableRequest& from) : SortTableRequest(nullptr, from) {} + inline SortTableRequest(SortTableRequest&& from) noexcept + : SortTableRequest(nullptr, std::move(from)) {} inline SortTableRequest& operator=(const SortTableRequest& from) { CopyFrom(from); return *this; @@ -15802,9 +16631,9 @@ class SortTableRequest final : inline SortTableRequest& operator=(SortTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -15836,22 +16665,17 @@ class SortTableRequest final : } static inline const SortTableRequest* internal_default_instance() { return reinterpret_cast( - &_SortTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 93; - - friend void swap(SortTableRequest& a, SortTableRequest& b) { - a.Swap(&b); + &_SortTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 93; + friend void swap(SortTableRequest& a, SortTableRequest& b) { a.Swap(&b); } inline void Swap(SortTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -15865,52 +16689,69 @@ class SortTableRequest final : // implements Message ---------------------------------------------- - SortTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SortTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SortTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SortTableRequest& from) { - SortTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const SortTableRequest& from) { SortTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SortTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SortTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SortTableRequest"; } + + protected: explicit SortTableRequest(::google::protobuf::Arena* arena); SortTableRequest(::google::protobuf::Arena* arena, const SortTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SortTableRequest(::google::protobuf::Arena* arena, SortTableRequest&& from) noexcept + : SortTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSortsFieldNumber = 3, kResultIdFieldNumber = 1, @@ -15924,16 +16765,15 @@ class SortTableRequest final : public: void clear_sorts() ; ::io::deephaven::proto::backplane::grpc::SortDescriptor* mutable_sorts(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor >* - mutable_sorts(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* mutable_sorts(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& _internal_sorts() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* _internal_mutable_sorts(); public: const ::io::deephaven::proto::backplane::grpc::SortDescriptor& sorts(int index) const; ::io::deephaven::proto::backplane::grpc::SortDescriptor* add_sorts(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor >& - sorts() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& sorts() const; // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; bool has_result_id() const; void clear_result_id() ; @@ -15967,12 +16807,15 @@ class SortTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SortTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SortTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -15980,13 +16823,13 @@ class SortTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SortTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor > sorts_; @@ -15996,23 +16839,21 @@ class SortTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SnapshotWhenTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) */ { +class SnapshotWhenTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) */ { public: inline SnapshotWhenTableRequest() : SnapshotWhenTableRequest(nullptr) {} - ~SnapshotWhenTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR SnapshotWhenTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline SnapshotWhenTableRequest(const SnapshotWhenTableRequest& from) - : SnapshotWhenTableRequest(nullptr, from) {} - SnapshotWhenTableRequest(SnapshotWhenTableRequest&& from) noexcept - : SnapshotWhenTableRequest() { - *this = ::std::move(from); - } - + ~SnapshotWhenTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SnapshotWhenTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SnapshotWhenTableRequest(const SnapshotWhenTableRequest& from) : SnapshotWhenTableRequest(nullptr, from) {} + inline SnapshotWhenTableRequest(SnapshotWhenTableRequest&& from) noexcept + : SnapshotWhenTableRequest(nullptr, std::move(from)) {} inline SnapshotWhenTableRequest& operator=(const SnapshotWhenTableRequest& from) { CopyFrom(from); return *this; @@ -16020,9 +16861,9 @@ class SnapshotWhenTableRequest final : inline SnapshotWhenTableRequest& operator=(SnapshotWhenTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -16054,22 +16895,17 @@ class SnapshotWhenTableRequest final : } static inline const SnapshotWhenTableRequest* internal_default_instance() { return reinterpret_cast( - &_SnapshotWhenTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 49; - - friend void swap(SnapshotWhenTableRequest& a, SnapshotWhenTableRequest& b) { - a.Swap(&b); + &_SnapshotWhenTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 49; + friend void swap(SnapshotWhenTableRequest& a, SnapshotWhenTableRequest& b) { a.Swap(&b); } inline void Swap(SnapshotWhenTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -16083,52 +16919,69 @@ class SnapshotWhenTableRequest final : // implements Message ---------------------------------------------- - SnapshotWhenTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SnapshotWhenTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SnapshotWhenTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SnapshotWhenTableRequest& from) { - SnapshotWhenTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const SnapshotWhenTableRequest& from) { SnapshotWhenTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SnapshotWhenTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest"; } + + protected: explicit SnapshotWhenTableRequest(::google::protobuf::Arena* arena); SnapshotWhenTableRequest(::google::protobuf::Arena* arena, const SnapshotWhenTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SnapshotWhenTableRequest(::google::protobuf::Arena* arena, SnapshotWhenTableRequest&& from) noexcept + : SnapshotWhenTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kStampColumnsFieldNumber = 7, kResultIdFieldNumber = 1, @@ -16147,17 +17000,11 @@ class SnapshotWhenTableRequest final : void clear_stamp_columns() ; const std::string& stamp_columns(int index) const; std::string* mutable_stamp_columns(int index); - void set_stamp_columns(int index, const std::string& value); - void set_stamp_columns(int index, std::string&& value); - void set_stamp_columns(int index, const char* value); - void set_stamp_columns(int index, const char* value, std::size_t size); - void set_stamp_columns(int index, absl::string_view value); + template + void set_stamp_columns(int index, Arg_&& value, Args_... args); std::string* add_stamp_columns(); - void add_stamp_columns(const std::string& value); - void add_stamp_columns(std::string&& value); - void add_stamp_columns(const char* value); - void add_stamp_columns(const char* value, std::size_t size); - void add_stamp_columns(absl::string_view value); + template + void add_stamp_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& stamp_columns() const; ::google::protobuf::RepeatedPtrField* mutable_stamp_columns(); @@ -16244,12 +17091,15 @@ class SnapshotWhenTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 7, 3, 80, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SnapshotWhenTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -16257,13 +17107,13 @@ class SnapshotWhenTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SnapshotWhenTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField stamp_columns_; @@ -16277,23 +17127,21 @@ class SnapshotWhenTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SnapshotTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) */ { +class SnapshotTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) */ { public: inline SnapshotTableRequest() : SnapshotTableRequest(nullptr) {} - ~SnapshotTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR SnapshotTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline SnapshotTableRequest(const SnapshotTableRequest& from) - : SnapshotTableRequest(nullptr, from) {} - SnapshotTableRequest(SnapshotTableRequest&& from) noexcept - : SnapshotTableRequest() { - *this = ::std::move(from); - } - + ~SnapshotTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SnapshotTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SnapshotTableRequest(const SnapshotTableRequest& from) : SnapshotTableRequest(nullptr, from) {} + inline SnapshotTableRequest(SnapshotTableRequest&& from) noexcept + : SnapshotTableRequest(nullptr, std::move(from)) {} inline SnapshotTableRequest& operator=(const SnapshotTableRequest& from) { CopyFrom(from); return *this; @@ -16301,9 +17149,9 @@ class SnapshotTableRequest final : inline SnapshotTableRequest& operator=(SnapshotTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -16335,22 +17183,17 @@ class SnapshotTableRequest final : } static inline const SnapshotTableRequest* internal_default_instance() { return reinterpret_cast( - &_SnapshotTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 48; - - friend void swap(SnapshotTableRequest& a, SnapshotTableRequest& b) { - a.Swap(&b); + &_SnapshotTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 48; + friend void swap(SnapshotTableRequest& a, SnapshotTableRequest& b) { a.Swap(&b); } inline void Swap(SnapshotTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -16364,52 +17207,69 @@ class SnapshotTableRequest final : // implements Message ---------------------------------------------- - SnapshotTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SnapshotTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SnapshotTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SnapshotTableRequest& from) { - SnapshotTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const SnapshotTableRequest& from) { SnapshotTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SnapshotTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SnapshotTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SnapshotTableRequest"; } + + protected: explicit SnapshotTableRequest(::google::protobuf::Arena* arena); SnapshotTableRequest(::google::protobuf::Arena* arena, const SnapshotTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SnapshotTableRequest(::google::protobuf::Arena* arena, SnapshotTableRequest&& from) noexcept + : SnapshotTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kSourceIdFieldNumber = 2, @@ -16447,12 +17307,15 @@ class SnapshotTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SnapshotTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -16460,13 +17323,13 @@ class SnapshotTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SnapshotTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -16475,23 +17338,21 @@ class SnapshotTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SelectOrUpdateRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) */ { +class SelectOrUpdateRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) */ { public: inline SelectOrUpdateRequest() : SelectOrUpdateRequest(nullptr) {} - ~SelectOrUpdateRequest() override; - template - explicit PROTOBUF_CONSTEXPR SelectOrUpdateRequest(::google::protobuf::internal::ConstantInitialized); - - inline SelectOrUpdateRequest(const SelectOrUpdateRequest& from) - : SelectOrUpdateRequest(nullptr, from) {} - SelectOrUpdateRequest(SelectOrUpdateRequest&& from) noexcept - : SelectOrUpdateRequest() { - *this = ::std::move(from); - } - + ~SelectOrUpdateRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SelectOrUpdateRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SelectOrUpdateRequest(const SelectOrUpdateRequest& from) : SelectOrUpdateRequest(nullptr, from) {} + inline SelectOrUpdateRequest(SelectOrUpdateRequest&& from) noexcept + : SelectOrUpdateRequest(nullptr, std::move(from)) {} inline SelectOrUpdateRequest& operator=(const SelectOrUpdateRequest& from) { CopyFrom(from); return *this; @@ -16499,9 +17360,9 @@ class SelectOrUpdateRequest final : inline SelectOrUpdateRequest& operator=(SelectOrUpdateRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -16533,22 +17394,17 @@ class SelectOrUpdateRequest final : } static inline const SelectOrUpdateRequest* internal_default_instance() { return reinterpret_cast( - &_SelectOrUpdateRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 8; - - friend void swap(SelectOrUpdateRequest& a, SelectOrUpdateRequest& b) { - a.Swap(&b); + &_SelectOrUpdateRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 8; + friend void swap(SelectOrUpdateRequest& a, SelectOrUpdateRequest& b) { a.Swap(&b); } inline void Swap(SelectOrUpdateRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -16562,52 +17418,69 @@ class SelectOrUpdateRequest final : // implements Message ---------------------------------------------- - SelectOrUpdateRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SelectOrUpdateRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SelectOrUpdateRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SelectOrUpdateRequest& from) { - SelectOrUpdateRequest::MergeImpl(*this, from); - } + void MergeFrom(const SelectOrUpdateRequest& from) { SelectOrUpdateRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SelectOrUpdateRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest"; } + + protected: explicit SelectOrUpdateRequest(::google::protobuf::Arena* arena); SelectOrUpdateRequest(::google::protobuf::Arena* arena, const SelectOrUpdateRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SelectOrUpdateRequest(::google::protobuf::Arena* arena, SelectOrUpdateRequest&& from) noexcept + : SelectOrUpdateRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnSpecsFieldNumber = 3, kResultIdFieldNumber = 1, @@ -16622,17 +17495,11 @@ class SelectOrUpdateRequest final : void clear_column_specs() ; const std::string& column_specs(int index) const; std::string* mutable_column_specs(int index); - void set_column_specs(int index, const std::string& value); - void set_column_specs(int index, std::string&& value); - void set_column_specs(int index, const char* value); - void set_column_specs(int index, const char* value, std::size_t size); - void set_column_specs(int index, absl::string_view value); + template + void set_column_specs(int index, Arg_&& value, Args_... args); std::string* add_column_specs(); - void add_column_specs(const std::string& value); - void add_column_specs(std::string&& value); - void add_column_specs(const char* value); - void add_column_specs(const char* value, std::size_t size); - void add_column_specs(absl::string_view value); + template + void add_column_specs(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& column_specs() const; ::google::protobuf::RepeatedPtrField* mutable_column_specs(); @@ -16674,12 +17541,15 @@ class SelectOrUpdateRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 76, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SelectOrUpdateRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -16687,13 +17557,13 @@ class SelectOrUpdateRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SelectOrUpdateRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField column_specs_; @@ -16703,23 +17573,21 @@ class SelectOrUpdateRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class SelectDistinctRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) */ { +class SelectDistinctRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) */ { public: inline SelectDistinctRequest() : SelectDistinctRequest(nullptr) {} - ~SelectDistinctRequest() override; - template - explicit PROTOBUF_CONSTEXPR SelectDistinctRequest(::google::protobuf::internal::ConstantInitialized); - - inline SelectDistinctRequest(const SelectDistinctRequest& from) - : SelectDistinctRequest(nullptr, from) {} - SelectDistinctRequest(SelectDistinctRequest&& from) noexcept - : SelectDistinctRequest() { - *this = ::std::move(from); - } - + ~SelectDistinctRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR SelectDistinctRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline SelectDistinctRequest(const SelectDistinctRequest& from) : SelectDistinctRequest(nullptr, from) {} + inline SelectDistinctRequest(SelectDistinctRequest&& from) noexcept + : SelectDistinctRequest(nullptr, std::move(from)) {} inline SelectDistinctRequest& operator=(const SelectDistinctRequest& from) { CopyFrom(from); return *this; @@ -16727,9 +17595,9 @@ class SelectDistinctRequest final : inline SelectDistinctRequest& operator=(SelectDistinctRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -16761,22 +17629,17 @@ class SelectDistinctRequest final : } static inline const SelectDistinctRequest* internal_default_instance() { return reinterpret_cast( - &_SelectDistinctRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 41; - - friend void swap(SelectDistinctRequest& a, SelectDistinctRequest& b) { - a.Swap(&b); + &_SelectDistinctRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 41; + friend void swap(SelectDistinctRequest& a, SelectDistinctRequest& b) { a.Swap(&b); } inline void Swap(SelectDistinctRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -16790,52 +17653,69 @@ class SelectDistinctRequest final : // implements Message ---------------------------------------------- - SelectDistinctRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + SelectDistinctRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const SelectDistinctRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const SelectDistinctRequest& from) { - SelectDistinctRequest::MergeImpl(*this, from); - } + void MergeFrom(const SelectDistinctRequest& from) { SelectDistinctRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(SelectDistinctRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.SelectDistinctRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.SelectDistinctRequest"; } + + protected: explicit SelectDistinctRequest(::google::protobuf::Arena* arena); SelectDistinctRequest(::google::protobuf::Arena* arena, const SelectDistinctRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + SelectDistinctRequest(::google::protobuf::Arena* arena, SelectDistinctRequest&& from) noexcept + : SelectDistinctRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNamesFieldNumber = 3, kResultIdFieldNumber = 1, @@ -16850,17 +17730,11 @@ class SelectDistinctRequest final : void clear_column_names() ; const std::string& column_names(int index) const; std::string* mutable_column_names(int index); - void set_column_names(int index, const std::string& value); - void set_column_names(int index, std::string&& value); - void set_column_names(int index, const char* value); - void set_column_names(int index, const char* value, std::size_t size); - void set_column_names(int index, absl::string_view value); + template + void set_column_names(int index, Arg_&& value, Args_... args); std::string* add_column_names(); - void add_column_names(const std::string& value); - void add_column_names(std::string&& value); - void add_column_names(const char* value); - void add_column_names(const char* value, std::size_t size); - void add_column_names(absl::string_view value); + template + void add_column_names(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& column_names() const; ::google::protobuf::RepeatedPtrField* mutable_column_names(); @@ -16902,12 +17776,15 @@ class SelectDistinctRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 76, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_SelectDistinctRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -16915,13 +17792,13 @@ class SelectDistinctRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const SelectDistinctRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField column_names_; @@ -16931,23 +17808,21 @@ class SelectDistinctRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class RunChartDownsampleRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) */ { +class RunChartDownsampleRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) */ { public: inline RunChartDownsampleRequest() : RunChartDownsampleRequest(nullptr) {} - ~RunChartDownsampleRequest() override; - template - explicit PROTOBUF_CONSTEXPR RunChartDownsampleRequest(::google::protobuf::internal::ConstantInitialized); - - inline RunChartDownsampleRequest(const RunChartDownsampleRequest& from) - : RunChartDownsampleRequest(nullptr, from) {} - RunChartDownsampleRequest(RunChartDownsampleRequest&& from) noexcept - : RunChartDownsampleRequest() { - *this = ::std::move(from); - } - + ~RunChartDownsampleRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR RunChartDownsampleRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline RunChartDownsampleRequest(const RunChartDownsampleRequest& from) : RunChartDownsampleRequest(nullptr, from) {} + inline RunChartDownsampleRequest(RunChartDownsampleRequest&& from) noexcept + : RunChartDownsampleRequest(nullptr, std::move(from)) {} inline RunChartDownsampleRequest& operator=(const RunChartDownsampleRequest& from) { CopyFrom(from); return *this; @@ -16955,9 +17830,9 @@ class RunChartDownsampleRequest final : inline RunChartDownsampleRequest& operator=(RunChartDownsampleRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -16989,22 +17864,17 @@ class RunChartDownsampleRequest final : } static inline const RunChartDownsampleRequest* internal_default_instance() { return reinterpret_cast( - &_RunChartDownsampleRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 114; - - friend void swap(RunChartDownsampleRequest& a, RunChartDownsampleRequest& b) { - a.Swap(&b); + &_RunChartDownsampleRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 114; + friend void swap(RunChartDownsampleRequest& a, RunChartDownsampleRequest& b) { a.Swap(&b); } inline void Swap(RunChartDownsampleRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -17018,54 +17888,70 @@ class RunChartDownsampleRequest final : // implements Message ---------------------------------------------- - RunChartDownsampleRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + RunChartDownsampleRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const RunChartDownsampleRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const RunChartDownsampleRequest& from) { - RunChartDownsampleRequest::MergeImpl(*this, from); - } + void MergeFrom(const RunChartDownsampleRequest& from) { RunChartDownsampleRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(RunChartDownsampleRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest"; } + + protected: explicit RunChartDownsampleRequest(::google::protobuf::Arena* arena); RunChartDownsampleRequest(::google::protobuf::Arena* arena, const RunChartDownsampleRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + RunChartDownsampleRequest(::google::protobuf::Arena* arena, RunChartDownsampleRequest&& from) noexcept + : RunChartDownsampleRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using ZoomRange = RunChartDownsampleRequest_ZoomRange; // accessors ------------------------------------------------------- - enum : int { kYColumnNamesFieldNumber = 6, kXColumnNameFieldNumber = 5, @@ -17083,17 +17969,11 @@ class RunChartDownsampleRequest final : void clear_y_column_names() ; const std::string& y_column_names(int index) const; std::string* mutable_y_column_names(int index); - void set_y_column_names(int index, const std::string& value); - void set_y_column_names(int index, std::string&& value); - void set_y_column_names(int index, const char* value); - void set_y_column_names(int index, const char* value, std::size_t size); - void set_y_column_names(int index, absl::string_view value); + template + void set_y_column_names(int index, Arg_&& value, Args_... args); std::string* add_y_column_names(); - void add_y_column_names(const std::string& value); - void add_y_column_names(std::string&& value); - void add_y_column_names(const char* value); - void add_y_column_names(const char* value, std::size_t size); - void add_y_column_names(absl::string_view value); + template + void add_y_column_names(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& y_column_names() const; ::google::protobuf::RepeatedPtrField* mutable_y_column_names(); @@ -17176,12 +18056,15 @@ class RunChartDownsampleRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 3, 95, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_RunChartDownsampleRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -17189,13 +18072,13 @@ class RunChartDownsampleRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const RunChartDownsampleRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField y_column_names_; @@ -17208,23 +18091,21 @@ class RunChartDownsampleRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class NaturalJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) */ { +class NaturalJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) */ { public: inline NaturalJoinTablesRequest() : NaturalJoinTablesRequest(nullptr) {} - ~NaturalJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR NaturalJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline NaturalJoinTablesRequest(const NaturalJoinTablesRequest& from) - : NaturalJoinTablesRequest(nullptr, from) {} - NaturalJoinTablesRequest(NaturalJoinTablesRequest&& from) noexcept - : NaturalJoinTablesRequest() { - *this = ::std::move(from); - } - + ~NaturalJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR NaturalJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline NaturalJoinTablesRequest(const NaturalJoinTablesRequest& from) : NaturalJoinTablesRequest(nullptr, from) {} + inline NaturalJoinTablesRequest(NaturalJoinTablesRequest&& from) noexcept + : NaturalJoinTablesRequest(nullptr, std::move(from)) {} inline NaturalJoinTablesRequest& operator=(const NaturalJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -17232,9 +18113,9 @@ class NaturalJoinTablesRequest final : inline NaturalJoinTablesRequest& operator=(NaturalJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -17266,22 +18147,17 @@ class NaturalJoinTablesRequest final : } static inline const NaturalJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_NaturalJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 51; - - friend void swap(NaturalJoinTablesRequest& a, NaturalJoinTablesRequest& b) { - a.Swap(&b); + &_NaturalJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 51; + friend void swap(NaturalJoinTablesRequest& a, NaturalJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(NaturalJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -17295,52 +18171,69 @@ class NaturalJoinTablesRequest final : // implements Message ---------------------------------------------- - NaturalJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + NaturalJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const NaturalJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const NaturalJoinTablesRequest& from) { - NaturalJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const NaturalJoinTablesRequest& from) { NaturalJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(NaturalJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest"; } + + protected: explicit NaturalJoinTablesRequest(::google::protobuf::Arena* arena); NaturalJoinTablesRequest(::google::protobuf::Arena* arena, const NaturalJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + NaturalJoinTablesRequest(::google::protobuf::Arena* arena, NaturalJoinTablesRequest&& from) noexcept + : NaturalJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 4, kColumnsToAddFieldNumber = 5, @@ -17357,17 +18250,11 @@ class NaturalJoinTablesRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -17385,17 +18272,11 @@ class NaturalJoinTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -17452,12 +18333,15 @@ class NaturalJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 97, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_NaturalJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -17465,13 +18349,13 @@ class NaturalJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const NaturalJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -17483,23 +18367,21 @@ class NaturalJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MultiJoinInput final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MultiJoinInput) */ { +class MultiJoinInput final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MultiJoinInput) */ { public: inline MultiJoinInput() : MultiJoinInput(nullptr) {} - ~MultiJoinInput() override; - template - explicit PROTOBUF_CONSTEXPR MultiJoinInput(::google::protobuf::internal::ConstantInitialized); - - inline MultiJoinInput(const MultiJoinInput& from) - : MultiJoinInput(nullptr, from) {} - MultiJoinInput(MultiJoinInput&& from) noexcept - : MultiJoinInput() { - *this = ::std::move(from); - } - + ~MultiJoinInput() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MultiJoinInput( + ::google::protobuf::internal::ConstantInitialized); + + inline MultiJoinInput(const MultiJoinInput& from) : MultiJoinInput(nullptr, from) {} + inline MultiJoinInput(MultiJoinInput&& from) noexcept + : MultiJoinInput(nullptr, std::move(from)) {} inline MultiJoinInput& operator=(const MultiJoinInput& from) { CopyFrom(from); return *this; @@ -17507,9 +18389,9 @@ class MultiJoinInput final : inline MultiJoinInput& operator=(MultiJoinInput&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -17541,22 +18423,17 @@ class MultiJoinInput final : } static inline const MultiJoinInput* internal_default_instance() { return reinterpret_cast( - &_MultiJoinInput_default_instance_); - } - static constexpr int kIndexInFileMessages = - 56; - - friend void swap(MultiJoinInput& a, MultiJoinInput& b) { - a.Swap(&b); + &_MultiJoinInput_default_instance_); } + static constexpr int kIndexInFileMessages = 56; + friend void swap(MultiJoinInput& a, MultiJoinInput& b) { a.Swap(&b); } inline void Swap(MultiJoinInput* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -17570,52 +18447,69 @@ class MultiJoinInput final : // implements Message ---------------------------------------------- - MultiJoinInput* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MultiJoinInput* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MultiJoinInput& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MultiJoinInput& from) { - MultiJoinInput::MergeImpl(*this, from); - } + void MergeFrom(const MultiJoinInput& from) { MultiJoinInput::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MultiJoinInput* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MultiJoinInput"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MultiJoinInput"; } + + protected: explicit MultiJoinInput(::google::protobuf::Arena* arena); MultiJoinInput(::google::protobuf::Arena* arena, const MultiJoinInput& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MultiJoinInput(::google::protobuf::Arena* arena, MultiJoinInput&& from) noexcept + : MultiJoinInput(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 2, kColumnsToAddFieldNumber = 3, @@ -17630,17 +18524,11 @@ class MultiJoinInput final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -17658,17 +18546,11 @@ class MultiJoinInput final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -17695,12 +18577,15 @@ class MultiJoinInput final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MultiJoinInput) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 1, 87, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MultiJoinInput_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -17708,13 +18593,13 @@ class MultiJoinInput final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MultiJoinInput& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -17724,23 +18609,21 @@ class MultiJoinInput final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MetaTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MetaTableRequest) */ { +class MetaTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MetaTableRequest) */ { public: inline MetaTableRequest() : MetaTableRequest(nullptr) {} - ~MetaTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR MetaTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline MetaTableRequest(const MetaTableRequest& from) - : MetaTableRequest(nullptr, from) {} - MetaTableRequest(MetaTableRequest&& from) noexcept - : MetaTableRequest() { - *this = ::std::move(from); - } - + ~MetaTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MetaTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline MetaTableRequest(const MetaTableRequest& from) : MetaTableRequest(nullptr, from) {} + inline MetaTableRequest(MetaTableRequest&& from) noexcept + : MetaTableRequest(nullptr, std::move(from)) {} inline MetaTableRequest& operator=(const MetaTableRequest& from) { CopyFrom(from); return *this; @@ -17748,9 +18631,9 @@ class MetaTableRequest final : inline MetaTableRequest& operator=(MetaTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -17782,22 +18665,17 @@ class MetaTableRequest final : } static inline const MetaTableRequest* internal_default_instance() { return reinterpret_cast( - &_MetaTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 112; - - friend void swap(MetaTableRequest& a, MetaTableRequest& b) { - a.Swap(&b); + &_MetaTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 112; + friend void swap(MetaTableRequest& a, MetaTableRequest& b) { a.Swap(&b); } inline void Swap(MetaTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -17811,52 +18689,69 @@ class MetaTableRequest final : // implements Message ---------------------------------------------- - MetaTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MetaTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MetaTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MetaTableRequest& from) { - MetaTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const MetaTableRequest& from) { MetaTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MetaTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MetaTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MetaTableRequest"; } + + protected: explicit MetaTableRequest(::google::protobuf::Arena* arena); MetaTableRequest(::google::protobuf::Arena* arena, const MetaTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MetaTableRequest(::google::protobuf::Arena* arena, MetaTableRequest&& from) noexcept + : MetaTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kSourceIdFieldNumber = 2, @@ -17894,12 +18789,15 @@ class MetaTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MetaTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MetaTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -17907,13 +18805,13 @@ class MetaTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MetaTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -17922,23 +18820,21 @@ class MetaTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MergeTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MergeTablesRequest) */ { +class MergeTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MergeTablesRequest) */ { public: inline MergeTablesRequest() : MergeTablesRequest(nullptr) {} - ~MergeTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR MergeTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline MergeTablesRequest(const MergeTablesRequest& from) - : MergeTablesRequest(nullptr, from) {} - MergeTablesRequest(MergeTablesRequest&& from) noexcept - : MergeTablesRequest() { - *this = ::std::move(from); - } - + ~MergeTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MergeTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline MergeTablesRequest(const MergeTablesRequest& from) : MergeTablesRequest(nullptr, from) {} + inline MergeTablesRequest(MergeTablesRequest&& from) noexcept + : MergeTablesRequest(nullptr, std::move(from)) {} inline MergeTablesRequest& operator=(const MergeTablesRequest& from) { CopyFrom(from); return *this; @@ -17946,9 +18842,9 @@ class MergeTablesRequest final : inline MergeTablesRequest& operator=(MergeTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -17980,22 +18876,17 @@ class MergeTablesRequest final : } static inline const MergeTablesRequest* internal_default_instance() { return reinterpret_cast( - &_MergeTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 47; - - friend void swap(MergeTablesRequest& a, MergeTablesRequest& b) { - a.Swap(&b); + &_MergeTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 47; + friend void swap(MergeTablesRequest& a, MergeTablesRequest& b) { a.Swap(&b); } inline void Swap(MergeTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -18009,52 +18900,69 @@ class MergeTablesRequest final : // implements Message ---------------------------------------------- - MergeTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MergeTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MergeTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MergeTablesRequest& from) { - MergeTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const MergeTablesRequest& from) { MergeTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MergeTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MergeTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MergeTablesRequest"; } + + protected: explicit MergeTablesRequest(::google::protobuf::Arena* arena); MergeTablesRequest(::google::protobuf::Arena* arena, const MergeTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MergeTablesRequest(::google::protobuf::Arena* arena, MergeTablesRequest&& from) noexcept + : MergeTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdsFieldNumber = 2, kKeyColumnFieldNumber = 3, @@ -18068,16 +18976,15 @@ class MergeTablesRequest final : public: void clear_source_ids() ; ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_ids(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TableReference >* - mutable_source_ids(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>* mutable_source_ids(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>& _internal_source_ids() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>* _internal_mutable_source_ids(); public: const ::io::deephaven::proto::backplane::grpc::TableReference& source_ids(int index) const; ::io::deephaven::proto::backplane::grpc::TableReference* add_source_ids(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TableReference >& - source_ids() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>& source_ids() const; // string key_column = 3; void clear_key_column() ; const std::string& key_column() const; @@ -18112,12 +19019,15 @@ class MergeTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MergeTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 71, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MergeTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -18125,13 +19035,13 @@ class MergeTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MergeTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TableReference > source_ids_; @@ -18141,23 +19051,21 @@ class MergeTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class LeftJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) */ { +class LeftJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) */ { public: inline LeftJoinTablesRequest() : LeftJoinTablesRequest(nullptr) {} - ~LeftJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR LeftJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline LeftJoinTablesRequest(const LeftJoinTablesRequest& from) - : LeftJoinTablesRequest(nullptr, from) {} - LeftJoinTablesRequest(LeftJoinTablesRequest&& from) noexcept - : LeftJoinTablesRequest() { - *this = ::std::move(from); - } - + ~LeftJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR LeftJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline LeftJoinTablesRequest(const LeftJoinTablesRequest& from) : LeftJoinTablesRequest(nullptr, from) {} + inline LeftJoinTablesRequest(LeftJoinTablesRequest&& from) noexcept + : LeftJoinTablesRequest(nullptr, std::move(from)) {} inline LeftJoinTablesRequest& operator=(const LeftJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -18165,9 +19073,9 @@ class LeftJoinTablesRequest final : inline LeftJoinTablesRequest& operator=(LeftJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -18199,22 +19107,17 @@ class LeftJoinTablesRequest final : } static inline const LeftJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_LeftJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 53; - - friend void swap(LeftJoinTablesRequest& a, LeftJoinTablesRequest& b) { - a.Swap(&b); + &_LeftJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 53; + friend void swap(LeftJoinTablesRequest& a, LeftJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(LeftJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -18228,52 +19131,69 @@ class LeftJoinTablesRequest final : // implements Message ---------------------------------------------- - LeftJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + LeftJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const LeftJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const LeftJoinTablesRequest& from) { - LeftJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const LeftJoinTablesRequest& from) { LeftJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(LeftJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest"; } + + protected: explicit LeftJoinTablesRequest(::google::protobuf::Arena* arena); LeftJoinTablesRequest(::google::protobuf::Arena* arena, const LeftJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + LeftJoinTablesRequest(::google::protobuf::Arena* arena, LeftJoinTablesRequest&& from) noexcept + : LeftJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 4, kColumnsToAddFieldNumber = 5, @@ -18290,17 +19210,11 @@ class LeftJoinTablesRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -18318,17 +19232,11 @@ class LeftJoinTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -18385,12 +19293,15 @@ class LeftJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 94, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_LeftJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -18398,13 +19309,13 @@ class LeftJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const LeftJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -18416,23 +19327,21 @@ class LeftJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class InvokeCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.InvokeCondition) */ { +class InvokeCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.InvokeCondition) */ { public: inline InvokeCondition() : InvokeCondition(nullptr) {} - ~InvokeCondition() override; - template - explicit PROTOBUF_CONSTEXPR InvokeCondition(::google::protobuf::internal::ConstantInitialized); - - inline InvokeCondition(const InvokeCondition& from) - : InvokeCondition(nullptr, from) {} - InvokeCondition(InvokeCondition&& from) noexcept - : InvokeCondition() { - *this = ::std::move(from); - } - + ~InvokeCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR InvokeCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline InvokeCondition(const InvokeCondition& from) : InvokeCondition(nullptr, from) {} + inline InvokeCondition(InvokeCondition&& from) noexcept + : InvokeCondition(nullptr, std::move(from)) {} inline InvokeCondition& operator=(const InvokeCondition& from) { CopyFrom(from); return *this; @@ -18440,9 +19349,9 @@ class InvokeCondition final : inline InvokeCondition& operator=(InvokeCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -18474,22 +19383,17 @@ class InvokeCondition final : } static inline const InvokeCondition* internal_default_instance() { return reinterpret_cast( - &_InvokeCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 106; - - friend void swap(InvokeCondition& a, InvokeCondition& b) { - a.Swap(&b); + &_InvokeCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 106; + friend void swap(InvokeCondition& a, InvokeCondition& b) { a.Swap(&b); } inline void Swap(InvokeCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -18503,52 +19407,69 @@ class InvokeCondition final : // implements Message ---------------------------------------------- - InvokeCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + InvokeCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const InvokeCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const InvokeCondition& from) { - InvokeCondition::MergeImpl(*this, from); - } + void MergeFrom(const InvokeCondition& from) { InvokeCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(InvokeCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.InvokeCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.InvokeCondition"; } + + protected: explicit InvokeCondition(::google::protobuf::Arena* arena); InvokeCondition(::google::protobuf::Arena* arena, const InvokeCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + InvokeCondition(::google::protobuf::Arena* arena, InvokeCondition&& from) noexcept + : InvokeCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kArgumentsFieldNumber = 3, kMethodFieldNumber = 1, @@ -18562,16 +19483,15 @@ class InvokeCondition final : public: void clear_arguments() ; ::io::deephaven::proto::backplane::grpc::Value* mutable_arguments(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value >* - mutable_arguments(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* mutable_arguments(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& _internal_arguments() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* _internal_mutable_arguments(); public: const ::io::deephaven::proto::backplane::grpc::Value& arguments(int index) const; ::io::deephaven::proto::backplane::grpc::Value* add_arguments(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value >& - arguments() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& arguments() const; // string method = 1; void clear_method() ; const std::string& method() const; @@ -18606,12 +19526,15 @@ class InvokeCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.InvokeCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 64, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_InvokeCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -18619,13 +19542,13 @@ class InvokeCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const InvokeCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value > arguments_; @@ -18635,23 +19558,21 @@ class InvokeCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class InCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.InCondition) */ { +class InCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.InCondition) */ { public: inline InCondition() : InCondition(nullptr) {} - ~InCondition() override; - template - explicit PROTOBUF_CONSTEXPR InCondition(::google::protobuf::internal::ConstantInitialized); - - inline InCondition(const InCondition& from) - : InCondition(nullptr, from) {} - InCondition(InCondition&& from) noexcept - : InCondition() { - *this = ::std::move(from); - } - + ~InCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR InCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline InCondition(const InCondition& from) : InCondition(nullptr, from) {} + inline InCondition(InCondition&& from) noexcept + : InCondition(nullptr, std::move(from)) {} inline InCondition& operator=(const InCondition& from) { CopyFrom(from); return *this; @@ -18659,9 +19580,9 @@ class InCondition final : inline InCondition& operator=(InCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -18693,22 +19614,17 @@ class InCondition final : } static inline const InCondition* internal_default_instance() { return reinterpret_cast( - &_InCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 105; - - friend void swap(InCondition& a, InCondition& b) { - a.Swap(&b); + &_InCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 105; + friend void swap(InCondition& a, InCondition& b) { a.Swap(&b); } inline void Swap(InCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -18722,52 +19638,69 @@ class InCondition final : // implements Message ---------------------------------------------- - InCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + InCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const InCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const InCondition& from) { - InCondition::MergeImpl(*this, from); - } + void MergeFrom(const InCondition& from) { InCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(InCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.InCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.InCondition"; } + + protected: explicit InCondition(::google::protobuf::Arena* arena); InCondition(::google::protobuf::Arena* arena, const InCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + InCondition(::google::protobuf::Arena* arena, InCondition&& from) noexcept + : InCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kCandidatesFieldNumber = 2, kTargetFieldNumber = 1, @@ -18782,16 +19715,15 @@ class InCondition final : public: void clear_candidates() ; ::io::deephaven::proto::backplane::grpc::Value* mutable_candidates(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value >* - mutable_candidates(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* mutable_candidates(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& _internal_candidates() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* _internal_mutable_candidates(); public: const ::io::deephaven::proto::backplane::grpc::Value& candidates(int index) const; ::io::deephaven::proto::backplane::grpc::Value* add_candidates(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value >& - candidates() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& candidates() const; // .io.deephaven.proto.backplane.grpc.Value target = 1; bool has_target() const; void clear_target() ; @@ -18830,12 +19762,15 @@ class InCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.InCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_InCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -18843,13 +19778,13 @@ class InCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const InCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Value > candidates_; @@ -18860,23 +19795,21 @@ class InCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HeadOrTailRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) */ { +class HeadOrTailRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) */ { public: inline HeadOrTailRequest() : HeadOrTailRequest(nullptr) {} - ~HeadOrTailRequest() override; - template - explicit PROTOBUF_CONSTEXPR HeadOrTailRequest(::google::protobuf::internal::ConstantInitialized); - - inline HeadOrTailRequest(const HeadOrTailRequest& from) - : HeadOrTailRequest(nullptr, from) {} - HeadOrTailRequest(HeadOrTailRequest&& from) noexcept - : HeadOrTailRequest() { - *this = ::std::move(from); - } - + ~HeadOrTailRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HeadOrTailRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HeadOrTailRequest(const HeadOrTailRequest& from) : HeadOrTailRequest(nullptr, from) {} + inline HeadOrTailRequest(HeadOrTailRequest&& from) noexcept + : HeadOrTailRequest(nullptr, std::move(from)) {} inline HeadOrTailRequest& operator=(const HeadOrTailRequest& from) { CopyFrom(from); return *this; @@ -18884,9 +19817,9 @@ class HeadOrTailRequest final : inline HeadOrTailRequest& operator=(HeadOrTailRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -18918,22 +19851,17 @@ class HeadOrTailRequest final : } static inline const HeadOrTailRequest* internal_default_instance() { return reinterpret_cast( - &_HeadOrTailRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 44; - - friend void swap(HeadOrTailRequest& a, HeadOrTailRequest& b) { - a.Swap(&b); + &_HeadOrTailRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 44; + friend void swap(HeadOrTailRequest& a, HeadOrTailRequest& b) { a.Swap(&b); } inline void Swap(HeadOrTailRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -18947,52 +19875,69 @@ class HeadOrTailRequest final : // implements Message ---------------------------------------------- - HeadOrTailRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HeadOrTailRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HeadOrTailRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HeadOrTailRequest& from) { - HeadOrTailRequest::MergeImpl(*this, from); - } + void MergeFrom(const HeadOrTailRequest& from) { HeadOrTailRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HeadOrTailRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HeadOrTailRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HeadOrTailRequest"; } + + protected: explicit HeadOrTailRequest(::google::protobuf::Arena* arena); HeadOrTailRequest(::google::protobuf::Arena* arena, const HeadOrTailRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HeadOrTailRequest(::google::protobuf::Arena* arena, HeadOrTailRequest&& from) noexcept + : HeadOrTailRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kSourceIdFieldNumber = 2, @@ -19041,12 +19986,15 @@ class HeadOrTailRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HeadOrTailRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -19054,13 +20002,13 @@ class HeadOrTailRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HeadOrTailRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -19070,23 +20018,21 @@ class HeadOrTailRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class HeadOrTailByRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) */ { +class HeadOrTailByRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) */ { public: inline HeadOrTailByRequest() : HeadOrTailByRequest(nullptr) {} - ~HeadOrTailByRequest() override; - template - explicit PROTOBUF_CONSTEXPR HeadOrTailByRequest(::google::protobuf::internal::ConstantInitialized); - - inline HeadOrTailByRequest(const HeadOrTailByRequest& from) - : HeadOrTailByRequest(nullptr, from) {} - HeadOrTailByRequest(HeadOrTailByRequest&& from) noexcept - : HeadOrTailByRequest() { - *this = ::std::move(from); - } - + ~HeadOrTailByRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR HeadOrTailByRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline HeadOrTailByRequest(const HeadOrTailByRequest& from) : HeadOrTailByRequest(nullptr, from) {} + inline HeadOrTailByRequest(HeadOrTailByRequest&& from) noexcept + : HeadOrTailByRequest(nullptr, std::move(from)) {} inline HeadOrTailByRequest& operator=(const HeadOrTailByRequest& from) { CopyFrom(from); return *this; @@ -19094,9 +20040,9 @@ class HeadOrTailByRequest final : inline HeadOrTailByRequest& operator=(HeadOrTailByRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -19128,22 +20074,17 @@ class HeadOrTailByRequest final : } static inline const HeadOrTailByRequest* internal_default_instance() { return reinterpret_cast( - &_HeadOrTailByRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 45; - - friend void swap(HeadOrTailByRequest& a, HeadOrTailByRequest& b) { - a.Swap(&b); + &_HeadOrTailByRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 45; + friend void swap(HeadOrTailByRequest& a, HeadOrTailByRequest& b) { a.Swap(&b); } inline void Swap(HeadOrTailByRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -19157,52 +20098,69 @@ class HeadOrTailByRequest final : // implements Message ---------------------------------------------- - HeadOrTailByRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + HeadOrTailByRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const HeadOrTailByRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const HeadOrTailByRequest& from) { - HeadOrTailByRequest::MergeImpl(*this, from); - } + void MergeFrom(const HeadOrTailByRequest& from) { HeadOrTailByRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(HeadOrTailByRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.HeadOrTailByRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.HeadOrTailByRequest"; } + + protected: explicit HeadOrTailByRequest(::google::protobuf::Arena* arena); HeadOrTailByRequest(::google::protobuf::Arena* arena, const HeadOrTailByRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + HeadOrTailByRequest(::google::protobuf::Arena* arena, HeadOrTailByRequest&& from) noexcept + : HeadOrTailByRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kGroupByColumnSpecsFieldNumber = 4, kResultIdFieldNumber = 1, @@ -19218,17 +20176,11 @@ class HeadOrTailByRequest final : void clear_group_by_column_specs() ; const std::string& group_by_column_specs(int index) const; std::string* mutable_group_by_column_specs(int index); - void set_group_by_column_specs(int index, const std::string& value); - void set_group_by_column_specs(int index, std::string&& value); - void set_group_by_column_specs(int index, const char* value); - void set_group_by_column_specs(int index, const char* value, std::size_t size); - void set_group_by_column_specs(int index, absl::string_view value); + template + void set_group_by_column_specs(int index, Arg_&& value, Args_... args); std::string* add_group_by_column_specs(); - void add_group_by_column_specs(const std::string& value); - void add_group_by_column_specs(std::string&& value); - void add_group_by_column_specs(const char* value); - void add_group_by_column_specs(const char* value, std::size_t size); - void add_group_by_column_specs(absl::string_view value); + template + void add_group_by_column_specs(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_column_specs() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_column_specs(); @@ -19280,12 +20232,15 @@ class HeadOrTailByRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 83, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_HeadOrTailByRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -19293,13 +20248,13 @@ class HeadOrTailByRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const HeadOrTailByRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField group_by_column_specs_; @@ -19310,23 +20265,21 @@ class HeadOrTailByRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FlattenRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FlattenRequest) */ { +class FlattenRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FlattenRequest) */ { public: inline FlattenRequest() : FlattenRequest(nullptr) {} - ~FlattenRequest() override; - template - explicit PROTOBUF_CONSTEXPR FlattenRequest(::google::protobuf::internal::ConstantInitialized); - - inline FlattenRequest(const FlattenRequest& from) - : FlattenRequest(nullptr, from) {} - FlattenRequest(FlattenRequest&& from) noexcept - : FlattenRequest() { - *this = ::std::move(from); - } - + ~FlattenRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FlattenRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline FlattenRequest(const FlattenRequest& from) : FlattenRequest(nullptr, from) {} + inline FlattenRequest(FlattenRequest&& from) noexcept + : FlattenRequest(nullptr, std::move(from)) {} inline FlattenRequest& operator=(const FlattenRequest& from) { CopyFrom(from); return *this; @@ -19334,9 +20287,9 @@ class FlattenRequest final : inline FlattenRequest& operator=(FlattenRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -19368,22 +20321,17 @@ class FlattenRequest final : } static inline const FlattenRequest* internal_default_instance() { return reinterpret_cast( - &_FlattenRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 111; - - friend void swap(FlattenRequest& a, FlattenRequest& b) { - a.Swap(&b); + &_FlattenRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 111; + friend void swap(FlattenRequest& a, FlattenRequest& b) { a.Swap(&b); } inline void Swap(FlattenRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -19397,52 +20345,69 @@ class FlattenRequest final : // implements Message ---------------------------------------------- - FlattenRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FlattenRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FlattenRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FlattenRequest& from) { - FlattenRequest::MergeImpl(*this, from); - } + void MergeFrom(const FlattenRequest& from) { FlattenRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FlattenRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FlattenRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FlattenRequest"; } + + protected: explicit FlattenRequest(::google::protobuf::Arena* arena); FlattenRequest(::google::protobuf::Arena* arena, const FlattenRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FlattenRequest(::google::protobuf::Arena* arena, FlattenRequest&& from) noexcept + : FlattenRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kSourceIdFieldNumber = 2, @@ -19480,12 +20445,15 @@ class FlattenRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FlattenRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FlattenRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -19493,13 +20461,13 @@ class FlattenRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FlattenRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; @@ -19508,23 +20476,21 @@ class FlattenRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FetchTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchTableRequest) */ { +class FetchTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FetchTableRequest) */ { public: inline FetchTableRequest() : FetchTableRequest(nullptr) {} - ~FetchTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR FetchTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline FetchTableRequest(const FetchTableRequest& from) - : FetchTableRequest(nullptr, from) {} - FetchTableRequest(FetchTableRequest&& from) noexcept - : FetchTableRequest() { - *this = ::std::move(from); - } - + ~FetchTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FetchTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline FetchTableRequest(const FetchTableRequest& from) : FetchTableRequest(nullptr, from) {} + inline FetchTableRequest(FetchTableRequest&& from) noexcept + : FetchTableRequest(nullptr, std::move(from)) {} inline FetchTableRequest& operator=(const FetchTableRequest& from) { CopyFrom(from); return *this; @@ -19532,9 +20498,9 @@ class FetchTableRequest final : inline FetchTableRequest& operator=(FetchTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -19566,22 +20532,17 @@ class FetchTableRequest final : } static inline const FetchTableRequest* internal_default_instance() { return reinterpret_cast( - &_FetchTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 2; - - friend void swap(FetchTableRequest& a, FetchTableRequest& b) { - a.Swap(&b); + &_FetchTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 2; + friend void swap(FetchTableRequest& a, FetchTableRequest& b) { a.Swap(&b); } inline void Swap(FetchTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -19595,52 +20556,69 @@ class FetchTableRequest final : // implements Message ---------------------------------------------- - FetchTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FetchTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FetchTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FetchTableRequest& from) { - FetchTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const FetchTableRequest& from) { FetchTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FetchTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FetchTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FetchTableRequest"; } + + protected: explicit FetchTableRequest(::google::protobuf::Arena* arena); FetchTableRequest(::google::protobuf::Arena* arena, const FetchTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FetchTableRequest(::google::protobuf::Arena* arena, FetchTableRequest&& from) noexcept + : FetchTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, kResultIdFieldNumber = 2, @@ -19678,12 +20656,15 @@ class FetchTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FetchTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FetchTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -19691,13 +20672,13 @@ class FetchTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FetchTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; @@ -19706,23 +20687,21 @@ class FetchTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExportedTableCreationResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) */ { +class ExportedTableCreationResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) */ { public: inline ExportedTableCreationResponse() : ExportedTableCreationResponse(nullptr) {} - ~ExportedTableCreationResponse() override; - template - explicit PROTOBUF_CONSTEXPR ExportedTableCreationResponse(::google::protobuf::internal::ConstantInitialized); - - inline ExportedTableCreationResponse(const ExportedTableCreationResponse& from) - : ExportedTableCreationResponse(nullptr, from) {} - ExportedTableCreationResponse(ExportedTableCreationResponse&& from) noexcept - : ExportedTableCreationResponse() { - *this = ::std::move(from); - } - + ~ExportedTableCreationResponse() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExportedTableCreationResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline ExportedTableCreationResponse(const ExportedTableCreationResponse& from) : ExportedTableCreationResponse(nullptr, from) {} + inline ExportedTableCreationResponse(ExportedTableCreationResponse&& from) noexcept + : ExportedTableCreationResponse(nullptr, std::move(from)) {} inline ExportedTableCreationResponse& operator=(const ExportedTableCreationResponse& from) { CopyFrom(from); return *this; @@ -19730,9 +20709,9 @@ class ExportedTableCreationResponse final : inline ExportedTableCreationResponse& operator=(ExportedTableCreationResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -19764,22 +20743,17 @@ class ExportedTableCreationResponse final : } static inline const ExportedTableCreationResponse* internal_default_instance() { return reinterpret_cast( - &_ExportedTableCreationResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(ExportedTableCreationResponse& a, ExportedTableCreationResponse& b) { - a.Swap(&b); + &_ExportedTableCreationResponse_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(ExportedTableCreationResponse& a, ExportedTableCreationResponse& b) { a.Swap(&b); } inline void Swap(ExportedTableCreationResponse* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -19793,52 +20767,69 @@ class ExportedTableCreationResponse final : // implements Message ---------------------------------------------- - ExportedTableCreationResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExportedTableCreationResponse* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExportedTableCreationResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExportedTableCreationResponse& from) { - ExportedTableCreationResponse::MergeImpl(*this, from); - } + void MergeFrom(const ExportedTableCreationResponse& from) { ExportedTableCreationResponse::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExportedTableCreationResponse* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse"; } + + protected: explicit ExportedTableCreationResponse(::google::protobuf::Arena* arena); ExportedTableCreationResponse(::google::protobuf::Arena* arena, const ExportedTableCreationResponse& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExportedTableCreationResponse(::google::protobuf::Arena* arena, ExportedTableCreationResponse&& from) noexcept + : ExportedTableCreationResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kErrorInfoFieldNumber = 3, kSchemaHeaderFieldNumber = 4, @@ -19927,12 +20918,15 @@ class ExportedTableCreationResponse final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 1, 82, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExportedTableCreationResponse_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -19940,13 +20934,13 @@ class ExportedTableCreationResponse final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExportedTableCreationResponse& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr error_info_; @@ -19959,23 +20953,21 @@ class ExportedTableCreationResponse final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ExactJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) */ { +class ExactJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) */ { public: inline ExactJoinTablesRequest() : ExactJoinTablesRequest(nullptr) {} - ~ExactJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR ExactJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline ExactJoinTablesRequest(const ExactJoinTablesRequest& from) - : ExactJoinTablesRequest(nullptr, from) {} - ExactJoinTablesRequest(ExactJoinTablesRequest&& from) noexcept - : ExactJoinTablesRequest() { - *this = ::std::move(from); - } - + ~ExactJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ExactJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ExactJoinTablesRequest(const ExactJoinTablesRequest& from) : ExactJoinTablesRequest(nullptr, from) {} + inline ExactJoinTablesRequest(ExactJoinTablesRequest&& from) noexcept + : ExactJoinTablesRequest(nullptr, std::move(from)) {} inline ExactJoinTablesRequest& operator=(const ExactJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -19983,9 +20975,9 @@ class ExactJoinTablesRequest final : inline ExactJoinTablesRequest& operator=(ExactJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -20017,22 +21009,17 @@ class ExactJoinTablesRequest final : } static inline const ExactJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_ExactJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 52; - - friend void swap(ExactJoinTablesRequest& a, ExactJoinTablesRequest& b) { - a.Swap(&b); + &_ExactJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 52; + friend void swap(ExactJoinTablesRequest& a, ExactJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(ExactJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -20046,52 +21033,69 @@ class ExactJoinTablesRequest final : // implements Message ---------------------------------------------- - ExactJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ExactJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ExactJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ExactJoinTablesRequest& from) { - ExactJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const ExactJoinTablesRequest& from) { ExactJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ExactJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest"; } + + protected: explicit ExactJoinTablesRequest(::google::protobuf::Arena* arena); ExactJoinTablesRequest(::google::protobuf::Arena* arena, const ExactJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ExactJoinTablesRequest(::google::protobuf::Arena* arena, ExactJoinTablesRequest&& from) noexcept + : ExactJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 4, kColumnsToAddFieldNumber = 5, @@ -20108,17 +21112,11 @@ class ExactJoinTablesRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -20136,17 +21134,11 @@ class ExactJoinTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -20203,12 +21195,15 @@ class ExactJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 95, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ExactJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -20216,13 +21211,13 @@ class ExactJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ExactJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -20234,23 +21229,21 @@ class ExactJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class DropColumnsRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DropColumnsRequest) */ { +class DropColumnsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.DropColumnsRequest) */ { public: inline DropColumnsRequest() : DropColumnsRequest(nullptr) {} - ~DropColumnsRequest() override; - template - explicit PROTOBUF_CONSTEXPR DropColumnsRequest(::google::protobuf::internal::ConstantInitialized); - - inline DropColumnsRequest(const DropColumnsRequest& from) - : DropColumnsRequest(nullptr, from) {} - DropColumnsRequest(DropColumnsRequest&& from) noexcept - : DropColumnsRequest() { - *this = ::std::move(from); - } - + ~DropColumnsRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR DropColumnsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline DropColumnsRequest(const DropColumnsRequest& from) : DropColumnsRequest(nullptr, from) {} + inline DropColumnsRequest(DropColumnsRequest&& from) noexcept + : DropColumnsRequest(nullptr, std::move(from)) {} inline DropColumnsRequest& operator=(const DropColumnsRequest& from) { CopyFrom(from); return *this; @@ -20258,9 +21251,9 @@ class DropColumnsRequest final : inline DropColumnsRequest& operator=(DropColumnsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -20292,22 +21285,17 @@ class DropColumnsRequest final : } static inline const DropColumnsRequest* internal_default_instance() { return reinterpret_cast( - &_DropColumnsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 42; - - friend void swap(DropColumnsRequest& a, DropColumnsRequest& b) { - a.Swap(&b); + &_DropColumnsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 42; + friend void swap(DropColumnsRequest& a, DropColumnsRequest& b) { a.Swap(&b); } inline void Swap(DropColumnsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -20321,52 +21309,69 @@ class DropColumnsRequest final : // implements Message ---------------------------------------------- - DropColumnsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + DropColumnsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const DropColumnsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const DropColumnsRequest& from) { - DropColumnsRequest::MergeImpl(*this, from); - } + void MergeFrom(const DropColumnsRequest& from) { DropColumnsRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(DropColumnsRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.DropColumnsRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.DropColumnsRequest"; } + + protected: explicit DropColumnsRequest(::google::protobuf::Arena* arena); DropColumnsRequest(::google::protobuf::Arena* arena, const DropColumnsRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + DropColumnsRequest(::google::protobuf::Arena* arena, DropColumnsRequest&& from) noexcept + : DropColumnsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNamesFieldNumber = 3, kResultIdFieldNumber = 1, @@ -20381,17 +21386,11 @@ class DropColumnsRequest final : void clear_column_names() ; const std::string& column_names(int index) const; std::string* mutable_column_names(int index); - void set_column_names(int index, const std::string& value); - void set_column_names(int index, std::string&& value); - void set_column_names(int index, const char* value); - void set_column_names(int index, const char* value, std::size_t size); - void set_column_names(int index, absl::string_view value); + template + void set_column_names(int index, Arg_&& value, Args_... args); std::string* add_column_names(); - void add_column_names(const std::string& value); - void add_column_names(std::string&& value); - void add_column_names(const char* value); - void add_column_names(const char* value, std::size_t size); - void add_column_names(absl::string_view value); + template + void add_column_names(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& column_names() const; ::google::protobuf::RepeatedPtrField* mutable_column_names(); @@ -20433,12 +21432,15 @@ class DropColumnsRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.DropColumnsRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 2, 73, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_DropColumnsRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -20446,13 +21448,13 @@ class DropColumnsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const DropColumnsRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField column_names_; @@ -20462,23 +21464,21 @@ class DropColumnsRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CrossJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) */ { +class CrossJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) */ { public: inline CrossJoinTablesRequest() : CrossJoinTablesRequest(nullptr) {} - ~CrossJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR CrossJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline CrossJoinTablesRequest(const CrossJoinTablesRequest& from) - : CrossJoinTablesRequest(nullptr, from) {} - CrossJoinTablesRequest(CrossJoinTablesRequest&& from) noexcept - : CrossJoinTablesRequest() { - *this = ::std::move(from); - } - + ~CrossJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CrossJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CrossJoinTablesRequest(const CrossJoinTablesRequest& from) : CrossJoinTablesRequest(nullptr, from) {} + inline CrossJoinTablesRequest(CrossJoinTablesRequest&& from) noexcept + : CrossJoinTablesRequest(nullptr, std::move(from)) {} inline CrossJoinTablesRequest& operator=(const CrossJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -20486,9 +21486,9 @@ class CrossJoinTablesRequest final : inline CrossJoinTablesRequest& operator=(CrossJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -20520,22 +21520,17 @@ class CrossJoinTablesRequest final : } static inline const CrossJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_CrossJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 50; - - friend void swap(CrossJoinTablesRequest& a, CrossJoinTablesRequest& b) { - a.Swap(&b); + &_CrossJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 50; + friend void swap(CrossJoinTablesRequest& a, CrossJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(CrossJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -20549,52 +21544,69 @@ class CrossJoinTablesRequest final : // implements Message ---------------------------------------------- - CrossJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CrossJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CrossJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CrossJoinTablesRequest& from) { - CrossJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const CrossJoinTablesRequest& from) { CrossJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CrossJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest"; } + + protected: explicit CrossJoinTablesRequest(::google::protobuf::Arena* arena); CrossJoinTablesRequest(::google::protobuf::Arena* arena, const CrossJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CrossJoinTablesRequest(::google::protobuf::Arena* arena, CrossJoinTablesRequest&& from) noexcept + : CrossJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 4, kColumnsToAddFieldNumber = 5, @@ -20612,17 +21624,11 @@ class CrossJoinTablesRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -20640,17 +21646,11 @@ class CrossJoinTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -20717,12 +21717,15 @@ class CrossJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 3, 95, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CrossJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -20730,13 +21733,13 @@ class CrossJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CrossJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -20749,23 +21752,21 @@ class CrossJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CreateInputTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) */ { +class CreateInputTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) */ { public: inline CreateInputTableRequest() : CreateInputTableRequest(nullptr) {} - ~CreateInputTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR CreateInputTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline CreateInputTableRequest(const CreateInputTableRequest& from) - : CreateInputTableRequest(nullptr, from) {} - CreateInputTableRequest(CreateInputTableRequest&& from) noexcept - : CreateInputTableRequest() { - *this = ::std::move(from); - } - + ~CreateInputTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CreateInputTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline CreateInputTableRequest(const CreateInputTableRequest& from) : CreateInputTableRequest(nullptr, from) {} + inline CreateInputTableRequest(CreateInputTableRequest&& from) noexcept + : CreateInputTableRequest(nullptr, std::move(from)) {} inline CreateInputTableRequest& operator=(const CreateInputTableRequest& from) { CopyFrom(from); return *this; @@ -20773,9 +21774,9 @@ class CreateInputTableRequest final : inline CreateInputTableRequest& operator=(CreateInputTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -20810,25 +21811,19 @@ class CreateInputTableRequest final : kSchema = 3, DEFINITION_NOT_SET = 0, }; - static inline const CreateInputTableRequest* internal_default_instance() { return reinterpret_cast( - &_CreateInputTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 119; - - friend void swap(CreateInputTableRequest& a, CreateInputTableRequest& b) { - a.Swap(&b); + &_CreateInputTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 119; + friend void swap(CreateInputTableRequest& a, CreateInputTableRequest& b) { a.Swap(&b); } inline void Swap(CreateInputTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -20842,54 +21837,70 @@ class CreateInputTableRequest final : // implements Message ---------------------------------------------- - CreateInputTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CreateInputTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CreateInputTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CreateInputTableRequest& from) { - CreateInputTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const CreateInputTableRequest& from) { CreateInputTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CreateInputTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CreateInputTableRequest"; } + + protected: explicit CreateInputTableRequest(::google::protobuf::Arena* arena); CreateInputTableRequest(::google::protobuf::Arena* arena, const CreateInputTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CreateInputTableRequest(::google::protobuf::Arena* arena, CreateInputTableRequest&& from) noexcept + : CreateInputTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using InputTableKind = CreateInputTableRequest_InputTableKind; // accessors ------------------------------------------------------- - enum : int { kResultIdFieldNumber = 1, kKindFieldNumber = 4, @@ -20969,15 +21980,17 @@ class CreateInputTableRequest final : class _Internal; void set_has_source_table_id(); void set_has_schema(); - inline bool has_definition() const; inline void clear_has_definition(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 4, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CreateInputTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -20985,46 +21998,43 @@ class CreateInputTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CreateInputTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* kind_; union DefinitionUnion { constexpr DefinitionUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::TableReference* source_table_id_; ::google::protobuf::internal::ArenaStringPtr schema_; } definition_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class CompareCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CompareCondition) */ { +class CompareCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.CompareCondition) */ { public: inline CompareCondition() : CompareCondition(nullptr) {} - ~CompareCondition() override; - template - explicit PROTOBUF_CONSTEXPR CompareCondition(::google::protobuf::internal::ConstantInitialized); - - inline CompareCondition(const CompareCondition& from) - : CompareCondition(nullptr, from) {} - CompareCondition(CompareCondition&& from) noexcept - : CompareCondition() { - *this = ::std::move(from); - } - + ~CompareCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR CompareCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline CompareCondition(const CompareCondition& from) : CompareCondition(nullptr, from) {} + inline CompareCondition(CompareCondition&& from) noexcept + : CompareCondition(nullptr, std::move(from)) {} inline CompareCondition& operator=(const CompareCondition& from) { CopyFrom(from); return *this; @@ -21032,9 +22042,9 @@ class CompareCondition final : inline CompareCondition& operator=(CompareCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -21066,22 +22076,17 @@ class CompareCondition final : } static inline const CompareCondition* internal_default_instance() { return reinterpret_cast( - &_CompareCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 104; - - friend void swap(CompareCondition& a, CompareCondition& b) { - a.Swap(&b); + &_CompareCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 104; + friend void swap(CompareCondition& a, CompareCondition& b) { a.Swap(&b); } inline void Swap(CompareCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -21095,50 +22100,67 @@ class CompareCondition final : // implements Message ---------------------------------------------- - CompareCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CompareCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const CompareCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const CompareCondition& from) { - CompareCondition::MergeImpl(*this, from); - } + void MergeFrom(const CompareCondition& from) { CompareCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(CompareCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.CompareCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.CompareCondition"; } + + protected: explicit CompareCondition(::google::protobuf::Arena* arena); CompareCondition(::google::protobuf::Arena* arena, const CompareCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + CompareCondition(::google::protobuf::Arena* arena, CompareCondition&& from) noexcept + : CompareCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using CompareOperation = CompareCondition_CompareOperation; static constexpr CompareOperation LESS_THAN = CompareCondition_CompareOperation_LESS_THAN; static constexpr CompareOperation LESS_THAN_OR_EQUAL = CompareCondition_CompareOperation_LESS_THAN_OR_EQUAL; @@ -21164,7 +22186,6 @@ class CompareCondition final : } // accessors ------------------------------------------------------- - enum : int { kLhsFieldNumber = 3, kRhsFieldNumber = 4, @@ -21224,12 +22245,15 @@ class CompareCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CompareCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_CompareCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -21237,13 +22261,13 @@ class CompareCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const CompareCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Value* lhs_; @@ -21254,23 +22278,21 @@ class CompareCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ComboAggregateRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) */ { +class ComboAggregateRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) */ { public: inline ComboAggregateRequest() : ComboAggregateRequest(nullptr) {} - ~ComboAggregateRequest() override; - template - explicit PROTOBUF_CONSTEXPR ComboAggregateRequest(::google::protobuf::internal::ConstantInitialized); - - inline ComboAggregateRequest(const ComboAggregateRequest& from) - : ComboAggregateRequest(nullptr, from) {} - ComboAggregateRequest(ComboAggregateRequest&& from) noexcept - : ComboAggregateRequest() { - *this = ::std::move(from); - } - + ~ComboAggregateRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ComboAggregateRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ComboAggregateRequest(const ComboAggregateRequest& from) : ComboAggregateRequest(nullptr, from) {} + inline ComboAggregateRequest(ComboAggregateRequest&& from) noexcept + : ComboAggregateRequest(nullptr, std::move(from)) {} inline ComboAggregateRequest& operator=(const ComboAggregateRequest& from) { CopyFrom(from); return *this; @@ -21278,9 +22300,9 @@ class ComboAggregateRequest final : inline ComboAggregateRequest& operator=(ComboAggregateRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -21312,22 +22334,17 @@ class ComboAggregateRequest final : } static inline const ComboAggregateRequest* internal_default_instance() { return reinterpret_cast( - &_ComboAggregateRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 60; - - friend void swap(ComboAggregateRequest& a, ComboAggregateRequest& b) { - a.Swap(&b); + &_ComboAggregateRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 60; + friend void swap(ComboAggregateRequest& a, ComboAggregateRequest& b) { a.Swap(&b); } inline void Swap(ComboAggregateRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -21341,52 +22358,68 @@ class ComboAggregateRequest final : // implements Message ---------------------------------------------- - ComboAggregateRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ComboAggregateRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ComboAggregateRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ComboAggregateRequest& from) { - ComboAggregateRequest::MergeImpl(*this, from); - } + void MergeFrom(const ComboAggregateRequest& from) { ComboAggregateRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ComboAggregateRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ComboAggregateRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ComboAggregateRequest"; } + + protected: explicit ComboAggregateRequest(::google::protobuf::Arena* arena); ComboAggregateRequest(::google::protobuf::Arena* arena, const ComboAggregateRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ComboAggregateRequest(::google::protobuf::Arena* arena, ComboAggregateRequest&& from) noexcept + : ComboAggregateRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using Aggregate = ComboAggregateRequest_Aggregate; - using AggType = ComboAggregateRequest_AggType; static constexpr AggType SUM = ComboAggregateRequest_AggType_SUM; static constexpr AggType ABS_SUM = ComboAggregateRequest_AggType_ABS_SUM; @@ -21420,7 +22453,6 @@ class ComboAggregateRequest final : } // accessors ------------------------------------------------------- - enum : int { kAggregatesFieldNumber = 3, kGroupByColumnsFieldNumber = 4, @@ -21436,16 +22468,15 @@ class ComboAggregateRequest final : public: void clear_aggregates() ; ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* mutable_aggregates(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate >* - mutable_aggregates(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>* mutable_aggregates(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>& _internal_aggregates() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>* _internal_mutable_aggregates(); public: const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate& aggregates(int index) const; ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* add_aggregates(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate >& - aggregates() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>& aggregates() const; // repeated string group_by_columns = 4; int group_by_columns_size() const; private: @@ -21455,17 +22486,11 @@ class ComboAggregateRequest final : void clear_group_by_columns() ; const std::string& group_by_columns(int index) const; std::string* mutable_group_by_columns(int index); - void set_group_by_columns(int index, const std::string& value); - void set_group_by_columns(int index, std::string&& value); - void set_group_by_columns(int index, const char* value); - void set_group_by_columns(int index, const char* value, std::size_t size); - void set_group_by_columns(int index, absl::string_view value); + template + void set_group_by_columns(int index, Arg_&& value, Args_... args); std::string* add_group_by_columns(); - void add_group_by_columns(const std::string& value); - void add_group_by_columns(std::string&& value); - void add_group_by_columns(const char* value); - void add_group_by_columns(const char* value, std::size_t size); - void add_group_by_columns(absl::string_view value); + template + void add_group_by_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_columns() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_columns(); @@ -21517,12 +22542,15 @@ class ComboAggregateRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 3, 80, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ComboAggregateRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -21530,13 +22558,13 @@ class ComboAggregateRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ComboAggregateRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate > aggregates_; @@ -21548,23 +22576,21 @@ class ComboAggregateRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ColumnStatisticsRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) */ { +class ColumnStatisticsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) */ { public: inline ColumnStatisticsRequest() : ColumnStatisticsRequest(nullptr) {} - ~ColumnStatisticsRequest() override; - template - explicit PROTOBUF_CONSTEXPR ColumnStatisticsRequest(::google::protobuf::internal::ConstantInitialized); - - inline ColumnStatisticsRequest(const ColumnStatisticsRequest& from) - : ColumnStatisticsRequest(nullptr, from) {} - ColumnStatisticsRequest(ColumnStatisticsRequest&& from) noexcept - : ColumnStatisticsRequest() { - *this = ::std::move(from); - } - + ~ColumnStatisticsRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ColumnStatisticsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ColumnStatisticsRequest(const ColumnStatisticsRequest& from) : ColumnStatisticsRequest(nullptr, from) {} + inline ColumnStatisticsRequest(ColumnStatisticsRequest&& from) noexcept + : ColumnStatisticsRequest(nullptr, std::move(from)) {} inline ColumnStatisticsRequest& operator=(const ColumnStatisticsRequest& from) { CopyFrom(from); return *this; @@ -21572,9 +22598,9 @@ class ColumnStatisticsRequest final : inline ColumnStatisticsRequest& operator=(ColumnStatisticsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -21606,22 +22632,17 @@ class ColumnStatisticsRequest final : } static inline const ColumnStatisticsRequest* internal_default_instance() { return reinterpret_cast( - &_ColumnStatisticsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 121; - - friend void swap(ColumnStatisticsRequest& a, ColumnStatisticsRequest& b) { - a.Swap(&b); + &_ColumnStatisticsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 121; + friend void swap(ColumnStatisticsRequest& a, ColumnStatisticsRequest& b) { a.Swap(&b); } inline void Swap(ColumnStatisticsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -21635,52 +22656,69 @@ class ColumnStatisticsRequest final : // implements Message ---------------------------------------------- - ColumnStatisticsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ColumnStatisticsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ColumnStatisticsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ColumnStatisticsRequest& from) { - ColumnStatisticsRequest::MergeImpl(*this, from); - } + void MergeFrom(const ColumnStatisticsRequest& from) { ColumnStatisticsRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ColumnStatisticsRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest"; } + + protected: explicit ColumnStatisticsRequest(::google::protobuf::Arena* arena); ColumnStatisticsRequest(::google::protobuf::Arena* arena, const ColumnStatisticsRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ColumnStatisticsRequest(::google::protobuf::Arena* arena, ColumnStatisticsRequest&& from) noexcept + : ColumnStatisticsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kColumnNameFieldNumber = 3, kResultIdFieldNumber = 1, @@ -21747,12 +22785,15 @@ class ColumnStatisticsRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 2, 77, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ColumnStatisticsRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -21760,13 +22801,13 @@ class ColumnStatisticsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ColumnStatisticsRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr column_name_; @@ -21777,23 +22818,21 @@ class ColumnStatisticsRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AsOfJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) */ { +class AsOfJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) */ { public: inline AsOfJoinTablesRequest() : AsOfJoinTablesRequest(nullptr) {} - ~AsOfJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR AsOfJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline AsOfJoinTablesRequest(const AsOfJoinTablesRequest& from) - : AsOfJoinTablesRequest(nullptr, from) {} - AsOfJoinTablesRequest(AsOfJoinTablesRequest&& from) noexcept - : AsOfJoinTablesRequest() { - *this = ::std::move(from); - } - + ~AsOfJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AsOfJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AsOfJoinTablesRequest(const AsOfJoinTablesRequest& from) : AsOfJoinTablesRequest(nullptr, from) {} + inline AsOfJoinTablesRequest(AsOfJoinTablesRequest&& from) noexcept + : AsOfJoinTablesRequest(nullptr, std::move(from)) {} inline AsOfJoinTablesRequest& operator=(const AsOfJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -21801,9 +22840,9 @@ class AsOfJoinTablesRequest final : inline AsOfJoinTablesRequest& operator=(AsOfJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -21835,22 +22874,17 @@ class AsOfJoinTablesRequest final : } static inline const AsOfJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_AsOfJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 54; - - friend void swap(AsOfJoinTablesRequest& a, AsOfJoinTablesRequest& b) { - a.Swap(&b); + &_AsOfJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 54; + friend void swap(AsOfJoinTablesRequest& a, AsOfJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(AsOfJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -21864,50 +22898,67 @@ class AsOfJoinTablesRequest final : // implements Message ---------------------------------------------- - AsOfJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AsOfJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AsOfJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AsOfJoinTablesRequest& from) { - AsOfJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const AsOfJoinTablesRequest& from) { AsOfJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AsOfJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest"; } + + protected: explicit AsOfJoinTablesRequest(::google::protobuf::Arena* arena); AsOfJoinTablesRequest(::google::protobuf::Arena* arena, const AsOfJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AsOfJoinTablesRequest(::google::protobuf::Arena* arena, AsOfJoinTablesRequest&& from) noexcept + : AsOfJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using MatchRule = AsOfJoinTablesRequest_MatchRule; static constexpr MatchRule LESS_THAN_EQUAL = AsOfJoinTablesRequest_MatchRule_LESS_THAN_EQUAL; static constexpr MatchRule LESS_THAN = AsOfJoinTablesRequest_MatchRule_LESS_THAN; @@ -21931,7 +22982,6 @@ class AsOfJoinTablesRequest final : } // accessors ------------------------------------------------------- - enum : int { kColumnsToMatchFieldNumber = 4, kColumnsToAddFieldNumber = 5, @@ -21949,17 +22999,11 @@ class AsOfJoinTablesRequest final : void clear_columns_to_match() ; const std::string& columns_to_match(int index) const; std::string* mutable_columns_to_match(int index); - void set_columns_to_match(int index, const std::string& value); - void set_columns_to_match(int index, std::string&& value); - void set_columns_to_match(int index, const char* value); - void set_columns_to_match(int index, const char* value, std::size_t size); - void set_columns_to_match(int index, absl::string_view value); + template + void set_columns_to_match(int index, Arg_&& value, Args_... args); std::string* add_columns_to_match(); - void add_columns_to_match(const std::string& value); - void add_columns_to_match(std::string&& value); - void add_columns_to_match(const char* value); - void add_columns_to_match(const char* value, std::size_t size); - void add_columns_to_match(absl::string_view value); + template + void add_columns_to_match(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_match() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_match(); @@ -21977,17 +23021,11 @@ class AsOfJoinTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -22054,12 +23092,15 @@ class AsOfJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 3, 94, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AsOfJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -22067,13 +23108,13 @@ class AsOfJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AsOfJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField columns_to_match_; @@ -22086,23 +23127,21 @@ class AsOfJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class ApplyPreviewColumnsRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) */ { +class ApplyPreviewColumnsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) */ { public: inline ApplyPreviewColumnsRequest() : ApplyPreviewColumnsRequest(nullptr) {} - ~ApplyPreviewColumnsRequest() override; - template - explicit PROTOBUF_CONSTEXPR ApplyPreviewColumnsRequest(::google::protobuf::internal::ConstantInitialized); - - inline ApplyPreviewColumnsRequest(const ApplyPreviewColumnsRequest& from) - : ApplyPreviewColumnsRequest(nullptr, from) {} - ApplyPreviewColumnsRequest(ApplyPreviewColumnsRequest&& from) noexcept - : ApplyPreviewColumnsRequest() { - *this = ::std::move(from); - } - + ~ApplyPreviewColumnsRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR ApplyPreviewColumnsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline ApplyPreviewColumnsRequest(const ApplyPreviewColumnsRequest& from) : ApplyPreviewColumnsRequest(nullptr, from) {} + inline ApplyPreviewColumnsRequest(ApplyPreviewColumnsRequest&& from) noexcept + : ApplyPreviewColumnsRequest(nullptr, std::move(from)) {} inline ApplyPreviewColumnsRequest& operator=(const ApplyPreviewColumnsRequest& from) { CopyFrom(from); return *this; @@ -22110,9 +23149,9 @@ class ApplyPreviewColumnsRequest final : inline ApplyPreviewColumnsRequest& operator=(ApplyPreviewColumnsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -22144,22 +23183,17 @@ class ApplyPreviewColumnsRequest final : } static inline const ApplyPreviewColumnsRequest* internal_default_instance() { return reinterpret_cast( - &_ApplyPreviewColumnsRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - friend void swap(ApplyPreviewColumnsRequest& a, ApplyPreviewColumnsRequest& b) { - a.Swap(&b); + &_ApplyPreviewColumnsRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 3; + friend void swap(ApplyPreviewColumnsRequest& a, ApplyPreviewColumnsRequest& b) { a.Swap(&b); } inline void Swap(ApplyPreviewColumnsRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -22173,52 +23207,69 @@ class ApplyPreviewColumnsRequest final : // implements Message ---------------------------------------------- - ApplyPreviewColumnsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + ApplyPreviewColumnsRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const ApplyPreviewColumnsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const ApplyPreviewColumnsRequest& from) { - ApplyPreviewColumnsRequest::MergeImpl(*this, from); - } + void MergeFrom(const ApplyPreviewColumnsRequest& from) { ApplyPreviewColumnsRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(ApplyPreviewColumnsRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest"; } + + protected: explicit ApplyPreviewColumnsRequest(::google::protobuf::Arena* arena); ApplyPreviewColumnsRequest(::google::protobuf::Arena* arena, const ApplyPreviewColumnsRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + ApplyPreviewColumnsRequest(::google::protobuf::Arena* arena, ApplyPreviewColumnsRequest&& from) noexcept + : ApplyPreviewColumnsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kSourceIdFieldNumber = 1, kResultIdFieldNumber = 2, @@ -22256,12 +23307,15 @@ class ApplyPreviewColumnsRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_ApplyPreviewColumnsRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -22269,13 +23323,13 @@ class ApplyPreviewColumnsRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const ApplyPreviewColumnsRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; @@ -22284,23 +23338,21 @@ class ApplyPreviewColumnsRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AjRajTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) */ { +class AjRajTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) */ { public: inline AjRajTablesRequest() : AjRajTablesRequest(nullptr) {} - ~AjRajTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR AjRajTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline AjRajTablesRequest(const AjRajTablesRequest& from) - : AjRajTablesRequest(nullptr, from) {} - AjRajTablesRequest(AjRajTablesRequest&& from) noexcept - : AjRajTablesRequest() { - *this = ::std::move(from); - } - + ~AjRajTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AjRajTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AjRajTablesRequest(const AjRajTablesRequest& from) : AjRajTablesRequest(nullptr, from) {} + inline AjRajTablesRequest(AjRajTablesRequest&& from) noexcept + : AjRajTablesRequest(nullptr, std::move(from)) {} inline AjRajTablesRequest& operator=(const AjRajTablesRequest& from) { CopyFrom(from); return *this; @@ -22308,9 +23360,9 @@ class AjRajTablesRequest final : inline AjRajTablesRequest& operator=(AjRajTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -22342,22 +23394,17 @@ class AjRajTablesRequest final : } static inline const AjRajTablesRequest* internal_default_instance() { return reinterpret_cast( - &_AjRajTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 55; - - friend void swap(AjRajTablesRequest& a, AjRajTablesRequest& b) { - a.Swap(&b); + &_AjRajTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 55; + friend void swap(AjRajTablesRequest& a, AjRajTablesRequest& b) { a.Swap(&b); } inline void Swap(AjRajTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -22371,52 +23418,69 @@ class AjRajTablesRequest final : // implements Message ---------------------------------------------- - AjRajTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AjRajTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AjRajTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AjRajTablesRequest& from) { - AjRajTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const AjRajTablesRequest& from) { AjRajTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AjRajTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AjRajTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AjRajTablesRequest"; } + + protected: explicit AjRajTablesRequest(::google::protobuf::Arena* arena); AjRajTablesRequest(::google::protobuf::Arena* arena, const AjRajTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AjRajTablesRequest(::google::protobuf::Arena* arena, AjRajTablesRequest&& from) noexcept + : AjRajTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kExactMatchColumnsFieldNumber = 4, kColumnsToAddFieldNumber = 6, @@ -22434,17 +23498,11 @@ class AjRajTablesRequest final : void clear_exact_match_columns() ; const std::string& exact_match_columns(int index) const; std::string* mutable_exact_match_columns(int index); - void set_exact_match_columns(int index, const std::string& value); - void set_exact_match_columns(int index, std::string&& value); - void set_exact_match_columns(int index, const char* value); - void set_exact_match_columns(int index, const char* value, std::size_t size); - void set_exact_match_columns(int index, absl::string_view value); + template + void set_exact_match_columns(int index, Arg_&& value, Args_... args); std::string* add_exact_match_columns(); - void add_exact_match_columns(const std::string& value); - void add_exact_match_columns(std::string&& value); - void add_exact_match_columns(const char* value); - void add_exact_match_columns(const char* value, std::size_t size); - void add_exact_match_columns(absl::string_view value); + template + void add_exact_match_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& exact_match_columns() const; ::google::protobuf::RepeatedPtrField* mutable_exact_match_columns(); @@ -22462,17 +23520,11 @@ class AjRajTablesRequest final : void clear_columns_to_add() ; const std::string& columns_to_add(int index) const; std::string* mutable_columns_to_add(int index); - void set_columns_to_add(int index, const std::string& value); - void set_columns_to_add(int index, std::string&& value); - void set_columns_to_add(int index, const char* value); - void set_columns_to_add(int index, const char* value, std::size_t size); - void set_columns_to_add(int index, absl::string_view value); + template + void set_columns_to_add(int index, Arg_&& value, Args_... args); std::string* add_columns_to_add(); - void add_columns_to_add(const std::string& value); - void add_columns_to_add(std::string&& value); - void add_columns_to_add(const char* value); - void add_columns_to_add(const char* value, std::size_t size); - void add_columns_to_add(absl::string_view value); + template + void add_columns_to_add(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& columns_to_add() const; ::google::protobuf::RepeatedPtrField* mutable_columns_to_add(); @@ -22545,12 +23597,15 @@ class AjRajTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 3, 106, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AjRajTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -22558,13 +23613,13 @@ class AjRajTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AjRajTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField exact_match_columns_; @@ -22577,23 +23632,21 @@ class AjRajTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggSpec final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec) */ { +class AggSpec final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggSpec) */ { public: inline AggSpec() : AggSpec(nullptr) {} - ~AggSpec() override; - template - explicit PROTOBUF_CONSTEXPR AggSpec(::google::protobuf::internal::ConstantInitialized); - - inline AggSpec(const AggSpec& from) - : AggSpec(nullptr, from) {} - AggSpec(AggSpec&& from) noexcept - : AggSpec() { - *this = ::std::move(from); - } - + ~AggSpec() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggSpec( + ::google::protobuf::internal::ConstantInitialized); + + inline AggSpec(const AggSpec& from) : AggSpec(nullptr, from) {} + inline AggSpec(AggSpec&& from) noexcept + : AggSpec(nullptr, std::move(from)) {} inline AggSpec& operator=(const AggSpec& from) { CopyFrom(from); return *this; @@ -22601,9 +23654,9 @@ class AggSpec final : inline AggSpec& operator=(AggSpec&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -22659,25 +23712,19 @@ class AggSpec final : kVar = 23, TYPE_NOT_SET = 0, }; - static inline const AggSpec* internal_default_instance() { return reinterpret_cast( - &_AggSpec_default_instance_); - } - static constexpr int kIndexInFileMessages = - 85; - - friend void swap(AggSpec& a, AggSpec& b) { - a.Swap(&b); + &_AggSpec_default_instance_); } + static constexpr int kIndexInFileMessages = 85; + friend void swap(AggSpec& a, AggSpec& b) { a.Swap(&b); } inline void Swap(AggSpec* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -22691,50 +23738,67 @@ class AggSpec final : // implements Message ---------------------------------------------- - AggSpec* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggSpec* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggSpec& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggSpec& from) { - AggSpec::MergeImpl(*this, from); - } + void MergeFrom(const AggSpec& from) { AggSpec::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggSpec* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggSpec"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggSpec"; } + + protected: explicit AggSpec(::google::protobuf::Arena* arena); AggSpec(::google::protobuf::Arena* arena, const AggSpec& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggSpec(::google::protobuf::Arena* arena, AggSpec&& from) noexcept + : AggSpec(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using AggSpecApproximatePercentile = AggSpec_AggSpecApproximatePercentile; using AggSpecCountDistinct = AggSpec_AggSpecCountDistinct; using AggSpecDistinct = AggSpec_AggSpecDistinct; @@ -22760,7 +23824,6 @@ class AggSpec final : using AggSpecVar = AggSpec_AggSpecVar; // accessors ------------------------------------------------------- - enum : int { kAbsSumFieldNumber = 1, kApproximatePercentileFieldNumber = 2, @@ -23251,15 +24314,17 @@ class AggSpec final : void set_has_weighted_avg(); void set_has_weighted_sum(); void set_has_var(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 23, 23, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggSpec_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -23267,16 +24332,16 @@ class AggSpec final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggSpec& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* abs_sum_; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* approximate_percentile_; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* avg_; @@ -23303,28 +24368,25 @@ class AggSpec final : } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) { CopyFrom(from); return *this; @@ -23332,9 +24394,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -23388,25 +24450,19 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : kRollingFormula = 21, TYPE_NOT_SET = 0, }; - static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_); - } - static constexpr int kIndexInFileMessages = - 37; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_); } + static constexpr int kIndexInFileMessages = 37; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& a, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -23420,50 +24476,67 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using UpdateByCumulativeSum = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum; using UpdateByCumulativeMin = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin; using UpdateByCumulativeMax = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax; @@ -23487,7 +24560,6 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : using UpdateByRollingFormula = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula; // accessors ------------------------------------------------------- - enum : int { kSumFieldNumber = 1, kMinFieldNumber = 2, @@ -23936,15 +25008,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : void set_has_rolling_std(); void set_has_rolling_wavg(); void set_has_rolling_formula(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 21, 21, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -23952,16 +25026,16 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* sum_; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* min_; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* max_; @@ -23986,28 +25060,25 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec final : } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class MultiJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) */ { +class MultiJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) */ { public: inline MultiJoinTablesRequest() : MultiJoinTablesRequest(nullptr) {} - ~MultiJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR MultiJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline MultiJoinTablesRequest(const MultiJoinTablesRequest& from) - : MultiJoinTablesRequest(nullptr, from) {} - MultiJoinTablesRequest(MultiJoinTablesRequest&& from) noexcept - : MultiJoinTablesRequest() { - *this = ::std::move(from); - } - + ~MultiJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR MultiJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline MultiJoinTablesRequest(const MultiJoinTablesRequest& from) : MultiJoinTablesRequest(nullptr, from) {} + inline MultiJoinTablesRequest(MultiJoinTablesRequest&& from) noexcept + : MultiJoinTablesRequest(nullptr, std::move(from)) {} inline MultiJoinTablesRequest& operator=(const MultiJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -24015,9 +25086,9 @@ class MultiJoinTablesRequest final : inline MultiJoinTablesRequest& operator=(MultiJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -24049,22 +25120,17 @@ class MultiJoinTablesRequest final : } static inline const MultiJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_MultiJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 57; - - friend void swap(MultiJoinTablesRequest& a, MultiJoinTablesRequest& b) { - a.Swap(&b); + &_MultiJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 57; + friend void swap(MultiJoinTablesRequest& a, MultiJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(MultiJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -24078,52 +25144,69 @@ class MultiJoinTablesRequest final : // implements Message ---------------------------------------------- - MultiJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + MultiJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const MultiJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const MultiJoinTablesRequest& from) { - MultiJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const MultiJoinTablesRequest& from) { MultiJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(MultiJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest"; } + + protected: explicit MultiJoinTablesRequest(::google::protobuf::Arena* arena); MultiJoinTablesRequest(::google::protobuf::Arena* arena, const MultiJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + MultiJoinTablesRequest(::google::protobuf::Arena* arena, MultiJoinTablesRequest&& from) noexcept + : MultiJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMultiJoinInputsFieldNumber = 2, kResultIdFieldNumber = 1, @@ -24136,16 +25219,15 @@ class MultiJoinTablesRequest final : public: void clear_multi_join_inputs() ; ::io::deephaven::proto::backplane::grpc::MultiJoinInput* mutable_multi_join_inputs(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::MultiJoinInput >* - mutable_multi_join_inputs(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>* mutable_multi_join_inputs(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>& _internal_multi_join_inputs() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>* _internal_mutable_multi_join_inputs(); public: const ::io::deephaven::proto::backplane::grpc::MultiJoinInput& multi_join_inputs(int index) const; ::io::deephaven::proto::backplane::grpc::MultiJoinInput* add_multi_join_inputs(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::MultiJoinInput >& - multi_join_inputs() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>& multi_join_inputs() const; // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; bool has_result_id() const; void clear_result_id() ; @@ -24164,12 +25246,15 @@ class MultiJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 2, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_MultiJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -24177,13 +25262,13 @@ class MultiJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const MultiJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::MultiJoinInput > multi_join_inputs_; @@ -24192,23 +25277,21 @@ class MultiJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AndCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AndCondition) */ { +class AndCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AndCondition) */ { public: inline AndCondition() : AndCondition(nullptr) {} - ~AndCondition() override; - template - explicit PROTOBUF_CONSTEXPR AndCondition(::google::protobuf::internal::ConstantInitialized); - - inline AndCondition(const AndCondition& from) - : AndCondition(nullptr, from) {} - AndCondition(AndCondition&& from) noexcept - : AndCondition() { - *this = ::std::move(from); - } - + ~AndCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AndCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline AndCondition(const AndCondition& from) : AndCondition(nullptr, from) {} + inline AndCondition(AndCondition&& from) noexcept + : AndCondition(nullptr, std::move(from)) {} inline AndCondition& operator=(const AndCondition& from) { CopyFrom(from); return *this; @@ -24216,9 +25299,9 @@ class AndCondition final : inline AndCondition& operator=(AndCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -24250,22 +25333,17 @@ class AndCondition final : } static inline const AndCondition* internal_default_instance() { return reinterpret_cast( - &_AndCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 101; - - friend void swap(AndCondition& a, AndCondition& b) { - a.Swap(&b); + &_AndCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 101; + friend void swap(AndCondition& a, AndCondition& b) { a.Swap(&b); } inline void Swap(AndCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -24279,52 +25357,69 @@ class AndCondition final : // implements Message ---------------------------------------------- - AndCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AndCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AndCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AndCondition& from) { - AndCondition::MergeImpl(*this, from); - } + void MergeFrom(const AndCondition& from) { AndCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AndCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AndCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AndCondition"; } + + protected: explicit AndCondition(::google::protobuf::Arena* arena); AndCondition(::google::protobuf::Arena* arena, const AndCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AndCondition(::google::protobuf::Arena* arena, AndCondition&& from) noexcept + : AndCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFiltersFieldNumber = 1, }; @@ -24336,25 +25431,27 @@ class AndCondition final : public: void clear_filters() ; ::io::deephaven::proto::backplane::grpc::Condition* mutable_filters(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >* - mutable_filters(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* mutable_filters(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& _internal_filters() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* _internal_mutable_filters(); public: const ::io::deephaven::proto::backplane::grpc::Condition& filters(int index) const; ::io::deephaven::proto::backplane::grpc::Condition* add_filters(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >& - filters() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& filters() const; // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AndCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AndCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -24362,36 +25459,34 @@ class AndCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AndCondition& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition > filters_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Condition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Condition) */ { +class Condition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Condition) */ { public: inline Condition() : Condition(nullptr) {} - ~Condition() override; - template - explicit PROTOBUF_CONSTEXPR Condition(::google::protobuf::internal::ConstantInitialized); - - inline Condition(const Condition& from) - : Condition(nullptr, from) {} - Condition(Condition&& from) noexcept - : Condition() { - *this = ::std::move(from); - } - + ~Condition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Condition( + ::google::protobuf::internal::ConstantInitialized); + + inline Condition(const Condition& from) : Condition(nullptr, from) {} + inline Condition(Condition&& from) noexcept + : Condition(nullptr, std::move(from)) {} inline Condition& operator=(const Condition& from) { CopyFrom(from); return *this; @@ -24399,9 +25494,9 @@ class Condition final : inline Condition& operator=(Condition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -24444,25 +25539,19 @@ class Condition final : kSearch = 10, DATA_NOT_SET = 0, }; - static inline const Condition* internal_default_instance() { return reinterpret_cast( - &_Condition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 100; - - friend void swap(Condition& a, Condition& b) { - a.Swap(&b); + &_Condition_default_instance_); } + static constexpr int kIndexInFileMessages = 100; + friend void swap(Condition& a, Condition& b) { a.Swap(&b); } inline void Swap(Condition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -24476,52 +25565,69 @@ class Condition final : // implements Message ---------------------------------------------- - Condition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Condition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Condition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Condition& from) { - Condition::MergeImpl(*this, from); - } + void MergeFrom(const Condition& from) { Condition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Condition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Condition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Condition"; } + + protected: explicit Condition(::google::protobuf::Arena* arena); Condition(::google::protobuf::Arena* arena, const Condition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Condition(::google::protobuf::Arena* arena, Condition&& from) noexcept + : Condition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAndFieldNumber = 1, kOrFieldNumber = 2, @@ -24739,15 +25845,17 @@ class Condition final : void set_has_matches(); void set_has_contains(); void set_has_search(); - inline bool has_data() const; inline void clear_has_data(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 10, 10, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Condition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -24755,16 +25863,16 @@ class Condition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Condition& from_msg); union DataUnion { constexpr DataUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::AndCondition* and__; ::io::deephaven::proto::backplane::grpc::OrCondition* or__; ::io::deephaven::proto::backplane::grpc::NotCondition* not__; @@ -24778,28 +25886,25 @@ class Condition final : } data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class NotCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.NotCondition) */ { +class NotCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.NotCondition) */ { public: inline NotCondition() : NotCondition(nullptr) {} - ~NotCondition() override; - template - explicit PROTOBUF_CONSTEXPR NotCondition(::google::protobuf::internal::ConstantInitialized); - - inline NotCondition(const NotCondition& from) - : NotCondition(nullptr, from) {} - NotCondition(NotCondition&& from) noexcept - : NotCondition() { - *this = ::std::move(from); - } - + ~NotCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR NotCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline NotCondition(const NotCondition& from) : NotCondition(nullptr, from) {} + inline NotCondition(NotCondition&& from) noexcept + : NotCondition(nullptr, std::move(from)) {} inline NotCondition& operator=(const NotCondition& from) { CopyFrom(from); return *this; @@ -24807,9 +25912,9 @@ class NotCondition final : inline NotCondition& operator=(NotCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -24841,22 +25946,17 @@ class NotCondition final : } static inline const NotCondition* internal_default_instance() { return reinterpret_cast( - &_NotCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 103; - - friend void swap(NotCondition& a, NotCondition& b) { - a.Swap(&b); + &_NotCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 103; + friend void swap(NotCondition& a, NotCondition& b) { a.Swap(&b); } inline void Swap(NotCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -24870,52 +25970,69 @@ class NotCondition final : // implements Message ---------------------------------------------- - NotCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + NotCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const NotCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const NotCondition& from) { - NotCondition::MergeImpl(*this, from); - } + void MergeFrom(const NotCondition& from) { NotCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(NotCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.NotCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.NotCondition"; } + + protected: explicit NotCondition(::google::protobuf::Arena* arena); NotCondition(::google::protobuf::Arena* arena, const NotCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + NotCondition(::google::protobuf::Arena* arena, NotCondition&& from) noexcept + : NotCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFilterFieldNumber = 1, }; @@ -24937,12 +26054,15 @@ class NotCondition final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.NotCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_NotCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -24950,13 +26070,13 @@ class NotCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const NotCondition& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::io::deephaven::proto::backplane::grpc::Condition* filter_; @@ -24964,23 +26084,21 @@ class NotCondition final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class OrCondition final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.OrCondition) */ { +class OrCondition final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.OrCondition) */ { public: inline OrCondition() : OrCondition(nullptr) {} - ~OrCondition() override; - template - explicit PROTOBUF_CONSTEXPR OrCondition(::google::protobuf::internal::ConstantInitialized); - - inline OrCondition(const OrCondition& from) - : OrCondition(nullptr, from) {} - OrCondition(OrCondition&& from) noexcept - : OrCondition() { - *this = ::std::move(from); - } - + ~OrCondition() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR OrCondition( + ::google::protobuf::internal::ConstantInitialized); + + inline OrCondition(const OrCondition& from) : OrCondition(nullptr, from) {} + inline OrCondition(OrCondition&& from) noexcept + : OrCondition(nullptr, std::move(from)) {} inline OrCondition& operator=(const OrCondition& from) { CopyFrom(from); return *this; @@ -24988,9 +26106,9 @@ class OrCondition final : inline OrCondition& operator=(OrCondition&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -25022,22 +26140,17 @@ class OrCondition final : } static inline const OrCondition* internal_default_instance() { return reinterpret_cast( - &_OrCondition_default_instance_); - } - static constexpr int kIndexInFileMessages = - 102; - - friend void swap(OrCondition& a, OrCondition& b) { - a.Swap(&b); + &_OrCondition_default_instance_); } + static constexpr int kIndexInFileMessages = 102; + friend void swap(OrCondition& a, OrCondition& b) { a.Swap(&b); } inline void Swap(OrCondition* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -25051,52 +26164,69 @@ class OrCondition final : // implements Message ---------------------------------------------- - OrCondition* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + OrCondition* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const OrCondition& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const OrCondition& from) { - OrCondition::MergeImpl(*this, from); - } + void MergeFrom(const OrCondition& from) { OrCondition::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(OrCondition* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.OrCondition"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.OrCondition"; } + + protected: explicit OrCondition(::google::protobuf::Arena* arena); OrCondition(::google::protobuf::Arena* arena, const OrCondition& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + OrCondition(::google::protobuf::Arena* arena, OrCondition&& from) noexcept + : OrCondition(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFiltersFieldNumber = 1, }; @@ -25108,25 +26238,27 @@ class OrCondition final : public: void clear_filters() ; ::io::deephaven::proto::backplane::grpc::Condition* mutable_filters(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >* - mutable_filters(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* mutable_filters(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& _internal_filters() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* _internal_mutable_filters(); public: const ::io::deephaven::proto::backplane::grpc::Condition& filters(int index) const; ::io::deephaven::proto::backplane::grpc::Condition* add_filters(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >& - filters() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& filters() const; // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.OrCondition) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_OrCondition_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -25134,36 +26266,34 @@ class OrCondition final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const OrCondition& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition > filters_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Aggregation_AggregationColumns final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) */ { +class Aggregation_AggregationColumns final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) */ { public: inline Aggregation_AggregationColumns() : Aggregation_AggregationColumns(nullptr) {} - ~Aggregation_AggregationColumns() override; - template - explicit PROTOBUF_CONSTEXPR Aggregation_AggregationColumns(::google::protobuf::internal::ConstantInitialized); - - inline Aggregation_AggregationColumns(const Aggregation_AggregationColumns& from) - : Aggregation_AggregationColumns(nullptr, from) {} - Aggregation_AggregationColumns(Aggregation_AggregationColumns&& from) noexcept - : Aggregation_AggregationColumns() { - *this = ::std::move(from); - } - + ~Aggregation_AggregationColumns() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Aggregation_AggregationColumns( + ::google::protobuf::internal::ConstantInitialized); + + inline Aggregation_AggregationColumns(const Aggregation_AggregationColumns& from) : Aggregation_AggregationColumns(nullptr, from) {} + inline Aggregation_AggregationColumns(Aggregation_AggregationColumns&& from) noexcept + : Aggregation_AggregationColumns(nullptr, std::move(from)) {} inline Aggregation_AggregationColumns& operator=(const Aggregation_AggregationColumns& from) { CopyFrom(from); return *this; @@ -25171,9 +26301,9 @@ class Aggregation_AggregationColumns final : inline Aggregation_AggregationColumns& operator=(Aggregation_AggregationColumns&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -25205,22 +26335,17 @@ class Aggregation_AggregationColumns final : } static inline const Aggregation_AggregationColumns* internal_default_instance() { return reinterpret_cast( - &_Aggregation_AggregationColumns_default_instance_); - } - static constexpr int kIndexInFileMessages = - 87; - - friend void swap(Aggregation_AggregationColumns& a, Aggregation_AggregationColumns& b) { - a.Swap(&b); + &_Aggregation_AggregationColumns_default_instance_); } + static constexpr int kIndexInFileMessages = 87; + friend void swap(Aggregation_AggregationColumns& a, Aggregation_AggregationColumns& b) { a.Swap(&b); } inline void Swap(Aggregation_AggregationColumns* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -25234,52 +26359,69 @@ class Aggregation_AggregationColumns final : // implements Message ---------------------------------------------- - Aggregation_AggregationColumns* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Aggregation_AggregationColumns* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Aggregation_AggregationColumns& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Aggregation_AggregationColumns& from) { - Aggregation_AggregationColumns::MergeImpl(*this, from); - } + void MergeFrom(const Aggregation_AggregationColumns& from) { Aggregation_AggregationColumns::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Aggregation_AggregationColumns* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns"; } + + protected: explicit Aggregation_AggregationColumns(::google::protobuf::Arena* arena); Aggregation_AggregationColumns(::google::protobuf::Arena* arena, const Aggregation_AggregationColumns& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Aggregation_AggregationColumns(::google::protobuf::Arena* arena, Aggregation_AggregationColumns&& from) noexcept + : Aggregation_AggregationColumns(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kMatchPairsFieldNumber = 2, kSpecFieldNumber = 1, @@ -25293,17 +26435,11 @@ class Aggregation_AggregationColumns final : void clear_match_pairs() ; const std::string& match_pairs(int index) const; std::string* mutable_match_pairs(int index); - void set_match_pairs(int index, const std::string& value); - void set_match_pairs(int index, std::string&& value); - void set_match_pairs(int index, const char* value); - void set_match_pairs(int index, const char* value, std::size_t size); - void set_match_pairs(int index, absl::string_view value); + template + void set_match_pairs(int index, Arg_&& value, Args_... args); std::string* add_match_pairs(); - void add_match_pairs(const std::string& value); - void add_match_pairs(std::string&& value); - void add_match_pairs(const char* value); - void add_match_pairs(const char* value, std::size_t size); - void add_match_pairs(absl::string_view value); + template + void add_match_pairs(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& match_pairs() const; ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); @@ -25330,12 +26466,15 @@ class Aggregation_AggregationColumns final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 84, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Aggregation_AggregationColumns_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -25343,13 +26482,13 @@ class Aggregation_AggregationColumns final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Aggregation_AggregationColumns& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField match_pairs_; @@ -25358,23 +26497,21 @@ class Aggregation_AggregationColumns final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggregateAllRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggregateAllRequest) */ { +class AggregateAllRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggregateAllRequest) */ { public: inline AggregateAllRequest() : AggregateAllRequest(nullptr) {} - ~AggregateAllRequest() override; - template - explicit PROTOBUF_CONSTEXPR AggregateAllRequest(::google::protobuf::internal::ConstantInitialized); - - inline AggregateAllRequest(const AggregateAllRequest& from) - : AggregateAllRequest(nullptr, from) {} - AggregateAllRequest(AggregateAllRequest&& from) noexcept - : AggregateAllRequest() { - *this = ::std::move(from); - } - + ~AggregateAllRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggregateAllRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AggregateAllRequest(const AggregateAllRequest& from) : AggregateAllRequest(nullptr, from) {} + inline AggregateAllRequest(AggregateAllRequest&& from) noexcept + : AggregateAllRequest(nullptr, std::move(from)) {} inline AggregateAllRequest& operator=(const AggregateAllRequest& from) { CopyFrom(from); return *this; @@ -25382,9 +26519,9 @@ class AggregateAllRequest final : inline AggregateAllRequest& operator=(AggregateAllRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -25416,22 +26553,17 @@ class AggregateAllRequest final : } static inline const AggregateAllRequest* internal_default_instance() { return reinterpret_cast( - &_AggregateAllRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 61; - - friend void swap(AggregateAllRequest& a, AggregateAllRequest& b) { - a.Swap(&b); + &_AggregateAllRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 61; + friend void swap(AggregateAllRequest& a, AggregateAllRequest& b) { a.Swap(&b); } inline void Swap(AggregateAllRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -25445,52 +26577,69 @@ class AggregateAllRequest final : // implements Message ---------------------------------------------- - AggregateAllRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggregateAllRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggregateAllRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggregateAllRequest& from) { - AggregateAllRequest::MergeImpl(*this, from); - } + void MergeFrom(const AggregateAllRequest& from) { AggregateAllRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggregateAllRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggregateAllRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggregateAllRequest"; } + + protected: explicit AggregateAllRequest(::google::protobuf::Arena* arena); AggregateAllRequest(::google::protobuf::Arena* arena, const AggregateAllRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggregateAllRequest(::google::protobuf::Arena* arena, AggregateAllRequest&& from) noexcept + : AggregateAllRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kGroupByColumnsFieldNumber = 4, kResultIdFieldNumber = 1, @@ -25506,17 +26655,11 @@ class AggregateAllRequest final : void clear_group_by_columns() ; const std::string& group_by_columns(int index) const; std::string* mutable_group_by_columns(int index); - void set_group_by_columns(int index, const std::string& value); - void set_group_by_columns(int index, std::string&& value); - void set_group_by_columns(int index, const char* value); - void set_group_by_columns(int index, const char* value, std::size_t size); - void set_group_by_columns(int index, absl::string_view value); + template + void set_group_by_columns(int index, Arg_&& value, Args_... args); std::string* add_group_by_columns(); - void add_group_by_columns(const std::string& value); - void add_group_by_columns(std::string&& value); - void add_group_by_columns(const char* value); - void add_group_by_columns(const char* value, std::size_t size); - void add_group_by_columns(absl::string_view value); + template + void add_group_by_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_columns() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_columns(); @@ -25573,12 +26716,15 @@ class AggregateAllRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggregateAllRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 3, 78, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggregateAllRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -25586,13 +26732,13 @@ class AggregateAllRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggregateAllRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField group_by_columns_; @@ -25603,23 +26749,21 @@ class AggregateAllRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation_UpdateByColumn final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) */ { +class UpdateByRequest_UpdateByOperation_UpdateByColumn final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) */ { public: inline UpdateByRequest_UpdateByOperation_UpdateByColumn() : UpdateByRequest_UpdateByOperation_UpdateByColumn(nullptr) {} - ~UpdateByRequest_UpdateByOperation_UpdateByColumn() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation_UpdateByColumn(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) - : UpdateByRequest_UpdateByOperation_UpdateByColumn(nullptr, from) {} - UpdateByRequest_UpdateByOperation_UpdateByColumn(UpdateByRequest_UpdateByOperation_UpdateByColumn&& from) noexcept - : UpdateByRequest_UpdateByOperation_UpdateByColumn() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation_UpdateByColumn() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation_UpdateByColumn(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) : UpdateByRequest_UpdateByOperation_UpdateByColumn(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation_UpdateByColumn(UpdateByRequest_UpdateByOperation_UpdateByColumn&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation_UpdateByColumn& operator=(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) { CopyFrom(from); return *this; @@ -25627,9 +26771,9 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : inline UpdateByRequest_UpdateByOperation_UpdateByColumn& operator=(UpdateByRequest_UpdateByOperation_UpdateByColumn&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -25661,22 +26805,17 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : } static inline const UpdateByRequest_UpdateByOperation_UpdateByColumn* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_); - } - static constexpr int kIndexInFileMessages = - 38; - - friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn& a, UpdateByRequest_UpdateByOperation_UpdateByColumn& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_); } + static constexpr int kIndexInFileMessages = 38; + friend void swap(UpdateByRequest_UpdateByOperation_UpdateByColumn& a, UpdateByRequest_UpdateByOperation_UpdateByColumn& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation_UpdateByColumn* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -25690,54 +26829,70 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation_UpdateByColumn* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation_UpdateByColumn* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) { - UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) { UpdateByRequest_UpdateByOperation_UpdateByColumn::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn"; } + + protected: explicit UpdateByRequest_UpdateByOperation_UpdateByColumn(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation_UpdateByColumn(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation_UpdateByColumn& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation_UpdateByColumn(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation_UpdateByColumn&& from) noexcept + : UpdateByRequest_UpdateByOperation_UpdateByColumn(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using UpdateBySpec = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec; // accessors ------------------------------------------------------- - enum : int { kMatchPairsFieldNumber = 2, kSpecFieldNumber = 1, @@ -25751,17 +26906,11 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : void clear_match_pairs() ; const std::string& match_pairs(int index) const; std::string* mutable_match_pairs(int index); - void set_match_pairs(int index, const std::string& value); - void set_match_pairs(int index, std::string&& value); - void set_match_pairs(int index, const char* value); - void set_match_pairs(int index, const char* value, std::size_t size); - void set_match_pairs(int index, absl::string_view value); + template + void set_match_pairs(int index, Arg_&& value, Args_... args); std::string* add_match_pairs(); - void add_match_pairs(const std::string& value); - void add_match_pairs(std::string&& value); - void add_match_pairs(const char* value); - void add_match_pairs(const char* value, std::size_t size); - void add_match_pairs(absl::string_view value); + template + void add_match_pairs(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& match_pairs() const; ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); @@ -25788,12 +26937,15 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 102, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -25801,13 +26953,13 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation_UpdateByColumn& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField match_pairs_; @@ -25816,23 +26968,21 @@ class UpdateByRequest_UpdateByOperation_UpdateByColumn final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class FilterTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FilterTableRequest) */ { +class FilterTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.FilterTableRequest) */ { public: inline FilterTableRequest() : FilterTableRequest(nullptr) {} - ~FilterTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR FilterTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline FilterTableRequest(const FilterTableRequest& from) - : FilterTableRequest(nullptr, from) {} - FilterTableRequest(FilterTableRequest&& from) noexcept - : FilterTableRequest() { - *this = ::std::move(from); - } - + ~FilterTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR FilterTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline FilterTableRequest(const FilterTableRequest& from) : FilterTableRequest(nullptr, from) {} + inline FilterTableRequest(FilterTableRequest&& from) noexcept + : FilterTableRequest(nullptr, std::move(from)) {} inline FilterTableRequest& operator=(const FilterTableRequest& from) { CopyFrom(from); return *this; @@ -25840,9 +26990,9 @@ class FilterTableRequest final : inline FilterTableRequest& operator=(FilterTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -25874,22 +27024,17 @@ class FilterTableRequest final : } static inline const FilterTableRequest* internal_default_instance() { return reinterpret_cast( - &_FilterTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 94; - - friend void swap(FilterTableRequest& a, FilterTableRequest& b) { - a.Swap(&b); + &_FilterTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 94; + friend void swap(FilterTableRequest& a, FilterTableRequest& b) { a.Swap(&b); } inline void Swap(FilterTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -25903,52 +27048,69 @@ class FilterTableRequest final : // implements Message ---------------------------------------------- - FilterTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + FilterTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const FilterTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const FilterTableRequest& from) { - FilterTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const FilterTableRequest& from) { FilterTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(FilterTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.FilterTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.FilterTableRequest"; } + + protected: explicit FilterTableRequest(::google::protobuf::Arena* arena); FilterTableRequest(::google::protobuf::Arena* arena, const FilterTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + FilterTableRequest(::google::protobuf::Arena* arena, FilterTableRequest&& from) noexcept + : FilterTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kFiltersFieldNumber = 3, kResultIdFieldNumber = 1, @@ -25962,16 +27124,15 @@ class FilterTableRequest final : public: void clear_filters() ; ::io::deephaven::proto::backplane::grpc::Condition* mutable_filters(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >* - mutable_filters(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* mutable_filters(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& _internal_filters() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* _internal_mutable_filters(); public: const ::io::deephaven::proto::backplane::grpc::Condition& filters(int index) const; ::io::deephaven::proto::backplane::grpc::Condition* add_filters(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition >& - filters() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& filters() const; // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; bool has_result_id() const; void clear_result_id() ; @@ -26005,12 +27166,15 @@ class FilterTableRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.FilterTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 3, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_FilterTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -26018,13 +27182,13 @@ class FilterTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const FilterTableRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Condition > filters_; @@ -26034,23 +27198,21 @@ class FilterTableRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class Aggregation final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation) */ { +class Aggregation final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Aggregation) */ { public: inline Aggregation() : Aggregation(nullptr) {} - ~Aggregation() override; - template - explicit PROTOBUF_CONSTEXPR Aggregation(::google::protobuf::internal::ConstantInitialized); - - inline Aggregation(const Aggregation& from) - : Aggregation(nullptr, from) {} - Aggregation(Aggregation&& from) noexcept - : Aggregation() { - *this = ::std::move(from); - } - + ~Aggregation() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Aggregation( + ::google::protobuf::internal::ConstantInitialized); + + inline Aggregation(const Aggregation& from) : Aggregation(nullptr, from) {} + inline Aggregation(Aggregation&& from) noexcept + : Aggregation(nullptr, std::move(from)) {} inline Aggregation& operator=(const Aggregation& from) { CopyFrom(from); return *this; @@ -26058,9 +27220,9 @@ class Aggregation final : inline Aggregation& operator=(Aggregation&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -26098,25 +27260,19 @@ class Aggregation final : kPartition = 5, TYPE_NOT_SET = 0, }; - static inline const Aggregation* internal_default_instance() { return reinterpret_cast( - &_Aggregation_default_instance_); - } - static constexpr int kIndexInFileMessages = - 91; - - friend void swap(Aggregation& a, Aggregation& b) { - a.Swap(&b); + &_Aggregation_default_instance_); } + static constexpr int kIndexInFileMessages = 91; + friend void swap(Aggregation& a, Aggregation& b) { a.Swap(&b); } inline void Swap(Aggregation* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -26130,57 +27286,73 @@ class Aggregation final : // implements Message ---------------------------------------------- - Aggregation* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Aggregation* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Aggregation& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Aggregation& from) { - Aggregation::MergeImpl(*this, from); - } + void MergeFrom(const Aggregation& from) { Aggregation::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Aggregation* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Aggregation"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Aggregation"; } + + protected: explicit Aggregation(::google::protobuf::Arena* arena); Aggregation(::google::protobuf::Arena* arena, const Aggregation& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Aggregation(::google::protobuf::Arena* arena, Aggregation&& from) noexcept + : Aggregation(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using AggregationColumns = Aggregation_AggregationColumns; using AggregationCount = Aggregation_AggregationCount; using AggregationRowKey = Aggregation_AggregationRowKey; using AggregationPartition = Aggregation_AggregationPartition; // accessors ------------------------------------------------------- - enum : int { kColumnsFieldNumber = 1, kCountFieldNumber = 2, @@ -26293,15 +27465,17 @@ class Aggregation final : void set_has_first_row_key(); void set_has_last_row_key(); void set_has_partition(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 5, 5, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Aggregation_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -26309,16 +27483,16 @@ class Aggregation final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Aggregation& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* columns_; ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* count_; ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* first_row_key_; @@ -26327,28 +27501,25 @@ class Aggregation final : } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest_UpdateByOperation final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) */ { +class UpdateByRequest_UpdateByOperation final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) */ { public: inline UpdateByRequest_UpdateByOperation() : UpdateByRequest_UpdateByOperation(nullptr) {} - ~UpdateByRequest_UpdateByOperation() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest_UpdateByOperation(const UpdateByRequest_UpdateByOperation& from) - : UpdateByRequest_UpdateByOperation(nullptr, from) {} - UpdateByRequest_UpdateByOperation(UpdateByRequest_UpdateByOperation&& from) noexcept - : UpdateByRequest_UpdateByOperation() { - *this = ::std::move(from); - } - + ~UpdateByRequest_UpdateByOperation() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest_UpdateByOperation(const UpdateByRequest_UpdateByOperation& from) : UpdateByRequest_UpdateByOperation(nullptr, from) {} + inline UpdateByRequest_UpdateByOperation(UpdateByRequest_UpdateByOperation&& from) noexcept + : UpdateByRequest_UpdateByOperation(nullptr, std::move(from)) {} inline UpdateByRequest_UpdateByOperation& operator=(const UpdateByRequest_UpdateByOperation& from) { CopyFrom(from); return *this; @@ -26356,9 +27527,9 @@ class UpdateByRequest_UpdateByOperation final : inline UpdateByRequest_UpdateByOperation& operator=(UpdateByRequest_UpdateByOperation&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -26392,25 +27563,19 @@ class UpdateByRequest_UpdateByOperation final : kColumn = 1, TYPE_NOT_SET = 0, }; - static inline const UpdateByRequest_UpdateByOperation* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_UpdateByOperation_default_instance_); - } - static constexpr int kIndexInFileMessages = - 39; - - friend void swap(UpdateByRequest_UpdateByOperation& a, UpdateByRequest_UpdateByOperation& b) { - a.Swap(&b); + &_UpdateByRequest_UpdateByOperation_default_instance_); } + static constexpr int kIndexInFileMessages = 39; + friend void swap(UpdateByRequest_UpdateByOperation& a, UpdateByRequest_UpdateByOperation& b) { a.Swap(&b); } inline void Swap(UpdateByRequest_UpdateByOperation* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -26424,54 +27589,70 @@ class UpdateByRequest_UpdateByOperation final : // implements Message ---------------------------------------------- - UpdateByRequest_UpdateByOperation* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest_UpdateByOperation* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest_UpdateByOperation& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest_UpdateByOperation& from) { - UpdateByRequest_UpdateByOperation::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest_UpdateByOperation& from) { UpdateByRequest_UpdateByOperation::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest_UpdateByOperation* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation"; } + + protected: explicit UpdateByRequest_UpdateByOperation(::google::protobuf::Arena* arena); UpdateByRequest_UpdateByOperation(::google::protobuf::Arena* arena, const UpdateByRequest_UpdateByOperation& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest_UpdateByOperation(::google::protobuf::Arena* arena, UpdateByRequest_UpdateByOperation&& from) noexcept + : UpdateByRequest_UpdateByOperation(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using UpdateByColumn = UpdateByRequest_UpdateByOperation_UpdateByColumn; // accessors ------------------------------------------------------- - enum : int { kColumnFieldNumber = 1, }; @@ -26500,15 +27681,17 @@ class UpdateByRequest_UpdateByOperation final : private: class _Internal; void set_has_column(); - inline bool has_type() const; inline void clear_has_type(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_UpdateByOperation_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -26516,42 +27699,39 @@ class UpdateByRequest_UpdateByOperation final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest_UpdateByOperation& from_msg); union TypeUnion { constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* column_; } type_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class RangeJoinTablesRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) */ { +class RangeJoinTablesRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) */ { public: inline RangeJoinTablesRequest() : RangeJoinTablesRequest(nullptr) {} - ~RangeJoinTablesRequest() override; - template - explicit PROTOBUF_CONSTEXPR RangeJoinTablesRequest(::google::protobuf::internal::ConstantInitialized); - - inline RangeJoinTablesRequest(const RangeJoinTablesRequest& from) - : RangeJoinTablesRequest(nullptr, from) {} - RangeJoinTablesRequest(RangeJoinTablesRequest&& from) noexcept - : RangeJoinTablesRequest() { - *this = ::std::move(from); - } - + ~RangeJoinTablesRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR RangeJoinTablesRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline RangeJoinTablesRequest(const RangeJoinTablesRequest& from) : RangeJoinTablesRequest(nullptr, from) {} + inline RangeJoinTablesRequest(RangeJoinTablesRequest&& from) noexcept + : RangeJoinTablesRequest(nullptr, std::move(from)) {} inline RangeJoinTablesRequest& operator=(const RangeJoinTablesRequest& from) { CopyFrom(from); return *this; @@ -26559,9 +27739,9 @@ class RangeJoinTablesRequest final : inline RangeJoinTablesRequest& operator=(RangeJoinTablesRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -26593,22 +27773,17 @@ class RangeJoinTablesRequest final : } static inline const RangeJoinTablesRequest* internal_default_instance() { return reinterpret_cast( - &_RangeJoinTablesRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 58; - - friend void swap(RangeJoinTablesRequest& a, RangeJoinTablesRequest& b) { - a.Swap(&b); + &_RangeJoinTablesRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 58; + friend void swap(RangeJoinTablesRequest& a, RangeJoinTablesRequest& b) { a.Swap(&b); } inline void Swap(RangeJoinTablesRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -26622,50 +27797,67 @@ class RangeJoinTablesRequest final : // implements Message ---------------------------------------------- - RangeJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + RangeJoinTablesRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const RangeJoinTablesRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const RangeJoinTablesRequest& from) { - RangeJoinTablesRequest::MergeImpl(*this, from); - } + void MergeFrom(const RangeJoinTablesRequest& from) { RangeJoinTablesRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(RangeJoinTablesRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest"; } + + protected: explicit RangeJoinTablesRequest(::google::protobuf::Arena* arena); RangeJoinTablesRequest(::google::protobuf::Arena* arena, const RangeJoinTablesRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + RangeJoinTablesRequest(::google::protobuf::Arena* arena, RangeJoinTablesRequest&& from) noexcept + : RangeJoinTablesRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using RangeStartRule = RangeJoinTablesRequest_RangeStartRule; static constexpr RangeStartRule START_UNSPECIFIED = RangeJoinTablesRequest_RangeStartRule_START_UNSPECIFIED; static constexpr RangeStartRule LESS_THAN = RangeJoinTablesRequest_RangeStartRule_LESS_THAN; @@ -26687,7 +27879,6 @@ class RangeJoinTablesRequest final : static inline bool RangeStartRule_Parse(absl::string_view name, RangeStartRule* value) { return RangeJoinTablesRequest_RangeStartRule_Parse(name, value); } - using RangeEndRule = RangeJoinTablesRequest_RangeEndRule; static constexpr RangeEndRule END_UNSPECIFIED = RangeJoinTablesRequest_RangeEndRule_END_UNSPECIFIED; static constexpr RangeEndRule GREATER_THAN = RangeJoinTablesRequest_RangeEndRule_GREATER_THAN; @@ -26711,7 +27902,6 @@ class RangeJoinTablesRequest final : } // accessors ------------------------------------------------------- - enum : int { kExactMatchColumnsFieldNumber = 4, kAggregationsFieldNumber = 10, @@ -26734,17 +27924,11 @@ class RangeJoinTablesRequest final : void clear_exact_match_columns() ; const std::string& exact_match_columns(int index) const; std::string* mutable_exact_match_columns(int index); - void set_exact_match_columns(int index, const std::string& value); - void set_exact_match_columns(int index, std::string&& value); - void set_exact_match_columns(int index, const char* value); - void set_exact_match_columns(int index, const char* value, std::size_t size); - void set_exact_match_columns(int index, absl::string_view value); + template + void set_exact_match_columns(int index, Arg_&& value, Args_... args); std::string* add_exact_match_columns(); - void add_exact_match_columns(const std::string& value); - void add_exact_match_columns(std::string&& value); - void add_exact_match_columns(const char* value); - void add_exact_match_columns(const char* value, std::size_t size); - void add_exact_match_columns(absl::string_view value); + template + void add_exact_match_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& exact_match_columns() const; ::google::protobuf::RepeatedPtrField* mutable_exact_match_columns(); @@ -26761,16 +27945,15 @@ class RangeJoinTablesRequest final : public: void clear_aggregations() ; ::io::deephaven::proto::backplane::grpc::Aggregation* mutable_aggregations(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >* - mutable_aggregations(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* mutable_aggregations(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& _internal_aggregations() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* _internal_mutable_aggregations(); public: const ::io::deephaven::proto::backplane::grpc::Aggregation& aggregations(int index) const; ::io::deephaven::proto::backplane::grpc::Aggregation* add_aggregations(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >& - aggregations() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& aggregations() const; // string left_start_column = 5; void clear_left_start_column() ; const std::string& left_start_column() const; @@ -26903,12 +28086,15 @@ class RangeJoinTablesRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 4, 11, 4, 153, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_RangeJoinTablesRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -26916,13 +28102,13 @@ class RangeJoinTablesRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const RangeJoinTablesRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField exact_match_columns_; @@ -26940,23 +28126,21 @@ class RangeJoinTablesRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class AggregateRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggregateRequest) */ { +class AggregateRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.AggregateRequest) */ { public: inline AggregateRequest() : AggregateRequest(nullptr) {} - ~AggregateRequest() override; - template - explicit PROTOBUF_CONSTEXPR AggregateRequest(::google::protobuf::internal::ConstantInitialized); - - inline AggregateRequest(const AggregateRequest& from) - : AggregateRequest(nullptr, from) {} - AggregateRequest(AggregateRequest&& from) noexcept - : AggregateRequest() { - *this = ::std::move(from); - } - + ~AggregateRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR AggregateRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline AggregateRequest(const AggregateRequest& from) : AggregateRequest(nullptr, from) {} + inline AggregateRequest(AggregateRequest&& from) noexcept + : AggregateRequest(nullptr, std::move(from)) {} inline AggregateRequest& operator=(const AggregateRequest& from) { CopyFrom(from); return *this; @@ -26964,9 +28148,9 @@ class AggregateRequest final : inline AggregateRequest& operator=(AggregateRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -26998,22 +28182,17 @@ class AggregateRequest final : } static inline const AggregateRequest* internal_default_instance() { return reinterpret_cast( - &_AggregateRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 86; - - friend void swap(AggregateRequest& a, AggregateRequest& b) { - a.Swap(&b); + &_AggregateRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 86; + friend void swap(AggregateRequest& a, AggregateRequest& b) { a.Swap(&b); } inline void Swap(AggregateRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -27027,52 +28206,69 @@ class AggregateRequest final : // implements Message ---------------------------------------------- - AggregateRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + AggregateRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const AggregateRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const AggregateRequest& from) { - AggregateRequest::MergeImpl(*this, from); - } + void MergeFrom(const AggregateRequest& from) { AggregateRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(AggregateRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.AggregateRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.AggregateRequest"; } + + protected: explicit AggregateRequest(::google::protobuf::Arena* arena); AggregateRequest(::google::protobuf::Arena* arena, const AggregateRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + AggregateRequest(::google::protobuf::Arena* arena, AggregateRequest&& from) noexcept + : AggregateRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kAggregationsFieldNumber = 5, kGroupByColumnsFieldNumber = 6, @@ -27089,16 +28285,15 @@ class AggregateRequest final : public: void clear_aggregations() ; ::io::deephaven::proto::backplane::grpc::Aggregation* mutable_aggregations(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >* - mutable_aggregations(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* mutable_aggregations(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& _internal_aggregations() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* _internal_mutable_aggregations(); public: const ::io::deephaven::proto::backplane::grpc::Aggregation& aggregations(int index) const; ::io::deephaven::proto::backplane::grpc::Aggregation* add_aggregations(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation >& - aggregations() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& aggregations() const; // repeated string group_by_columns = 6; int group_by_columns_size() const; private: @@ -27108,17 +28303,11 @@ class AggregateRequest final : void clear_group_by_columns() ; const std::string& group_by_columns(int index) const; std::string* mutable_group_by_columns(int index); - void set_group_by_columns(int index, const std::string& value); - void set_group_by_columns(int index, std::string&& value); - void set_group_by_columns(int index, const char* value); - void set_group_by_columns(int index, const char* value, std::size_t size); - void set_group_by_columns(int index, absl::string_view value); + template + void set_group_by_columns(int index, Arg_&& value, Args_... args); std::string* add_group_by_columns(); - void add_group_by_columns(const std::string& value); - void add_group_by_columns(std::string&& value); - void add_group_by_columns(const char* value); - void add_group_by_columns(const char* value, std::size_t size); - void add_group_by_columns(absl::string_view value); + template + void add_group_by_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_columns() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_columns(); @@ -27185,12 +28374,15 @@ class AggregateRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggregateRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 6, 4, 75, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_AggregateRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -27198,13 +28390,13 @@ class AggregateRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const AggregateRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation > aggregations_; @@ -27217,23 +28409,21 @@ class AggregateRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class UpdateByRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest) */ { +class UpdateByRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.UpdateByRequest) */ { public: inline UpdateByRequest() : UpdateByRequest(nullptr) {} - ~UpdateByRequest() override; - template - explicit PROTOBUF_CONSTEXPR UpdateByRequest(::google::protobuf::internal::ConstantInitialized); - - inline UpdateByRequest(const UpdateByRequest& from) - : UpdateByRequest(nullptr, from) {} - UpdateByRequest(UpdateByRequest&& from) noexcept - : UpdateByRequest() { - *this = ::std::move(from); - } - + ~UpdateByRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR UpdateByRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline UpdateByRequest(const UpdateByRequest& from) : UpdateByRequest(nullptr, from) {} + inline UpdateByRequest(UpdateByRequest&& from) noexcept + : UpdateByRequest(nullptr, std::move(from)) {} inline UpdateByRequest& operator=(const UpdateByRequest& from) { CopyFrom(from); return *this; @@ -27241,9 +28431,9 @@ class UpdateByRequest final : inline UpdateByRequest& operator=(UpdateByRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -27275,22 +28465,17 @@ class UpdateByRequest final : } static inline const UpdateByRequest* internal_default_instance() { return reinterpret_cast( - &_UpdateByRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 40; - - friend void swap(UpdateByRequest& a, UpdateByRequest& b) { - a.Swap(&b); + &_UpdateByRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 40; + friend void swap(UpdateByRequest& a, UpdateByRequest& b) { a.Swap(&b); } inline void Swap(UpdateByRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -27304,55 +28489,71 @@ class UpdateByRequest final : // implements Message ---------------------------------------------- - UpdateByRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + UpdateByRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const UpdateByRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const UpdateByRequest& from) { - UpdateByRequest::MergeImpl(*this, from); - } + void MergeFrom(const UpdateByRequest& from) { UpdateByRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(UpdateByRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.UpdateByRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.UpdateByRequest"; } + + protected: explicit UpdateByRequest(::google::protobuf::Arena* arena); UpdateByRequest(::google::protobuf::Arena* arena, const UpdateByRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + UpdateByRequest(::google::protobuf::Arena* arena, UpdateByRequest&& from) noexcept + : UpdateByRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using UpdateByOptions = UpdateByRequest_UpdateByOptions; using UpdateByOperation = UpdateByRequest_UpdateByOperation; // accessors ------------------------------------------------------- - enum : int { kOperationsFieldNumber = 4, kGroupByColumnsFieldNumber = 5, @@ -27368,16 +28569,15 @@ class UpdateByRequest final : public: void clear_operations() ; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* mutable_operations(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation >* - mutable_operations(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>* mutable_operations(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>& _internal_operations() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>* _internal_mutable_operations(); public: const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation& operations(int index) const; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* add_operations(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation >& - operations() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>& operations() const; // repeated string group_by_columns = 5; int group_by_columns_size() const; private: @@ -27387,17 +28587,11 @@ class UpdateByRequest final : void clear_group_by_columns() ; const std::string& group_by_columns(int index) const; std::string* mutable_group_by_columns(int index); - void set_group_by_columns(int index, const std::string& value); - void set_group_by_columns(int index, std::string&& value); - void set_group_by_columns(int index, const char* value); - void set_group_by_columns(int index, const char* value, std::size_t size); - void set_group_by_columns(int index, absl::string_view value); + template + void set_group_by_columns(int index, Arg_&& value, Args_... args); std::string* add_group_by_columns(); - void add_group_by_columns(const std::string& value); - void add_group_by_columns(std::string&& value); - void add_group_by_columns(const char* value); - void add_group_by_columns(const char* value, std::size_t size); - void add_group_by_columns(absl::string_view value); + template + void add_group_by_columns(Arg_&& value, Args_... args); const ::google::protobuf::RepeatedPtrField& group_by_columns() const; ::google::protobuf::RepeatedPtrField* mutable_group_by_columns(); @@ -27454,12 +28648,15 @@ class UpdateByRequest final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 4, 74, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_UpdateByRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -27467,13 +28664,13 @@ class UpdateByRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const UpdateByRequest& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation > operations_; @@ -27485,23 +28682,21 @@ class UpdateByRequest final : }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class BatchTableRequest_Operation final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) */ { +class BatchTableRequest_Operation final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) */ { public: inline BatchTableRequest_Operation() : BatchTableRequest_Operation(nullptr) {} - ~BatchTableRequest_Operation() override; - template - explicit PROTOBUF_CONSTEXPR BatchTableRequest_Operation(::google::protobuf::internal::ConstantInitialized); - - inline BatchTableRequest_Operation(const BatchTableRequest_Operation& from) - : BatchTableRequest_Operation(nullptr, from) {} - BatchTableRequest_Operation(BatchTableRequest_Operation&& from) noexcept - : BatchTableRequest_Operation() { - *this = ::std::move(from); - } - + ~BatchTableRequest_Operation() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR BatchTableRequest_Operation( + ::google::protobuf::internal::ConstantInitialized); + + inline BatchTableRequest_Operation(const BatchTableRequest_Operation& from) : BatchTableRequest_Operation(nullptr, from) {} + inline BatchTableRequest_Operation(BatchTableRequest_Operation&& from) noexcept + : BatchTableRequest_Operation(nullptr, std::move(from)) {} inline BatchTableRequest_Operation& operator=(const BatchTableRequest_Operation& from) { CopyFrom(from); return *this; @@ -27509,9 +28704,9 @@ class BatchTableRequest_Operation final : inline BatchTableRequest_Operation& operator=(BatchTableRequest_Operation&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -27585,25 +28780,19 @@ class BatchTableRequest_Operation final : kMultiJoin = 43, OP_NOT_SET = 0, }; - static inline const BatchTableRequest_Operation* internal_default_instance() { return reinterpret_cast( - &_BatchTableRequest_Operation_default_instance_); - } - static constexpr int kIndexInFileMessages = - 122; - - friend void swap(BatchTableRequest_Operation& a, BatchTableRequest_Operation& b) { - a.Swap(&b); + &_BatchTableRequest_Operation_default_instance_); } + static constexpr int kIndexInFileMessages = 122; + friend void swap(BatchTableRequest_Operation& a, BatchTableRequest_Operation& b) { a.Swap(&b); } inline void Swap(BatchTableRequest_Operation* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -27617,52 +28806,69 @@ class BatchTableRequest_Operation final : // implements Message ---------------------------------------------- - BatchTableRequest_Operation* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BatchTableRequest_Operation* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const BatchTableRequest_Operation& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const BatchTableRequest_Operation& from) { - BatchTableRequest_Operation::MergeImpl(*this, from); - } + void MergeFrom(const BatchTableRequest_Operation& from) { BatchTableRequest_Operation::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(BatchTableRequest_Operation* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation"; } + + protected: explicit BatchTableRequest_Operation(::google::protobuf::Arena* arena); BatchTableRequest_Operation(::google::protobuf::Arena* arena, const BatchTableRequest_Operation& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + BatchTableRequest_Operation(::google::protobuf::Arena* arena, BatchTableRequest_Operation&& from) noexcept + : BatchTableRequest_Operation(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kEmptyTableFieldNumber = 1, kTimeTableFieldNumber = 2, @@ -28531,15 +29737,17 @@ class BatchTableRequest_Operation final : void set_has_raj(); void set_has_column_statistics(); void set_has_multi_join(); - inline bool has_op() const; inline void clear_has_op(); - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 41, 41, 0, 7> _table_; + + static constexpr const void* _raw_default_instance_ = + &_BatchTableRequest_Operation_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -28547,16 +29755,16 @@ class BatchTableRequest_Operation final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BatchTableRequest_Operation& from_msg); union OpUnion { constexpr OpUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; + ::google::protobuf::internal::ConstantInitialized _constinit_; ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* empty_table_; ::io::deephaven::proto::backplane::grpc::TimeTableRequest* time_table_; ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* drop_columns_; @@ -28601,28 +29809,25 @@ class BatchTableRequest_Operation final : } op_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class BatchTableRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BatchTableRequest) */ { +class BatchTableRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.BatchTableRequest) */ { public: inline BatchTableRequest() : BatchTableRequest(nullptr) {} - ~BatchTableRequest() override; - template - explicit PROTOBUF_CONSTEXPR BatchTableRequest(::google::protobuf::internal::ConstantInitialized); - - inline BatchTableRequest(const BatchTableRequest& from) - : BatchTableRequest(nullptr, from) {} - BatchTableRequest(BatchTableRequest&& from) noexcept - : BatchTableRequest() { - *this = ::std::move(from); - } - + ~BatchTableRequest() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR BatchTableRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline BatchTableRequest(const BatchTableRequest& from) : BatchTableRequest(nullptr, from) {} + inline BatchTableRequest(BatchTableRequest&& from) noexcept + : BatchTableRequest(nullptr, std::move(from)) {} inline BatchTableRequest& operator=(const BatchTableRequest& from) { CopyFrom(from); return *this; @@ -28630,9 +29835,9 @@ class BatchTableRequest final : inline BatchTableRequest& operator=(BatchTableRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -28664,22 +29869,17 @@ class BatchTableRequest final : } static inline const BatchTableRequest* internal_default_instance() { return reinterpret_cast( - &_BatchTableRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 123; - - friend void swap(BatchTableRequest& a, BatchTableRequest& b) { - a.Swap(&b); + &_BatchTableRequest_default_instance_); } + static constexpr int kIndexInFileMessages = 123; + friend void swap(BatchTableRequest& a, BatchTableRequest& b) { a.Swap(&b); } inline void Swap(BatchTableRequest* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -28693,54 +29893,70 @@ class BatchTableRequest final : // implements Message ---------------------------------------------- - BatchTableRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + BatchTableRequest* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const BatchTableRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const BatchTableRequest& from) { - BatchTableRequest::MergeImpl(*this, from); - } + void MergeFrom(const BatchTableRequest& from) { BatchTableRequest::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(BatchTableRequest* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.BatchTableRequest"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.BatchTableRequest"; } + + protected: explicit BatchTableRequest(::google::protobuf::Arena* arena); BatchTableRequest(::google::protobuf::Arena* arena, const BatchTableRequest& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + BatchTableRequest(::google::protobuf::Arena* arena, BatchTableRequest&& from) noexcept + : BatchTableRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- - using Operation = BatchTableRequest_Operation; // accessors ------------------------------------------------------- - enum : int { kOpsFieldNumber = 1, }; @@ -28752,25 +29968,27 @@ class BatchTableRequest final : public: void clear_ops() ; ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* mutable_ops(int index); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation >* - mutable_ops(); + ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>* mutable_ops(); + private: const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>& _internal_ops() const; ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>* _internal_mutable_ops(); public: const ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation& ops(int index) const; ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* add_ops(); - const ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation >& - ops() const; + const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>& ops() const; // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.BatchTableRequest) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 1, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_BatchTableRequest_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -28778,13 +29996,13 @@ class BatchTableRequest final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const BatchTableRequest& from_msg); ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation > ops_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -28866,7 +30084,8 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TableReference::_interna if (ref_case() != kTicket) { clear_ref(); set_has_ticket(); - _impl_.ref_.ticket_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + _impl_.ref_.ticket_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); } return _impl_.ref_.ticket_; } @@ -28884,7 +30103,7 @@ inline void TableReference::set_has_batch_offset() { _impl_._oneof_case_[0] = kBatchOffset; } inline void TableReference::clear_batch_offset() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (ref_case() == kBatchOffset) { _impl_.ref_.batch_offset_ = 0; clear_has_ref(); @@ -28895,7 +30114,11 @@ inline ::int32_t TableReference::batch_offset() const { return _internal_batch_offset(); } inline void TableReference::set_batch_offset(::int32_t value) { - _internal_set_batch_offset(value); + if (ref_case() != kBatchOffset) { + clear_ref(); + set_has_batch_offset(); + } + _impl_.ref_.batch_offset_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TableReference.batch_offset) } inline ::int32_t TableReference::_internal_batch_offset() const { @@ -28904,13 +30127,6 @@ inline ::int32_t TableReference::_internal_batch_offset() const { } return 0; } -inline void TableReference::_internal_set_batch_offset(::int32_t value) { - if (ref_case() != kBatchOffset) { - clear_ref(); - set_has_batch_offset(); - } - _impl_.ref_.batch_offset_ = value; -} inline bool TableReference::has_ref() const { return ref_case() != REF_NOT_SET; @@ -28932,12 +30148,12 @@ inline bool ExportedTableCreationResponse::has_result_id() const { return value; } inline void ExportedTableCreationResponse::clear_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExportedTableCreationResponse::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -28946,7 +30162,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExportedTa return _internal_result_id(); } inline void ExportedTableCreationResponse::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -28959,7 +30175,7 @@ inline void ExportedTableCreationResponse::unsafe_arena_set_allocated_result_id( // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.result_id_; @@ -28978,7 +30194,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCre return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -28987,28 +30203,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCre return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) return _msg; } inline void ExportedTableCreationResponse::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.result_id_); + delete (_impl_.result_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -29023,7 +30239,7 @@ inline void ExportedTableCreationResponse::set_allocated_result_id(::io::deephav // bool success = 2; inline void ExportedTableCreationResponse::clear_success() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = false; } inline bool ExportedTableCreationResponse::success() const { @@ -29035,18 +30251,17 @@ inline void ExportedTableCreationResponse::set_success(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.success) } inline bool ExportedTableCreationResponse::_internal_success() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.success_; } inline void ExportedTableCreationResponse::_internal_set_success(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.success_ = value; } // string error_info = 3; inline void ExportedTableCreationResponse::clear_error_info() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_info_.ClearToEmpty(); } inline const std::string& ExportedTableCreationResponse::error_info() const @@ -29057,8 +30272,7 @@ inline const std::string& ExportedTableCreationResponse::error_info() const template inline PROTOBUF_ALWAYS_INLINE void ExportedTableCreationResponse::set_error_info(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_info_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info) } @@ -29068,26 +30282,24 @@ inline std::string* ExportedTableCreationResponse::mutable_error_info() ABSL_ATT return _s; } inline const std::string& ExportedTableCreationResponse::_internal_error_info() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.error_info_.Get(); } inline void ExportedTableCreationResponse::_internal_set_error_info(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_info_.Set(value, GetArena()); } inline std::string* ExportedTableCreationResponse::_internal_mutable_error_info() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.error_info_.Mutable( GetArena()); } inline std::string* ExportedTableCreationResponse::release_error_info() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info) return _impl_.error_info_.Release(); } inline void ExportedTableCreationResponse::set_allocated_error_info(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.error_info_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.error_info_.IsDefault()) { @@ -29099,7 +30311,7 @@ inline void ExportedTableCreationResponse::set_allocated_error_info(std::string* // bytes schema_header = 4; inline void ExportedTableCreationResponse::clear_schema_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.schema_header_.ClearToEmpty(); } inline const std::string& ExportedTableCreationResponse::schema_header() const @@ -29110,8 +30322,7 @@ inline const std::string& ExportedTableCreationResponse::schema_header() const template inline PROTOBUF_ALWAYS_INLINE void ExportedTableCreationResponse::set_schema_header(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.schema_header_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.schema_header) } @@ -29121,26 +30332,24 @@ inline std::string* ExportedTableCreationResponse::mutable_schema_header() ABSL_ return _s; } inline const std::string& ExportedTableCreationResponse::_internal_schema_header() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.schema_header_.Get(); } inline void ExportedTableCreationResponse::_internal_set_schema_header(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.schema_header_.Set(value, GetArena()); } inline std::string* ExportedTableCreationResponse::_internal_mutable_schema_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.schema_header_.Mutable( GetArena()); } inline std::string* ExportedTableCreationResponse::release_schema_header() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.schema_header) return _impl_.schema_header_.Release(); } inline void ExportedTableCreationResponse::set_allocated_schema_header(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.schema_header_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.schema_header_.IsDefault()) { @@ -29152,7 +30361,7 @@ inline void ExportedTableCreationResponse::set_allocated_schema_header(std::stri // bool is_static = 5; inline void ExportedTableCreationResponse::clear_is_static() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_static_ = false; } inline bool ExportedTableCreationResponse::is_static() const { @@ -29164,18 +30373,17 @@ inline void ExportedTableCreationResponse::set_is_static(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.is_static) } inline bool ExportedTableCreationResponse::_internal_is_static() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_static_; } inline void ExportedTableCreationResponse::_internal_set_is_static(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_static_ = value; } // sint64 size = 6 [jstype = JS_STRING]; inline void ExportedTableCreationResponse::clear_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = ::int64_t{0}; } inline ::int64_t ExportedTableCreationResponse::size() const { @@ -29187,12 +30395,11 @@ inline void ExportedTableCreationResponse::set_size(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.size) } inline ::int64_t ExportedTableCreationResponse::_internal_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.size_; } inline void ExportedTableCreationResponse::_internal_set_size(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = value; } @@ -29207,12 +30414,12 @@ inline bool FetchTableRequest::has_source_id() const { return value; } inline void FetchTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& FetchTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -29221,7 +30428,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& FetchTable return _internal_source_id(); } inline void FetchTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -29234,7 +30441,7 @@ inline void FetchTableRequest::unsafe_arena_set_allocated_source_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -29253,7 +30460,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableReques return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -29262,28 +30469,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableReques return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) return _msg; } inline void FetchTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -29303,7 +30510,7 @@ inline bool FetchTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& FetchTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -29312,7 +30519,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& FetchTableRequest: return _internal_result_id(); } inline void FetchTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29325,7 +30532,7 @@ inline void FetchTableRequest::unsafe_arena_set_allocated_result_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -29344,7 +30551,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::relea return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -29353,22 +30560,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::unsaf return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) return _msg; } inline void FetchTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29398,12 +30605,12 @@ inline bool ApplyPreviewColumnsRequest::has_source_id() const { return value; } inline void ApplyPreviewColumnsRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ApplyPreviewColumnsRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -29412,7 +30619,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ApplyPrevi return _internal_source_id(); } inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -29425,7 +30632,7 @@ inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_source_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -29444,7 +30651,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColu return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -29453,28 +30660,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColu return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) return _msg; } inline void ApplyPreviewColumnsRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -29494,7 +30701,7 @@ inline bool ApplyPreviewColumnsRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ApplyPreviewColumnsRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -29503,7 +30710,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ApplyPreviewColumn return _internal_result_id(); } inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29516,7 +30723,7 @@ inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_result_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -29535,7 +30742,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsReque return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -29544,22 +30751,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsReque return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) return _msg; } inline void ApplyPreviewColumnsRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29593,7 +30800,7 @@ inline bool ExportedTableUpdateMessage::has_export_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportedTableUpdateMessage::_internal_export_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.export_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -29602,7 +30809,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportedTableUpdat return _internal_export_id(); } inline void ExportedTableUpdateMessage::unsafe_arena_set_allocated_export_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.export_id_); } @@ -29615,7 +30822,7 @@ inline void ExportedTableUpdateMessage::unsafe_arena_set_allocated_export_id(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::release_export_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.export_id_; @@ -29634,7 +30841,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessa return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::unsafe_arena_release_export_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -29643,22 +30850,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::_internal_mutable_export_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.export_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.export_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.export_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::mutable_export_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_export_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) return _msg; } inline void ExportedTableUpdateMessage::set_allocated_export_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.export_id_); } @@ -29679,7 +30886,7 @@ inline void ExportedTableUpdateMessage::set_allocated_export_id(::io::deephaven: // sint64 size = 2 [jstype = JS_STRING]; inline void ExportedTableUpdateMessage::clear_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = ::int64_t{0}; } inline ::int64_t ExportedTableUpdateMessage::size() const { @@ -29691,18 +30898,17 @@ inline void ExportedTableUpdateMessage::set_size(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.size) } inline ::int64_t ExportedTableUpdateMessage::_internal_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.size_; } inline void ExportedTableUpdateMessage::_internal_set_size(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = value; } // string update_failure_message = 3; inline void ExportedTableUpdateMessage::clear_update_failure_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_failure_message_.ClearToEmpty(); } inline const std::string& ExportedTableUpdateMessage::update_failure_message() const @@ -29713,8 +30919,7 @@ inline const std::string& ExportedTableUpdateMessage::update_failure_message() c template inline PROTOBUF_ALWAYS_INLINE void ExportedTableUpdateMessage::set_update_failure_message(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_failure_message_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message) } @@ -29724,26 +30929,24 @@ inline std::string* ExportedTableUpdateMessage::mutable_update_failure_message() return _s; } inline const std::string& ExportedTableUpdateMessage::_internal_update_failure_message() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.update_failure_message_.Get(); } inline void ExportedTableUpdateMessage::_internal_set_update_failure_message(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_failure_message_.Set(value, GetArena()); } inline std::string* ExportedTableUpdateMessage::_internal_mutable_update_failure_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.update_failure_message_.Mutable( GetArena()); } inline std::string* ExportedTableUpdateMessage::release_update_failure_message() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message) return _impl_.update_failure_message_.Release(); } inline void ExportedTableUpdateMessage::set_allocated_update_failure_message(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.update_failure_message_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.update_failure_message_.IsDefault()) { @@ -29764,7 +30967,7 @@ inline bool EmptyTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& EmptyTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -29773,7 +30976,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& EmptyTableRequest: return _internal_result_id(); } inline void EmptyTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29786,7 +30989,7 @@ inline void EmptyTableRequest::unsafe_arena_set_allocated_result_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -29805,7 +31008,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::relea return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -29814,22 +31017,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::unsaf return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) return _msg; } inline void EmptyTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29850,7 +31053,7 @@ inline void EmptyTableRequest::set_allocated_result_id(::io::deephaven::proto::b // sint64 size = 2 [jstype = JS_STRING]; inline void EmptyTableRequest::clear_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = ::int64_t{0}; } inline ::int64_t EmptyTableRequest::size() const { @@ -29862,12 +31065,11 @@ inline void EmptyTableRequest::set_size(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.EmptyTableRequest.size) } inline ::int64_t EmptyTableRequest::_internal_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.size_; } inline void EmptyTableRequest::_internal_set_size(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.size_ = value; } @@ -29882,7 +31084,7 @@ inline bool TimeTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& TimeTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -29891,7 +31093,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& TimeTableRequest:: return _internal_result_id(); } inline void TimeTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29904,7 +31106,7 @@ inline void TimeTableRequest::unsafe_arena_set_allocated_result_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -29923,7 +31125,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::releas return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -29932,22 +31134,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::unsafe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) return _msg; } inline void TimeTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -29974,7 +31176,7 @@ inline void TimeTableRequest::set_has_start_time_nanos() { _impl_._oneof_case_[0] = kStartTimeNanos; } inline void TimeTableRequest::clear_start_time_nanos() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (start_time_case() == kStartTimeNanos) { _impl_.start_time_.start_time_nanos_ = ::int64_t{0}; clear_has_start_time(); @@ -29985,7 +31187,11 @@ inline ::int64_t TimeTableRequest::start_time_nanos() const { return _internal_start_time_nanos(); } inline void TimeTableRequest::set_start_time_nanos(::int64_t value) { - _internal_set_start_time_nanos(value); + if (start_time_case() != kStartTimeNanos) { + clear_start_time(); + set_has_start_time_nanos(); + } + _impl_.start_time_.start_time_nanos_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_nanos) } inline ::int64_t TimeTableRequest::_internal_start_time_nanos() const { @@ -29994,13 +31200,6 @@ inline ::int64_t TimeTableRequest::_internal_start_time_nanos() const { } return ::int64_t{0}; } -inline void TimeTableRequest::_internal_set_start_time_nanos(::int64_t value) { - if (start_time_case() != kStartTimeNanos) { - clear_start_time(); - set_has_start_time_nanos(); - } - _impl_.start_time_.start_time_nanos_ = value; -} // string start_time_string = 5; inline bool TimeTableRequest::has_start_time_string() const { @@ -30010,7 +31209,7 @@ inline void TimeTableRequest::set_has_start_time_string() { _impl_._oneof_case_[0] = kStartTimeString; } inline void TimeTableRequest::clear_start_time_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (start_time_case() == kStartTimeString) { _impl_.start_time_.start_time_string_.Destroy(); clear_has_start_time(); @@ -30024,7 +31223,7 @@ inline const std::string& TimeTableRequest::start_time_string() const template inline PROTOBUF_ALWAYS_INLINE void TimeTableRequest::set_start_time_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (start_time_case() != kStartTimeString) { clear_start_time(); @@ -30040,14 +31239,14 @@ inline std::string* TimeTableRequest::mutable_start_time_string() ABSL_ATTRIBUTE return _s; } inline const std::string& TimeTableRequest::_internal_start_time_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (start_time_case() != kStartTimeString) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.start_time_.start_time_string_.Get(); } inline void TimeTableRequest::_internal_set_start_time_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (start_time_case() != kStartTimeString) { clear_start_time(); @@ -30057,7 +31256,7 @@ inline void TimeTableRequest::_internal_set_start_time_string(const std::string& _impl_.start_time_.start_time_string_.Set(value, GetArena()); } inline std::string* TimeTableRequest::_internal_mutable_start_time_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (start_time_case() != kStartTimeString) { clear_start_time(); @@ -30067,7 +31266,7 @@ inline std::string* TimeTableRequest::_internal_mutable_start_time_string() { return _impl_.start_time_.start_time_string_.Mutable( GetArena()); } inline std::string* TimeTableRequest::release_start_time_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string) if (start_time_case() != kStartTimeString) { return nullptr; @@ -30076,7 +31275,7 @@ inline std::string* TimeTableRequest::release_start_time_string() { return _impl_.start_time_.start_time_string_.Release(); } inline void TimeTableRequest::set_allocated_start_time_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_start_time()) { clear_start_time(); } @@ -30095,7 +31294,7 @@ inline void TimeTableRequest::set_has_period_nanos() { _impl_._oneof_case_[1] = kPeriodNanos; } inline void TimeTableRequest::clear_period_nanos() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (period_case() == kPeriodNanos) { _impl_.period_.period_nanos_ = ::int64_t{0}; clear_has_period(); @@ -30106,7 +31305,11 @@ inline ::int64_t TimeTableRequest::period_nanos() const { return _internal_period_nanos(); } inline void TimeTableRequest::set_period_nanos(::int64_t value) { - _internal_set_period_nanos(value); + if (period_case() != kPeriodNanos) { + clear_period(); + set_has_period_nanos(); + } + _impl_.period_.period_nanos_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_nanos) } inline ::int64_t TimeTableRequest::_internal_period_nanos() const { @@ -30115,13 +31318,6 @@ inline ::int64_t TimeTableRequest::_internal_period_nanos() const { } return ::int64_t{0}; } -inline void TimeTableRequest::_internal_set_period_nanos(::int64_t value) { - if (period_case() != kPeriodNanos) { - clear_period(); - set_has_period_nanos(); - } - _impl_.period_.period_nanos_ = value; -} // string period_string = 6; inline bool TimeTableRequest::has_period_string() const { @@ -30131,7 +31327,7 @@ inline void TimeTableRequest::set_has_period_string() { _impl_._oneof_case_[1] = kPeriodString; } inline void TimeTableRequest::clear_period_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (period_case() == kPeriodString) { _impl_.period_.period_string_.Destroy(); clear_has_period(); @@ -30145,7 +31341,7 @@ inline const std::string& TimeTableRequest::period_string() const template inline PROTOBUF_ALWAYS_INLINE void TimeTableRequest::set_period_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (period_case() != kPeriodString) { clear_period(); @@ -30161,14 +31357,14 @@ inline std::string* TimeTableRequest::mutable_period_string() ABSL_ATTRIBUTE_LIF return _s; } inline const std::string& TimeTableRequest::_internal_period_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (period_case() != kPeriodString) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.period_.period_string_.Get(); } inline void TimeTableRequest::_internal_set_period_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (period_case() != kPeriodString) { clear_period(); @@ -30178,7 +31374,7 @@ inline void TimeTableRequest::_internal_set_period_string(const std::string& val _impl_.period_.period_string_.Set(value, GetArena()); } inline std::string* TimeTableRequest::_internal_mutable_period_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (period_case() != kPeriodString) { clear_period(); @@ -30188,7 +31384,7 @@ inline std::string* TimeTableRequest::_internal_mutable_period_string() { return _impl_.period_.period_string_.Mutable( GetArena()); } inline std::string* TimeTableRequest::release_period_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) if (period_case() != kPeriodString) { return nullptr; @@ -30197,7 +31393,7 @@ inline std::string* TimeTableRequest::release_period_string() { return _impl_.period_.period_string_.Release(); } inline void TimeTableRequest::set_allocated_period_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_period()) { clear_period(); } @@ -30210,7 +31406,7 @@ inline void TimeTableRequest::set_allocated_period_string(std::string* value) { // bool blink_table = 4; inline void TimeTableRequest::clear_blink_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.blink_table_ = false; } inline bool TimeTableRequest::blink_table() const { @@ -30222,12 +31418,11 @@ inline void TimeTableRequest::set_blink_table(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.blink_table) } inline bool TimeTableRequest::_internal_blink_table() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.blink_table_; } inline void TimeTableRequest::_internal_set_blink_table(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.blink_table_ = value; } @@ -30260,7 +31455,7 @@ inline bool SelectOrUpdateRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectOrUpdateRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -30269,7 +31464,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectOrUpdateRequ return _internal_result_id(); } inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -30282,7 +31477,7 @@ inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_result_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -30301,7 +31496,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -30310,22 +31505,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) return _msg; } inline void SelectOrUpdateRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -30351,12 +31546,12 @@ inline bool SelectOrUpdateRequest::has_source_id() const { return value; } inline void SelectOrUpdateRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectOrUpdateRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -30365,7 +31560,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectOrUp return _internal_source_id(); } inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -30378,7 +31573,7 @@ inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_source_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -30397,7 +31592,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -30406,28 +31601,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) return _msg; } inline void SelectOrUpdateRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -30448,12 +31643,11 @@ inline int SelectOrUpdateRequest::column_specs_size() const { return _internal_column_specs_size(); } inline void SelectOrUpdateRequest::clear_column_specs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_specs_.Clear(); } -inline std::string* SelectOrUpdateRequest::add_column_specs() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* SelectOrUpdateRequest::add_column_specs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_column_specs()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) return _s; @@ -30468,57 +31662,21 @@ inline std::string* SelectOrUpdateRequest::mutable_column_specs(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) return _internal_mutable_column_specs()->Mutable(index); } -inline void SelectOrUpdateRequest::set_column_specs(int index, const std::string& value) { - _internal_mutable_column_specs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::set_column_specs(int index, std::string&& value) { - _internal_mutable_column_specs()->Mutable(index)->assign(std::move(value)); +template +inline void SelectOrUpdateRequest::set_column_specs(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_column_specs()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) } -inline void SelectOrUpdateRequest::set_column_specs(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_column_specs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::set_column_specs(int index, const char* value, - std::size_t size) { - _internal_mutable_column_specs()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::set_column_specs(int index, absl::string_view value) { - _internal_mutable_column_specs()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::add_column_specs(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_specs()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::add_column_specs(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_specs()->Add(std::move(value)); +template +inline void SelectOrUpdateRequest::add_column_specs(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_column_specs(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) } -inline void SelectOrUpdateRequest::add_column_specs(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_specs()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::add_column_specs(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_specs()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} -inline void SelectOrUpdateRequest::add_column_specs(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_specs()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) -} inline const ::google::protobuf::RepeatedPtrField& SelectOrUpdateRequest::column_specs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) @@ -30527,17 +31685,17 @@ SelectOrUpdateRequest::column_specs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* SelectOrUpdateRequest::mutable_column_specs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_column_specs(); } inline const ::google::protobuf::RepeatedPtrField& SelectOrUpdateRequest::_internal_column_specs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_specs_; } inline ::google::protobuf::RepeatedPtrField* SelectOrUpdateRequest::_internal_mutable_column_specs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.column_specs_; } @@ -30547,7 +31705,7 @@ SelectOrUpdateRequest::_internal_mutable_column_specs() { // sint32 precision = 1; inline void MathContext::clear_precision() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.precision_ = 0; } inline ::int32_t MathContext::precision() const { @@ -30559,18 +31717,17 @@ inline void MathContext::set_precision(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MathContext.precision) } inline ::int32_t MathContext::_internal_precision() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.precision_; } inline void MathContext::_internal_set_precision(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.precision_ = value; } // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; inline void MathContext::clear_rounding_mode() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rounding_mode_ = 0; } inline ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode MathContext::rounding_mode() const { @@ -30582,12 +31739,11 @@ inline void MathContext::set_rounding_mode(::io::deephaven::proto::backplane::gr // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MathContext.rounding_mode) } inline ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode MathContext::_internal_rounding_mode() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode>(_impl_.rounding_mode_); } inline void MathContext::_internal_set_rounding_mode(::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.rounding_mode_ = value; } @@ -30597,7 +31753,7 @@ inline void MathContext::_internal_set_rounding_mode(::io::deephaven::proto::bac // double ticks = 1; inline void UpdateByWindowScale_UpdateByWindowTicks::clear_ticks() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_ = 0; } inline double UpdateByWindowScale_UpdateByWindowTicks::ticks() const { @@ -30609,12 +31765,11 @@ inline void UpdateByWindowScale_UpdateByWindowTicks::set_ticks(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks.ticks) } inline double UpdateByWindowScale_UpdateByWindowTicks::_internal_ticks() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.ticks_; } inline void UpdateByWindowScale_UpdateByWindowTicks::_internal_set_ticks(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticks_ = value; } @@ -30624,7 +31779,7 @@ inline void UpdateByWindowScale_UpdateByWindowTicks::_internal_set_ticks(double // string column = 1; inline void UpdateByWindowScale_UpdateByWindowTime::clear_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_.ClearToEmpty(); } inline const std::string& UpdateByWindowScale_UpdateByWindowTime::column() const @@ -30635,8 +31790,7 @@ inline const std::string& UpdateByWindowScale_UpdateByWindowTime::column() const template inline PROTOBUF_ALWAYS_INLINE void UpdateByWindowScale_UpdateByWindowTime::set_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column) } @@ -30646,26 +31800,24 @@ inline std::string* UpdateByWindowScale_UpdateByWindowTime::mutable_column() ABS return _s; } inline const std::string& UpdateByWindowScale_UpdateByWindowTime::_internal_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_.Get(); } inline void UpdateByWindowScale_UpdateByWindowTime::_internal_set_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_.Set(value, GetArena()); } inline std::string* UpdateByWindowScale_UpdateByWindowTime::_internal_mutable_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_.Mutable( GetArena()); } inline std::string* UpdateByWindowScale_UpdateByWindowTime::release_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column) return _impl_.column_.Release(); } inline void UpdateByWindowScale_UpdateByWindowTime::set_allocated_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_.IsDefault()) { @@ -30683,7 +31835,7 @@ inline void UpdateByWindowScale_UpdateByWindowTime::set_has_nanos() { _impl_._oneof_case_[0] = kNanos; } inline void UpdateByWindowScale_UpdateByWindowTime::clear_nanos() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (window_case() == kNanos) { _impl_.window_.nanos_ = ::int64_t{0}; clear_has_window(); @@ -30694,7 +31846,11 @@ inline ::int64_t UpdateByWindowScale_UpdateByWindowTime::nanos() const { return _internal_nanos(); } inline void UpdateByWindowScale_UpdateByWindowTime::set_nanos(::int64_t value) { - _internal_set_nanos(value); + if (window_case() != kNanos) { + clear_window(); + set_has_nanos(); + } + _impl_.window_.nanos_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.nanos) } inline ::int64_t UpdateByWindowScale_UpdateByWindowTime::_internal_nanos() const { @@ -30703,13 +31859,6 @@ inline ::int64_t UpdateByWindowScale_UpdateByWindowTime::_internal_nanos() const } return ::int64_t{0}; } -inline void UpdateByWindowScale_UpdateByWindowTime::_internal_set_nanos(::int64_t value) { - if (window_case() != kNanos) { - clear_window(); - set_has_nanos(); - } - _impl_.window_.nanos_ = value; -} // string duration_string = 3; inline bool UpdateByWindowScale_UpdateByWindowTime::has_duration_string() const { @@ -30719,7 +31868,7 @@ inline void UpdateByWindowScale_UpdateByWindowTime::set_has_duration_string() { _impl_._oneof_case_[0] = kDurationString; } inline void UpdateByWindowScale_UpdateByWindowTime::clear_duration_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (window_case() == kDurationString) { _impl_.window_.duration_string_.Destroy(); clear_has_window(); @@ -30733,7 +31882,7 @@ inline const std::string& UpdateByWindowScale_UpdateByWindowTime::duration_strin template inline PROTOBUF_ALWAYS_INLINE void UpdateByWindowScale_UpdateByWindowTime::set_duration_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (window_case() != kDurationString) { clear_window(); @@ -30749,14 +31898,14 @@ inline std::string* UpdateByWindowScale_UpdateByWindowTime::mutable_duration_str return _s; } inline const std::string& UpdateByWindowScale_UpdateByWindowTime::_internal_duration_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (window_case() != kDurationString) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.window_.duration_string_.Get(); } inline void UpdateByWindowScale_UpdateByWindowTime::_internal_set_duration_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (window_case() != kDurationString) { clear_window(); @@ -30766,7 +31915,7 @@ inline void UpdateByWindowScale_UpdateByWindowTime::_internal_set_duration_strin _impl_.window_.duration_string_.Set(value, GetArena()); } inline std::string* UpdateByWindowScale_UpdateByWindowTime::_internal_mutable_duration_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (window_case() != kDurationString) { clear_window(); @@ -30776,7 +31925,7 @@ inline std::string* UpdateByWindowScale_UpdateByWindowTime::_internal_mutable_du return _impl_.window_.duration_string_.Mutable( GetArena()); } inline std::string* UpdateByWindowScale_UpdateByWindowTime::release_duration_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string) if (window_case() != kDurationString) { return nullptr; @@ -30785,7 +31934,7 @@ inline std::string* UpdateByWindowScale_UpdateByWindowTime::release_duration_str return _impl_.window_.duration_string_.Release(); } inline void UpdateByWindowScale_UpdateByWindowTime::set_allocated_duration_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_window()) { clear_window(); } @@ -30820,10 +31969,12 @@ inline void UpdateByWindowScale::set_has_ticks() { _impl_._oneof_case_[0] = kTicks; } inline void UpdateByWindowScale::clear_ticks() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kTicks) { if (GetArena() == nullptr) { delete _impl_.type_.ticks_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ticks_); } clear_has_type(); } @@ -30875,7 +32026,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWind if (type_case() != kTicks) { clear_type(); set_has_ticks(); - _impl_.type_.ticks_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(GetArena()); + _impl_.type_.ticks_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(GetArena()); } return _impl_.type_.ticks_; } @@ -30896,10 +32048,12 @@ inline void UpdateByWindowScale::set_has_time() { _impl_._oneof_case_[0] = kTime; } inline void UpdateByWindowScale::clear_time() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kTime) { if (GetArena() == nullptr) { delete _impl_.type_.time_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.time_); } clear_has_type(); } @@ -30951,7 +32105,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWind if (type_case() != kTime) { clear_type(); set_has_time(); - _impl_.type_.time_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(GetArena()); + _impl_.type_.time_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(GetArena()); } return _impl_.type_.time_; } @@ -30976,7 +32131,7 @@ inline UpdateByWindowScale::TypeCase UpdateByWindowScale::type_case() const { // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; inline void UpdateByEmOptions::clear_on_null_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_null_value_ = 0; } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_null_value() const { @@ -30988,18 +32143,17 @@ inline void UpdateByEmOptions::set_on_null_value(::io::deephaven::proto::backpla // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_null_value) } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::_internal_on_null_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::BadDataBehavior>(_impl_.on_null_value_); } inline void UpdateByEmOptions::_internal_set_on_null_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_null_value_ = value; } // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; inline void UpdateByEmOptions::clear_on_nan_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_nan_value_ = 0; } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_nan_value() const { @@ -31011,18 +32165,17 @@ inline void UpdateByEmOptions::set_on_nan_value(::io::deephaven::proto::backplan // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_nan_value) } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::_internal_on_nan_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::BadDataBehavior>(_impl_.on_nan_value_); } inline void UpdateByEmOptions::_internal_set_on_nan_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_nan_value_ = value; } // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; inline void UpdateByEmOptions::clear_on_null_time() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_null_time_ = 0; } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_null_time() const { @@ -31034,18 +32187,17 @@ inline void UpdateByEmOptions::set_on_null_time(::io::deephaven::proto::backplan // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_null_time) } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::_internal_on_null_time() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::BadDataBehavior>(_impl_.on_null_time_); } inline void UpdateByEmOptions::_internal_set_on_null_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_null_time_ = value; } // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; inline void UpdateByEmOptions::clear_on_negative_delta_time() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_negative_delta_time_ = 0; } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_negative_delta_time() const { @@ -31057,18 +32209,17 @@ inline void UpdateByEmOptions::set_on_negative_delta_time(::io::deephaven::proto // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_negative_delta_time) } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::_internal_on_negative_delta_time() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::BadDataBehavior>(_impl_.on_negative_delta_time_); } inline void UpdateByEmOptions::_internal_set_on_negative_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_negative_delta_time_ = value; } // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; inline void UpdateByEmOptions::clear_on_zero_delta_time() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_zero_delta_time_ = 0; } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_zero_delta_time() const { @@ -31080,12 +32231,11 @@ inline void UpdateByEmOptions::set_on_zero_delta_time(::io::deephaven::proto::ba // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_zero_delta_time) } inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::_internal_on_zero_delta_time() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::BadDataBehavior>(_impl_.on_zero_delta_time_); } inline void UpdateByEmOptions::_internal_set_on_zero_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.on_zero_delta_time_ = value; } @@ -31096,12 +32246,12 @@ inline bool UpdateByEmOptions::has_big_value_context() const { return value; } inline void UpdateByEmOptions::clear_big_value_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.big_value_context_ != nullptr) _impl_.big_value_context_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByEmOptions::_internal_big_value_context() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::MathContext* p = _impl_.big_value_context_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_MathContext_default_instance_); } @@ -31110,7 +32260,7 @@ inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByEmOpt return _internal_big_value_context(); } inline void UpdateByEmOptions::unsafe_arena_set_allocated_big_value_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.big_value_context_); } @@ -31123,7 +32273,7 @@ inline void UpdateByEmOptions::unsafe_arena_set_allocated_big_value_context(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::release_big_value_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::MathContext* released = _impl_.big_value_context_; @@ -31142,7 +32292,7 @@ inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions:: return released; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::unsafe_arena_release_big_value_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) _impl_._has_bits_[0] &= ~0x00000001u; @@ -31151,28 +32301,28 @@ inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions:: return temp; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::_internal_mutable_big_value_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.big_value_context_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MathContext>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MathContext>(GetArena()); _impl_.big_value_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(p); } return _impl_.big_value_context_; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::mutable_big_value_context() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::MathContext* _msg = _internal_mutable_big_value_context(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) return _msg; } inline void UpdateByEmOptions::set_allocated_big_value_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(_impl_.big_value_context_); + delete (_impl_.big_value_context_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31191,7 +32341,7 @@ inline void UpdateByEmOptions::set_allocated_big_value_context(::io::deephaven:: // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; inline void UpdateByDeltaOptions::clear_null_behavior() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.null_behavior_ = 0; } inline ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior UpdateByDeltaOptions::null_behavior() const { @@ -31203,12 +32353,11 @@ inline void UpdateByDeltaOptions::set_null_behavior(::io::deephaven::proto::back // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions.null_behavior) } inline ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior UpdateByDeltaOptions::_internal_null_behavior() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior>(_impl_.null_behavior_); } inline void UpdateByDeltaOptions::_internal_set_null_behavior(::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.null_behavior_ = value; } @@ -31222,7 +32371,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_use_redirection() const { return value; } inline void UpdateByRequest_UpdateByOptions::clear_use_redirection() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.use_redirection_ = false; _impl_._has_bits_[0] &= ~0x00000002u; } @@ -31232,15 +32381,15 @@ inline bool UpdateByRequest_UpdateByOptions::use_redirection() const { } inline void UpdateByRequest_UpdateByOptions::set_use_redirection(bool value) { _internal_set_use_redirection(value); + _impl_._has_bits_[0] |= 0x00000002u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.use_redirection) } inline bool UpdateByRequest_UpdateByOptions::_internal_use_redirection() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.use_redirection_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_use_redirection(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.use_redirection_ = value; } @@ -31250,7 +32399,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_chunk_capacity() const { return value; } inline void UpdateByRequest_UpdateByOptions::clear_chunk_capacity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.chunk_capacity_ = 0; _impl_._has_bits_[0] &= ~0x00000004u; } @@ -31260,15 +32409,15 @@ inline ::int32_t UpdateByRequest_UpdateByOptions::chunk_capacity() const { } inline void UpdateByRequest_UpdateByOptions::set_chunk_capacity(::int32_t value) { _internal_set_chunk_capacity(value); + _impl_._has_bits_[0] |= 0x00000004u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.chunk_capacity) } inline ::int32_t UpdateByRequest_UpdateByOptions::_internal_chunk_capacity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.chunk_capacity_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_chunk_capacity(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.chunk_capacity_ = value; } @@ -31278,7 +32427,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_max_static_sparse_memory_overhe return value; } inline void UpdateByRequest_UpdateByOptions::clear_max_static_sparse_memory_overhead() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_static_sparse_memory_overhead_ = 0; _impl_._has_bits_[0] &= ~0x00000008u; } @@ -31288,15 +32437,15 @@ inline double UpdateByRequest_UpdateByOptions::max_static_sparse_memory_overhead } inline void UpdateByRequest_UpdateByOptions::set_max_static_sparse_memory_overhead(double value) { _internal_set_max_static_sparse_memory_overhead(value); + _impl_._has_bits_[0] |= 0x00000008u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.max_static_sparse_memory_overhead) } inline double UpdateByRequest_UpdateByOptions::_internal_max_static_sparse_memory_overhead() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.max_static_sparse_memory_overhead_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_max_static_sparse_memory_overhead(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000008u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_static_sparse_memory_overhead_ = value; } @@ -31306,7 +32455,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_initial_hash_table_size() const return value; } inline void UpdateByRequest_UpdateByOptions::clear_initial_hash_table_size() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.initial_hash_table_size_ = 0; _impl_._has_bits_[0] &= ~0x00000040u; } @@ -31316,15 +32465,15 @@ inline ::int32_t UpdateByRequest_UpdateByOptions::initial_hash_table_size() cons } inline void UpdateByRequest_UpdateByOptions::set_initial_hash_table_size(::int32_t value) { _internal_set_initial_hash_table_size(value); + _impl_._has_bits_[0] |= 0x00000040u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.initial_hash_table_size) } inline ::int32_t UpdateByRequest_UpdateByOptions::_internal_initial_hash_table_size() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.initial_hash_table_size_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_initial_hash_table_size(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000040u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.initial_hash_table_size_ = value; } @@ -31334,7 +32483,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_maximum_load_factor() const { return value; } inline void UpdateByRequest_UpdateByOptions::clear_maximum_load_factor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.maximum_load_factor_ = 0; _impl_._has_bits_[0] &= ~0x00000010u; } @@ -31344,15 +32493,15 @@ inline double UpdateByRequest_UpdateByOptions::maximum_load_factor() const { } inline void UpdateByRequest_UpdateByOptions::set_maximum_load_factor(double value) { _internal_set_maximum_load_factor(value); + _impl_._has_bits_[0] |= 0x00000010u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.maximum_load_factor) } inline double UpdateByRequest_UpdateByOptions::_internal_maximum_load_factor() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.maximum_load_factor_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_maximum_load_factor(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000010u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.maximum_load_factor_ = value; } @@ -31362,7 +32511,7 @@ inline bool UpdateByRequest_UpdateByOptions::has_target_load_factor() const { return value; } inline void UpdateByRequest_UpdateByOptions::clear_target_load_factor() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.target_load_factor_ = 0; _impl_._has_bits_[0] &= ~0x00000020u; } @@ -31372,15 +32521,15 @@ inline double UpdateByRequest_UpdateByOptions::target_load_factor() const { } inline void UpdateByRequest_UpdateByOptions::set_target_load_factor(double value) { _internal_set_target_load_factor(value); + _impl_._has_bits_[0] |= 0x00000020u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.target_load_factor) } inline double UpdateByRequest_UpdateByOptions::_internal_target_load_factor() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.target_load_factor_; } inline void UpdateByRequest_UpdateByOptions::_internal_set_target_load_factor(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000020u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.target_load_factor_ = value; } @@ -31391,12 +32540,12 @@ inline bool UpdateByRequest_UpdateByOptions::has_math_context() const { return value; } inline void UpdateByRequest_UpdateByOptions::clear_math_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.math_context_ != nullptr) _impl_.math_context_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByRequest_UpdateByOptions::_internal_math_context() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::MathContext* p = _impl_.math_context_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_MathContext_default_instance_); } @@ -31405,7 +32554,7 @@ inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByReque return _internal_math_context(); } inline void UpdateByRequest_UpdateByOptions::unsafe_arena_set_allocated_math_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.math_context_); } @@ -31418,7 +32567,7 @@ inline void UpdateByRequest_UpdateByOptions::unsafe_arena_set_allocated_math_con // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::release_math_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::MathContext* released = _impl_.math_context_; @@ -31437,7 +32586,7 @@ inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_Upd return released; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::unsafe_arena_release_math_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) _impl_._has_bits_[0] &= ~0x00000001u; @@ -31446,28 +32595,28 @@ inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_Upd return temp; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::_internal_mutable_math_context() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.math_context_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MathContext>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MathContext>(GetArena()); _impl_.math_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(p); } return _impl_.math_context_; } inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::mutable_math_context() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::MathContext* _msg = _internal_mutable_math_context(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) return _msg; } inline void UpdateByRequest_UpdateByOptions::set_allocated_math_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(_impl_.math_context_); + delete (_impl_.math_context_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31511,12 +32660,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_); } @@ -31525,7 +32674,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateB return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -31538,7 +32687,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; @@ -31557,7 +32706,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -31566,28 +32715,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31607,12 +32756,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::clear_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ != nullptr) _impl_.window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -31621,7 +32770,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); } @@ -31634,7 +32783,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; @@ -31653,7 +32802,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -31662,28 +32811,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_mutable_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::mutable_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.window_scale_); + delete (_impl_.window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31707,12 +32856,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_); } @@ -31721,7 +32870,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateB return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -31734,7 +32883,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; @@ -31753,7 +32902,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -31762,28 +32911,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31803,12 +32952,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::clear_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ != nullptr) _impl_.window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -31817,7 +32966,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); } @@ -31830,7 +32979,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; @@ -31849,7 +32998,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -31858,28 +33007,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_mutable_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::mutable_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.window_scale_); + delete (_impl_.window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31903,12 +33052,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_); } @@ -31917,7 +33066,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateB return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -31930,7 +33079,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; @@ -31949,7 +33098,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -31958,28 +33107,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -31999,12 +33148,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::clear_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ != nullptr) _impl_.window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32013,7 +33162,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); } @@ -32026,7 +33175,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; @@ -32045,7 +33194,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -32054,28 +33203,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_mutable_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::mutable_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.window_scale_); + delete (_impl_.window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32099,12 +33248,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_); } @@ -32113,7 +33262,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateB return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -32126,7 +33275,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; @@ -32145,7 +33294,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -32154,28 +33303,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32195,12 +33344,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::clear_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ != nullptr) _impl_.window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32209,7 +33358,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); } @@ -32222,7 +33371,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; @@ -32241,7 +33390,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -32250,28 +33399,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_mutable_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::mutable_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.window_scale_); + delete (_impl_.window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32295,12 +33444,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_); } @@ -32309,7 +33458,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateB return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -32322,7 +33471,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; @@ -32341,7 +33490,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -32350,28 +33499,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByReque return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32391,12 +33540,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::clear_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ != nullptr) _impl_.window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32405,7 +33554,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); } @@ -32418,7 +33567,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; @@ -32437,7 +33586,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_release_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -32446,28 +33595,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_mutable_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::mutable_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.window_scale_); + delete (_impl_.window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32491,12 +33640,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByDeltaOptions_default_instance_); } @@ -32505,7 +33654,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& Upda return _internal_options(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -32518,7 +33667,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* released = _impl_.options_; @@ -32537,7 +33686,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRe return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta.options) _impl_._has_bits_[0] &= ~0x00000001u; @@ -32546,28 +33695,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRe return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta.options) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32591,12 +33740,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32605,7 +33754,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -32618,7 +33767,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -32637,7 +33786,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -32646,28 +33795,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32687,12 +33836,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32701,7 +33850,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -32714,7 +33863,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -32733,7 +33882,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -32742,28 +33891,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32787,12 +33936,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32801,7 +33950,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -32814,7 +33963,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -32833,7 +33982,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -32842,28 +33991,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32883,12 +34032,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32897,7 +34046,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -32910,7 +34059,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -32929,7 +34078,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -32938,28 +34087,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -32983,12 +34132,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -32997,7 +34146,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33010,7 +34159,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -33029,7 +34178,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -33038,28 +34187,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33079,12 +34228,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33093,7 +34242,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -33106,7 +34255,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -33125,7 +34274,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -33134,28 +34283,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33179,12 +34328,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33193,7 +34342,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33206,7 +34355,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -33225,7 +34374,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -33234,28 +34383,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33275,12 +34424,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33289,7 +34438,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -33302,7 +34451,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -33321,7 +34470,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -33330,28 +34479,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33375,12 +34524,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33389,7 +34538,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33402,7 +34551,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -33421,7 +34570,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -33430,28 +34579,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33471,12 +34620,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33485,7 +34634,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -33498,7 +34647,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -33517,7 +34666,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -33526,28 +34675,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33571,12 +34720,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33585,7 +34734,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33598,7 +34747,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -33617,7 +34766,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -33626,28 +34775,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33667,12 +34816,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33681,7 +34830,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -33694,7 +34843,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -33713,7 +34862,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -33722,28 +34871,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33767,12 +34916,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33781,7 +34930,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33794,7 +34943,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -33813,7 +34962,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -33822,28 +34971,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33863,12 +35012,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33877,7 +35026,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -33890,7 +35039,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -33909,7 +35058,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -33918,28 +35067,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -33963,12 +35112,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -33977,7 +35126,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -33990,7 +35139,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -34009,7 +35158,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -34018,28 +35167,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34059,12 +35208,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -34073,7 +35222,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -34086,7 +35235,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -34105,7 +35254,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -34114,28 +35263,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34159,12 +35308,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -34173,7 +35322,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -34186,7 +35335,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -34205,7 +35354,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -34214,28 +35363,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34255,12 +35404,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -34269,7 +35418,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -34282,7 +35431,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -34301,7 +35450,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -34310,28 +35459,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34346,7 +35495,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // string weight_column = 3; inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.ClearToEmpty(); } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::weight_column() const @@ -34357,8 +35506,7 @@ inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_Updat template inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::set_weight_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column) } @@ -34368,26 +35516,24 @@ inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpe return _s; } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_weight_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.weight_column_.Get(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_set_weight_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.Set(value, GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.weight_column_.Mutable( GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::release_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column) return _impl_.weight_column_.Release(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::set_allocated_weight_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.weight_column_.IsDefault()) { @@ -34408,12 +35554,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ != nullptr) _impl_.reverse_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_reverse_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.reverse_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -34422,7 +35568,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_reverse_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); } @@ -34435,7 +35581,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.reverse_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; @@ -34454,7 +35600,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_release_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.reverse_window_scale) _impl_._has_bits_[0] &= ~0x00000001u; @@ -34463,28 +35609,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_reverse_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reverse_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.reverse_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::mutable_reverse_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_reverse_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.reverse_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.reverse_window_scale_); + delete (_impl_.reverse_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34504,12 +35650,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ != nullptr) _impl_.forward_window_scale_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_forward_window_scale() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* p = _impl_.forward_window_scale_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_); } @@ -34518,7 +35664,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& Updat return _internal_forward_window_scale(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); } @@ -34531,7 +35677,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.forward_window_scale) } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; @@ -34550,7 +35696,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_release_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.forward_window_scale) _impl_._has_bits_[0] &= ~0x00000002u; @@ -34559,28 +35705,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByReq return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_forward_window_scale() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.forward_window_scale_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>(GetArena()); _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(p); } return _impl_.forward_window_scale_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::mutable_forward_window_scale() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _msg = _internal_mutable_forward_window_scale(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.forward_window_scale) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(_impl_.forward_window_scale_); + delete (_impl_.forward_window_scale_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -34595,7 +35741,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // string formula = 3; inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.ClearToEmpty(); } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::formula() const @@ -34606,8 +35752,7 @@ inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_Updat template inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_formula(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula) } @@ -34617,26 +35762,24 @@ inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpe return _s; } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_formula() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.formula_.Get(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_set_formula(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.Set(value, GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.formula_.Mutable( GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula) return _impl_.formula_.Release(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_allocated_formula(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.formula_.IsDefault()) { @@ -34648,7 +35791,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_Update // string param_token = 4; inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.ClearToEmpty(); } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::param_token() const @@ -34659,8 +35802,7 @@ inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_Updat template inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_param_token(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token) } @@ -34670,26 +35812,24 @@ inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpe return _s; } inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_param_token() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.param_token_.Get(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_set_param_token(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.Set(value, GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.param_token_.Mutable( GetArena()); } inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token) return _impl_.param_token_.Release(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_allocated_param_token(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.param_token_.IsDefault()) { @@ -34714,10 +35854,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kSum; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_sum() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kSum) { if (GetArena() == nullptr) { delete _impl_.type_.sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sum_); } clear_has_type(); } @@ -34769,7 +35911,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kSum) { clear_type(); set_has_sum(); - _impl_.type_.sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(GetArena()); + _impl_.type_.sum_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(GetArena()); } return _impl_.type_.sum_; } @@ -34790,10 +35933,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kMin; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_min() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kMin) { if (GetArena() == nullptr) { delete _impl_.type_.min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.min_); } clear_has_type(); } @@ -34845,7 +35990,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kMin) { clear_type(); set_has_min(); - _impl_.type_.min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(GetArena()); + _impl_.type_.min_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(GetArena()); } return _impl_.type_.min_; } @@ -34866,10 +36012,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kMax; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_max() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kMax) { if (GetArena() == nullptr) { delete _impl_.type_.max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.max_); } clear_has_type(); } @@ -34921,7 +36069,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kMax) { clear_type(); set_has_max(); - _impl_.type_.max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(GetArena()); + _impl_.type_.max_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(GetArena()); } return _impl_.type_.max_; } @@ -34942,10 +36091,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kProduct; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_product() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kProduct) { if (GetArena() == nullptr) { delete _impl_.type_.product_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.product_); } clear_has_type(); } @@ -34997,7 +36148,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kProduct) { clear_type(); set_has_product(); - _impl_.type_.product_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(GetArena()); + _impl_.type_.product_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(GetArena()); } return _impl_.type_.product_; } @@ -35018,10 +36170,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kFill; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_fill() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFill) { if (GetArena() == nullptr) { delete _impl_.type_.fill_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.fill_); } clear_has_type(); } @@ -35073,7 +36227,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kFill) { clear_type(); set_has_fill(); - _impl_.type_.fill_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(GetArena()); + _impl_.type_.fill_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(GetArena()); } return _impl_.type_.fill_; } @@ -35094,10 +36249,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kEma; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_ema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kEma) { if (GetArena() == nullptr) { delete _impl_.type_.ema_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ema_); } clear_has_type(); } @@ -35149,7 +36306,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kEma) { clear_type(); set_has_ema(); - _impl_.type_.ema_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(GetArena()); + _impl_.type_.ema_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(GetArena()); } return _impl_.type_.ema_; } @@ -35170,10 +36328,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingSum; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_sum() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingSum) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_sum_); } clear_has_type(); } @@ -35225,7 +36385,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingSum) { clear_type(); set_has_rolling_sum(); - _impl_.type_.rolling_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(GetArena()); + _impl_.type_.rolling_sum_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(GetArena()); } return _impl_.type_.rolling_sum_; } @@ -35246,10 +36407,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingGroup; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_group() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingGroup) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_group_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_group_); } clear_has_type(); } @@ -35301,7 +36464,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingGroup) { clear_type(); set_has_rolling_group(); - _impl_.type_.rolling_group_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(GetArena()); + _impl_.type_.rolling_group_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(GetArena()); } return _impl_.type_.rolling_group_; } @@ -35322,10 +36486,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingAvg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_avg() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingAvg) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_avg_); } clear_has_type(); } @@ -35377,7 +36543,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingAvg) { clear_type(); set_has_rolling_avg(); - _impl_.type_.rolling_avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(GetArena()); + _impl_.type_.rolling_avg_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(GetArena()); } return _impl_.type_.rolling_avg_; } @@ -35398,10 +36565,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingMin; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_min() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingMin) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_min_); } clear_has_type(); } @@ -35453,7 +36622,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingMin) { clear_type(); set_has_rolling_min(); - _impl_.type_.rolling_min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(GetArena()); + _impl_.type_.rolling_min_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(GetArena()); } return _impl_.type_.rolling_min_; } @@ -35474,10 +36644,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingMax; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_max() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingMax) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_max_); } clear_has_type(); } @@ -35529,7 +36701,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingMax) { clear_type(); set_has_rolling_max(); - _impl_.type_.rolling_max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(GetArena()); + _impl_.type_.rolling_max_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(GetArena()); } return _impl_.type_.rolling_max_; } @@ -35550,10 +36723,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingProduct; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_product() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingProduct) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_product_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_product_); } clear_has_type(); } @@ -35605,7 +36780,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingProduct) { clear_type(); set_has_rolling_product(); - _impl_.type_.rolling_product_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(GetArena()); + _impl_.type_.rolling_product_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(GetArena()); } return _impl_.type_.rolling_product_; } @@ -35626,10 +36802,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kDelta; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_delta() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kDelta) { if (GetArena() == nullptr) { delete _impl_.type_.delta_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.delta_); } clear_has_type(); } @@ -35681,7 +36859,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kDelta) { clear_type(); set_has_delta(); - _impl_.type_.delta_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(GetArena()); + _impl_.type_.delta_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(GetArena()); } return _impl_.type_.delta_; } @@ -35702,10 +36881,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kEms; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_ems() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kEms) { if (GetArena() == nullptr) { delete _impl_.type_.ems_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.ems_); } clear_has_type(); } @@ -35757,7 +36938,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kEms) { clear_type(); set_has_ems(); - _impl_.type_.ems_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(GetArena()); + _impl_.type_.ems_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(GetArena()); } return _impl_.type_.ems_; } @@ -35778,10 +36960,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kEmMin; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_min() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kEmMin) { if (GetArena() == nullptr) { delete _impl_.type_.em_min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_min_); } clear_has_type(); } @@ -35833,7 +37017,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kEmMin) { clear_type(); set_has_em_min(); - _impl_.type_.em_min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(GetArena()); + _impl_.type_.em_min_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(GetArena()); } return _impl_.type_.em_min_; } @@ -35854,10 +37039,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kEmMax; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_max() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kEmMax) { if (GetArena() == nullptr) { delete _impl_.type_.em_max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_max_); } clear_has_type(); } @@ -35909,7 +37096,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kEmMax) { clear_type(); set_has_em_max(); - _impl_.type_.em_max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(GetArena()); + _impl_.type_.em_max_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(GetArena()); } return _impl_.type_.em_max_; } @@ -35930,10 +37118,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kEmStd; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_std() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kEmStd) { if (GetArena() == nullptr) { delete _impl_.type_.em_std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.em_std_); } clear_has_type(); } @@ -35985,7 +37175,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kEmStd) { clear_type(); set_has_em_std(); - _impl_.type_.em_std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(GetArena()); + _impl_.type_.em_std_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(GetArena()); } return _impl_.type_.em_std_; } @@ -36006,10 +37197,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingCount; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_count() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingCount) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_count_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_count_); } clear_has_type(); } @@ -36061,7 +37254,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingCount) { clear_type(); set_has_rolling_count(); - _impl_.type_.rolling_count_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(GetArena()); + _impl_.type_.rolling_count_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(GetArena()); } return _impl_.type_.rolling_count_; } @@ -36082,10 +37276,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingStd; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_std() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingStd) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_std_); } clear_has_type(); } @@ -36137,7 +37333,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingStd) { clear_type(); set_has_rolling_std(); - _impl_.type_.rolling_std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(GetArena()); + _impl_.type_.rolling_std_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(GetArena()); } return _impl_.type_.rolling_std_; } @@ -36158,10 +37355,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingWavg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_wavg() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingWavg) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_wavg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_wavg_); } clear_has_type(); } @@ -36213,7 +37412,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingWavg) { clear_type(); set_has_rolling_wavg(); - _impl_.type_.rolling_wavg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(GetArena()); + _impl_.type_.rolling_wavg_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(GetArena()); } return _impl_.type_.rolling_wavg_; } @@ -36234,10 +37434,12 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_h _impl_._oneof_case_[0] = kRollingFormula; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kRollingFormula) { if (GetArena() == nullptr) { delete _impl_.type_.rolling_formula_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.rolling_formula_); } clear_has_type(); } @@ -36289,7 +37491,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kRollingFormula) { clear_type(); set_has_rolling_formula(); - _impl_.type_.rolling_formula_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(GetArena()); + _impl_.type_.rolling_formula_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(GetArena()); } return _impl_.type_.rolling_formula_; } @@ -36319,12 +37522,12 @@ inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn::has_spec() const { return value; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::clear_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ != nullptr) _impl_.spec_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_spec() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* p = _impl_.spec_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_); } @@ -36333,7 +37536,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOp return _internal_spec(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); } @@ -36346,7 +37549,7 @@ inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::unsafe_arena_set_a // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* released = _impl_.spec_; @@ -36365,7 +37568,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::unsafe_arena_release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) _impl_._has_bits_[0] &= ~0x00000001u; @@ -36374,28 +37577,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_mutable_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>(GetArena()); _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec*>(p); } return _impl_.spec_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::mutable_spec() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* _msg = _internal_mutable_spec(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) return _msg; } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_allocated_spec(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec*>(_impl_.spec_); + delete (_impl_.spec_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -36416,12 +37619,11 @@ inline int UpdateByRequest_UpdateByOperation_UpdateByColumn::match_pairs_size() return _internal_match_pairs_size(); } inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::clear_match_pairs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_pairs_.Clear(); } -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_match_pairs()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) return _s; @@ -36436,57 +37638,21 @@ inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn::mutable_ma // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) return _internal_mutable_match_pairs()->Mutable(index); } -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, const std::string& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, std::string&& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(std::move(value)); +template +inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_match_pairs()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) } -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, const char* value, - std::size_t size) { - _internal_mutable_match_pairs()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::set_match_pairs(int index, absl::string_view value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add(std::move(value)); +template +inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_match_pairs(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) } -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::add_match_pairs(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) -} inline const ::google::protobuf::RepeatedPtrField& UpdateByRequest_UpdateByOperation_UpdateByColumn::match_pairs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) @@ -36495,17 +37661,17 @@ UpdateByRequest_UpdateByOperation_UpdateByColumn::match_pairs() const ABSL_ATTRI inline ::google::protobuf::RepeatedPtrField* UpdateByRequest_UpdateByOperation_UpdateByColumn::mutable_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_match_pairs(); } inline const ::google::protobuf::RepeatedPtrField& UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_match_pairs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.match_pairs_; } inline ::google::protobuf::RepeatedPtrField* UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_mutable_match_pairs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.match_pairs_; } @@ -36524,10 +37690,12 @@ inline void UpdateByRequest_UpdateByOperation::set_has_column() { _impl_._oneof_case_[0] = kColumn; } inline void UpdateByRequest_UpdateByOperation::clear_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kColumn) { if (GetArena() == nullptr) { delete _impl_.type_.column_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.column_); } clear_has_type(); } @@ -36579,7 +37747,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio if (type_case() != kColumn) { clear_type(); set_has_column(); - _impl_.type_.column_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(GetArena()); + _impl_.type_.column_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(GetArena()); } return _impl_.type_.column_; } @@ -36609,7 +37778,7 @@ inline bool UpdateByRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& UpdateByRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -36618,7 +37787,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& UpdateByRequest::r return _internal_result_id(); } inline void UpdateByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -36631,7 +37800,7 @@ inline void UpdateByRequest::unsafe_arena_set_allocated_result_id(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -36650,7 +37819,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -36659,22 +37828,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) return _msg; } inline void UpdateByRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -36700,12 +37869,12 @@ inline bool UpdateByRequest::has_source_id() const { return value; } inline void UpdateByRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& UpdateByRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -36714,7 +37883,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& UpdateByRe return _internal_source_id(); } inline void UpdateByRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -36727,7 +37896,7 @@ inline void UpdateByRequest::unsafe_arena_set_allocated_source_id(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -36746,7 +37915,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -36755,28 +37924,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) return _msg; } inline void UpdateByRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -36796,12 +37965,12 @@ inline bool UpdateByRequest::has_options() const { return value; } inline void UpdateByRequest::clear_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ != nullptr) _impl_.options_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& UpdateByRequest::_internal_options() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* p = _impl_.options_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOptions_default_instance_); } @@ -36810,7 +37979,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOp return _internal_options(); } inline void UpdateByRequest::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); } @@ -36823,7 +37992,7 @@ inline void UpdateByRequest::unsafe_arena_set_allocated_options(::io::deephaven: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* released = _impl_.options_; @@ -36842,7 +38011,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* return released; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::unsafe_arena_release_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) _impl_._has_bits_[0] &= ~0x00000004u; @@ -36851,28 +38020,28 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* return temp; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::_internal_mutable_options() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.options_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>(GetArena()); _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions*>(p); } return _impl_.options_; } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* _msg = _internal_mutable_options(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) return _msg; } inline void UpdateByRequest::set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions*>(_impl_.options_); + delete (_impl_.options_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -36893,7 +38062,7 @@ inline int UpdateByRequest::operations_size() const { return _internal_operations_size(); } inline void UpdateByRequest::clear_operations() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.operations_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* UpdateByRequest::mutable_operations(int index) @@ -36904,7 +38073,7 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperatio inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>* UpdateByRequest::mutable_operations() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.operations) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_operations(); } inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation& UpdateByRequest::operations(int index) const @@ -36913,7 +38082,7 @@ inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOp return _internal_operations().Get(index); } inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* UpdateByRequest::add_operations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* _add = _internal_mutable_operations()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UpdateByRequest.operations) return _add; @@ -36925,12 +38094,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>& UpdateByRequest::_internal_operations() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.operations_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>* UpdateByRequest::_internal_mutable_operations() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.operations_; } @@ -36942,12 +38111,11 @@ inline int UpdateByRequest::group_by_columns_size() const { return _internal_group_by_columns_size(); } inline void UpdateByRequest::clear_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_columns_.Clear(); } -inline std::string* UpdateByRequest::add_group_by_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* UpdateByRequest::add_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) return _s; @@ -36962,57 +38130,21 @@ inline std::string* UpdateByRequest::mutable_group_by_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) return _internal_mutable_group_by_columns()->Mutable(index); } -inline void UpdateByRequest::set_group_by_columns(int index, const std::string& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::set_group_by_columns(int index, std::string&& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(std::move(value)); +template +inline void UpdateByRequest::set_group_by_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) } -inline void UpdateByRequest::set_group_by_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::set_group_by_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::set_group_by_columns(int index, absl::string_view value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::add_group_by_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::add_group_by_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add(std::move(value)); +template +inline void UpdateByRequest::add_group_by_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) } -inline void UpdateByRequest::add_group_by_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::add_group_by_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} -inline void UpdateByRequest::add_group_by_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) -} inline const ::google::protobuf::RepeatedPtrField& UpdateByRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) @@ -37021,17 +38153,17 @@ UpdateByRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* UpdateByRequest::mutable_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_columns(); } inline const ::google::protobuf::RepeatedPtrField& UpdateByRequest::_internal_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_columns_; } inline ::google::protobuf::RepeatedPtrField* UpdateByRequest::_internal_mutable_group_by_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_columns_; } @@ -37046,7 +38178,7 @@ inline bool SelectDistinctRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectDistinctRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -37055,7 +38187,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectDistinctRequ return _internal_result_id(); } inline void SelectDistinctRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37068,7 +38200,7 @@ inline void SelectDistinctRequest::unsafe_arena_set_allocated_result_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -37087,7 +38219,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -37096,22 +38228,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) return _msg; } inline void SelectDistinctRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37137,12 +38269,12 @@ inline bool SelectDistinctRequest::has_source_id() const { return value; } inline void SelectDistinctRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectDistinctRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -37151,7 +38283,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectDist return _internal_source_id(); } inline void SelectDistinctRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -37164,7 +38296,7 @@ inline void SelectDistinctRequest::unsafe_arena_set_allocated_source_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -37183,7 +38315,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -37192,28 +38324,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) return _msg; } inline void SelectDistinctRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -37234,12 +38366,11 @@ inline int SelectDistinctRequest::column_names_size() const { return _internal_column_names_size(); } inline void SelectDistinctRequest::clear_column_names() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_names_.Clear(); } -inline std::string* SelectDistinctRequest::add_column_names() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* SelectDistinctRequest::add_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_column_names()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) return _s; @@ -37254,57 +38385,21 @@ inline std::string* SelectDistinctRequest::mutable_column_names(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) return _internal_mutable_column_names()->Mutable(index); } -inline void SelectDistinctRequest::set_column_names(int index, const std::string& value) { - _internal_mutable_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::set_column_names(int index, std::string&& value) { - _internal_mutable_column_names()->Mutable(index)->assign(std::move(value)); +template +inline void SelectDistinctRequest::set_column_names(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_column_names()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) } -inline void SelectDistinctRequest::set_column_names(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::set_column_names(int index, const char* value, - std::size_t size) { - _internal_mutable_column_names()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::set_column_names(int index, absl::string_view value) { - _internal_mutable_column_names()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::add_column_names(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::add_column_names(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add(std::move(value)); +template +inline void SelectDistinctRequest::add_column_names(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_column_names(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) } -inline void SelectDistinctRequest::add_column_names(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::add_column_names(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} -inline void SelectDistinctRequest::add_column_names(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) -} inline const ::google::protobuf::RepeatedPtrField& SelectDistinctRequest::column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) @@ -37313,17 +38408,17 @@ SelectDistinctRequest::column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* SelectDistinctRequest::mutable_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_column_names(); } inline const ::google::protobuf::RepeatedPtrField& SelectDistinctRequest::_internal_column_names() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_names_; } inline ::google::protobuf::RepeatedPtrField* SelectDistinctRequest::_internal_mutable_column_names() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.column_names_; } @@ -37338,7 +38433,7 @@ inline bool DropColumnsRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& DropColumnsRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -37347,7 +38442,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& DropColumnsRequest return _internal_result_id(); } inline void DropColumnsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37360,7 +38455,7 @@ inline void DropColumnsRequest::unsafe_arena_set_allocated_result_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -37379,7 +38474,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -37388,22 +38483,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) return _msg; } inline void DropColumnsRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37429,12 +38524,12 @@ inline bool DropColumnsRequest::has_source_id() const { return value; } inline void DropColumnsRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& DropColumnsRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -37443,7 +38538,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& DropColumn return _internal_source_id(); } inline void DropColumnsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -37456,7 +38551,7 @@ inline void DropColumnsRequest::unsafe_arena_set_allocated_source_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -37475,7 +38570,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsReque return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -37484,28 +38579,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsReque return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) return _msg; } inline void DropColumnsRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -37526,12 +38621,11 @@ inline int DropColumnsRequest::column_names_size() const { return _internal_column_names_size(); } inline void DropColumnsRequest::clear_column_names() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_names_.Clear(); } -inline std::string* DropColumnsRequest::add_column_names() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* DropColumnsRequest::add_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_column_names()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) return _s; @@ -37546,57 +38640,21 @@ inline std::string* DropColumnsRequest::mutable_column_names(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) return _internal_mutable_column_names()->Mutable(index); } -inline void DropColumnsRequest::set_column_names(int index, const std::string& value) { - _internal_mutable_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::set_column_names(int index, std::string&& value) { - _internal_mutable_column_names()->Mutable(index)->assign(std::move(value)); +template +inline void DropColumnsRequest::set_column_names(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_column_names()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) } -inline void DropColumnsRequest::set_column_names(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::set_column_names(int index, const char* value, - std::size_t size) { - _internal_mutable_column_names()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::set_column_names(int index, absl::string_view value) { - _internal_mutable_column_names()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::add_column_names(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::add_column_names(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add(std::move(value)); +template +inline void DropColumnsRequest::add_column_names(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_column_names(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) } -inline void DropColumnsRequest::add_column_names(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::add_column_names(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} -inline void DropColumnsRequest::add_column_names(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_column_names()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) -} inline const ::google::protobuf::RepeatedPtrField& DropColumnsRequest::column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) @@ -37605,17 +38663,17 @@ DropColumnsRequest::column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* DropColumnsRequest::mutable_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_column_names(); } inline const ::google::protobuf::RepeatedPtrField& DropColumnsRequest::_internal_column_names() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_names_; } inline ::google::protobuf::RepeatedPtrField* DropColumnsRequest::_internal_mutable_column_names() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.column_names_; } @@ -37630,7 +38688,7 @@ inline bool UnstructuredFilterTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& UnstructuredFilterTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -37639,7 +38697,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& UnstructuredFilter return _internal_result_id(); } inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37652,7 +38710,7 @@ inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_result_id // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -37671,7 +38729,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableR return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -37680,22 +38738,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableR return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) return _msg; } inline void UnstructuredFilterTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37721,12 +38779,12 @@ inline bool UnstructuredFilterTableRequest::has_source_id() const { return value; } inline void UnstructuredFilterTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& UnstructuredFilterTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -37735,7 +38793,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& Unstructur return _internal_source_id(); } inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -37748,7 +38806,7 @@ inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_source_id // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -37767,7 +38825,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilt return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -37776,28 +38834,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilt return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) return _msg; } inline void UnstructuredFilterTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -37818,12 +38876,11 @@ inline int UnstructuredFilterTableRequest::filters_size() const { return _internal_filters_size(); } inline void UnstructuredFilterTableRequest::clear_filters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filters_.Clear(); } -inline std::string* UnstructuredFilterTableRequest::add_filters() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* UnstructuredFilterTableRequest::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_filters()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) return _s; @@ -37838,57 +38895,21 @@ inline std::string* UnstructuredFilterTableRequest::mutable_filters(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) return _internal_mutable_filters()->Mutable(index); } -inline void UnstructuredFilterTableRequest::set_filters(int index, const std::string& value) { - _internal_mutable_filters()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::set_filters(int index, std::string&& value) { - _internal_mutable_filters()->Mutable(index)->assign(std::move(value)); +template +inline void UnstructuredFilterTableRequest::set_filters(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_filters()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) } -inline void UnstructuredFilterTableRequest::set_filters(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_filters()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::set_filters(int index, const char* value, - std::size_t size) { - _internal_mutable_filters()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::set_filters(int index, absl::string_view value) { - _internal_mutable_filters()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::add_filters(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_filters()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::add_filters(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_filters()->Add(std::move(value)); +template +inline void UnstructuredFilterTableRequest::add_filters(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_filters(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) } -inline void UnstructuredFilterTableRequest::add_filters(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_filters()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::add_filters(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_filters()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} -inline void UnstructuredFilterTableRequest::add_filters(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_filters()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) -} inline const ::google::protobuf::RepeatedPtrField& UnstructuredFilterTableRequest::filters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) @@ -37897,17 +38918,17 @@ UnstructuredFilterTableRequest::filters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* UnstructuredFilterTableRequest::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_filters(); } inline const ::google::protobuf::RepeatedPtrField& UnstructuredFilterTableRequest::_internal_filters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filters_; } inline ::google::protobuf::RepeatedPtrField* UnstructuredFilterTableRequest::_internal_mutable_filters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.filters_; } @@ -37922,7 +38943,7 @@ inline bool HeadOrTailRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -37931,7 +38952,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailRequest: return _internal_result_id(); } inline void HeadOrTailRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -37944,7 +38965,7 @@ inline void HeadOrTailRequest::unsafe_arena_set_allocated_result_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -37963,7 +38984,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::relea return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -37972,22 +38993,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::unsaf return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) return _msg; } inline void HeadOrTailRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38013,12 +39034,12 @@ inline bool HeadOrTailRequest::has_source_id() const { return value; } inline void HeadOrTailRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -38027,7 +39048,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTail return _internal_source_id(); } inline void HeadOrTailRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -38040,7 +39061,7 @@ inline void HeadOrTailRequest::unsafe_arena_set_allocated_source_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -38059,7 +39080,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailReques return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -38068,28 +39089,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailReques return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) return _msg; } inline void HeadOrTailRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -38104,7 +39125,7 @@ inline void HeadOrTailRequest::set_allocated_source_id(::io::deephaven::proto::b // sint64 num_rows = 3 [jstype = JS_STRING]; inline void HeadOrTailRequest::clear_num_rows() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.num_rows_ = ::int64_t{0}; } inline ::int64_t HeadOrTailRequest::num_rows() const { @@ -38116,12 +39137,11 @@ inline void HeadOrTailRequest::set_num_rows(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.num_rows) } inline ::int64_t HeadOrTailRequest::_internal_num_rows() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.num_rows_; } inline void HeadOrTailRequest::_internal_set_num_rows(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.num_rows_ = value; } @@ -38136,7 +39156,7 @@ inline bool HeadOrTailByRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailByRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -38145,7 +39165,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailByReques return _internal_result_id(); } inline void HeadOrTailByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38158,7 +39178,7 @@ inline void HeadOrTailByRequest::unsafe_arena_set_allocated_result_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -38177,7 +39197,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -38186,22 +39206,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) return _msg; } inline void HeadOrTailByRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38227,12 +39247,12 @@ inline bool HeadOrTailByRequest::has_source_id() const { return value; } inline void HeadOrTailByRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailByRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -38241,7 +39261,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTail return _internal_source_id(); } inline void HeadOrTailByRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -38254,7 +39274,7 @@ inline void HeadOrTailByRequest::unsafe_arena_set_allocated_source_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -38273,7 +39293,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequ return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -38282,28 +39302,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequ return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) return _msg; } inline void HeadOrTailByRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -38318,7 +39338,7 @@ inline void HeadOrTailByRequest::set_allocated_source_id(::io::deephaven::proto: // sint64 num_rows = 3 [jstype = JS_STRING]; inline void HeadOrTailByRequest::clear_num_rows() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.num_rows_ = ::int64_t{0}; } inline ::int64_t HeadOrTailByRequest::num_rows() const { @@ -38330,12 +39350,11 @@ inline void HeadOrTailByRequest::set_num_rows(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.num_rows) } inline ::int64_t HeadOrTailByRequest::_internal_num_rows() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.num_rows_; } inline void HeadOrTailByRequest::_internal_set_num_rows(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.num_rows_ = value; } @@ -38347,12 +39366,11 @@ inline int HeadOrTailByRequest::group_by_column_specs_size() const { return _internal_group_by_column_specs_size(); } inline void HeadOrTailByRequest::clear_group_by_column_specs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_column_specs_.Clear(); } -inline std::string* HeadOrTailByRequest::add_group_by_column_specs() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* HeadOrTailByRequest::add_group_by_column_specs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_column_specs()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) return _s; @@ -38367,57 +39385,21 @@ inline std::string* HeadOrTailByRequest::mutable_group_by_column_specs(int index // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) return _internal_mutable_group_by_column_specs()->Mutable(index); } -inline void HeadOrTailByRequest::set_group_by_column_specs(int index, const std::string& value) { - _internal_mutable_group_by_column_specs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::set_group_by_column_specs(int index, std::string&& value) { - _internal_mutable_group_by_column_specs()->Mutable(index)->assign(std::move(value)); +template +inline void HeadOrTailByRequest::set_group_by_column_specs(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_column_specs()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) } -inline void HeadOrTailByRequest::set_group_by_column_specs(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_column_specs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::set_group_by_column_specs(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_column_specs()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::set_group_by_column_specs(int index, absl::string_view value) { - _internal_mutable_group_by_column_specs()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::add_group_by_column_specs(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_column_specs()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::add_group_by_column_specs(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_column_specs()->Add(std::move(value)); +template +inline void HeadOrTailByRequest::add_group_by_column_specs(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_column_specs(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) } -inline void HeadOrTailByRequest::add_group_by_column_specs(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_column_specs()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::add_group_by_column_specs(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_column_specs()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} -inline void HeadOrTailByRequest::add_group_by_column_specs(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_column_specs()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) -} inline const ::google::protobuf::RepeatedPtrField& HeadOrTailByRequest::group_by_column_specs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) @@ -38426,17 +39408,17 @@ HeadOrTailByRequest::group_by_column_specs() const ABSL_ATTRIBUTE_LIFETIME_BOUND inline ::google::protobuf::RepeatedPtrField* HeadOrTailByRequest::mutable_group_by_column_specs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_column_specs(); } inline const ::google::protobuf::RepeatedPtrField& HeadOrTailByRequest::_internal_group_by_column_specs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_column_specs_; } inline ::google::protobuf::RepeatedPtrField* HeadOrTailByRequest::_internal_mutable_group_by_column_specs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_column_specs_; } @@ -38451,7 +39433,7 @@ inline bool UngroupRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& UngroupRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -38460,7 +39442,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& UngroupRequest::re return _internal_result_id(); } inline void UngroupRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38473,7 +39455,7 @@ inline void UngroupRequest::unsafe_arena_set_allocated_result_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -38492,7 +39474,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -38501,22 +39483,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) return _msg; } inline void UngroupRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38542,12 +39524,12 @@ inline bool UngroupRequest::has_source_id() const { return value; } inline void UngroupRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& UngroupRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -38556,7 +39538,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& UngroupReq return _internal_source_id(); } inline void UngroupRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -38569,7 +39551,7 @@ inline void UngroupRequest::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -38588,7 +39570,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -38597,28 +39579,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) return _msg; } inline void UngroupRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -38633,7 +39615,7 @@ inline void UngroupRequest::set_allocated_source_id(::io::deephaven::proto::back // bool null_fill = 3; inline void UngroupRequest::clear_null_fill() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.null_fill_ = false; } inline bool UngroupRequest::null_fill() const { @@ -38645,12 +39627,11 @@ inline void UngroupRequest::set_null_fill(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UngroupRequest.null_fill) } inline bool UngroupRequest::_internal_null_fill() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.null_fill_; } inline void UngroupRequest::_internal_set_null_fill(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.null_fill_ = value; } @@ -38662,12 +39643,11 @@ inline int UngroupRequest::columns_to_ungroup_size() const { return _internal_columns_to_ungroup_size(); } inline void UngroupRequest::clear_columns_to_ungroup() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_ungroup_.Clear(); } -inline std::string* UngroupRequest::add_columns_to_ungroup() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* UngroupRequest::add_columns_to_ungroup() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_ungroup()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) return _s; @@ -38682,57 +39662,21 @@ inline std::string* UngroupRequest::mutable_columns_to_ungroup(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) return _internal_mutable_columns_to_ungroup()->Mutable(index); } -inline void UngroupRequest::set_columns_to_ungroup(int index, const std::string& value) { - _internal_mutable_columns_to_ungroup()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::set_columns_to_ungroup(int index, std::string&& value) { - _internal_mutable_columns_to_ungroup()->Mutable(index)->assign(std::move(value)); +template +inline void UngroupRequest::set_columns_to_ungroup(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_ungroup()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) } -inline void UngroupRequest::set_columns_to_ungroup(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_ungroup()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::set_columns_to_ungroup(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_ungroup()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::set_columns_to_ungroup(int index, absl::string_view value) { - _internal_mutable_columns_to_ungroup()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::add_columns_to_ungroup(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_ungroup()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::add_columns_to_ungroup(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_ungroup()->Add(std::move(value)); +template +inline void UngroupRequest::add_columns_to_ungroup(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_ungroup(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) } -inline void UngroupRequest::add_columns_to_ungroup(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_ungroup()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::add_columns_to_ungroup(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_ungroup()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} -inline void UngroupRequest::add_columns_to_ungroup(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_ungroup()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) -} inline const ::google::protobuf::RepeatedPtrField& UngroupRequest::columns_to_ungroup() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) @@ -38741,17 +39685,17 @@ UngroupRequest::columns_to_ungroup() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* UngroupRequest::mutable_columns_to_ungroup() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_ungroup(); } inline const ::google::protobuf::RepeatedPtrField& UngroupRequest::_internal_columns_to_ungroup() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_ungroup_; } inline ::google::protobuf::RepeatedPtrField* UngroupRequest::_internal_mutable_columns_to_ungroup() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_ungroup_; } @@ -38766,7 +39710,7 @@ inline bool MergeTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -38775,7 +39719,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeTablesRequest return _internal_result_id(); } inline void MergeTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38788,7 +39732,7 @@ inline void MergeTablesRequest::unsafe_arena_set_allocated_result_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -38807,7 +39751,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -38816,22 +39760,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) return _msg; } inline void MergeTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38858,7 +39802,7 @@ inline int MergeTablesRequest::source_ids_size() const { return _internal_source_ids_size(); } inline void MergeTablesRequest::clear_source_ids() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.source_ids_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::TableReference* MergeTablesRequest::mutable_source_ids(int index) @@ -38869,7 +39813,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* MergeTablesReque inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>* MergeTablesRequest::mutable_source_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.MergeTablesRequest.source_ids) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_source_ids(); } inline const ::io::deephaven::proto::backplane::grpc::TableReference& MergeTablesRequest::source_ids(int index) const @@ -38878,7 +39822,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& MergeTable return _internal_source_ids().Get(index); } inline ::io::deephaven::proto::backplane::grpc::TableReference* MergeTablesRequest::add_source_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::TableReference* _add = _internal_mutable_source_ids()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MergeTablesRequest.source_ids) return _add; @@ -38890,18 +39834,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>& MergeTablesRequest::_internal_source_ids() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.source_ids_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>* MergeTablesRequest::_internal_mutable_source_ids() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.source_ids_; } // string key_column = 3; inline void MergeTablesRequest::clear_key_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_.ClearToEmpty(); } inline const std::string& MergeTablesRequest::key_column() const @@ -38912,8 +39856,7 @@ inline const std::string& MergeTablesRequest::key_column() const template inline PROTOBUF_ALWAYS_INLINE void MergeTablesRequest::set_key_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column) } @@ -38923,26 +39866,24 @@ inline std::string* MergeTablesRequest::mutable_key_column() ABSL_ATTRIBUTE_LIFE return _s; } inline const std::string& MergeTablesRequest::_internal_key_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.key_column_.Get(); } inline void MergeTablesRequest::_internal_set_key_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_.Set(value, GetArena()); } inline std::string* MergeTablesRequest::_internal_mutable_key_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.key_column_.Mutable( GetArena()); } inline std::string* MergeTablesRequest::release_key_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column) return _impl_.key_column_.Release(); } inline void MergeTablesRequest::set_allocated_key_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.key_column_.IsDefault()) { @@ -38963,7 +39904,7 @@ inline bool SnapshotTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -38972,7 +39913,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotTableReque return _internal_result_id(); } inline void SnapshotTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -38985,7 +39926,7 @@ inline void SnapshotTableRequest::unsafe_arena_set_allocated_result_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -39004,7 +39945,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::re return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -39013,22 +39954,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) return _msg; } inline void SnapshotTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -39054,12 +39995,12 @@ inline bool SnapshotTableRequest::has_source_id() const { return value; } inline void SnapshotTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -39068,7 +40009,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotTa return _internal_source_id(); } inline void SnapshotTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -39081,7 +40022,7 @@ inline void SnapshotTableRequest::unsafe_arena_set_allocated_source_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -39100,7 +40041,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableReq return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -39109,28 +40050,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableReq return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) return _msg; } inline void SnapshotTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -39154,7 +40095,7 @@ inline bool SnapshotWhenTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotWhenTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -39163,7 +40104,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotWhenTableR return _internal_result_id(); } inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -39176,7 +40117,7 @@ inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_result_id(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -39195,7 +40136,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -39204,22 +40145,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) return _msg; } inline void SnapshotWhenTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -39245,12 +40186,12 @@ inline bool SnapshotWhenTableRequest::has_base_id() const { return value; } inline void SnapshotWhenTableRequest::clear_base_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.base_id_ != nullptr) _impl_.base_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::_internal_base_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.base_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -39259,7 +40200,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWh return _internal_base_id(); } inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_base_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.base_id_); } @@ -39272,7 +40213,7 @@ inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_base_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::release_base_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.base_id_; @@ -39291,7 +40232,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTabl return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::unsafe_arena_release_base_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -39300,28 +40241,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTabl return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::_internal_mutable_base_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.base_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.base_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.base_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::mutable_base_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_base_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) return _msg; } inline void SnapshotWhenTableRequest::set_allocated_base_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.base_id_); + delete (_impl_.base_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -39341,12 +40282,12 @@ inline bool SnapshotWhenTableRequest::has_trigger_id() const { return value; } inline void SnapshotWhenTableRequest::clear_trigger_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.trigger_id_ != nullptr) _impl_.trigger_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::_internal_trigger_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.trigger_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -39355,7 +40296,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWh return _internal_trigger_id(); } inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_trigger_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.trigger_id_); } @@ -39368,7 +40309,7 @@ inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_trigger_id(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::release_trigger_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.trigger_id_; @@ -39387,7 +40328,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTabl return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::unsafe_arena_release_trigger_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -39396,28 +40337,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTabl return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::_internal_mutable_trigger_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.trigger_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.trigger_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.trigger_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::mutable_trigger_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_trigger_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) return _msg; } inline void SnapshotWhenTableRequest::set_allocated_trigger_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.trigger_id_); + delete (_impl_.trigger_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -39432,7 +40373,7 @@ inline void SnapshotWhenTableRequest::set_allocated_trigger_id(::io::deephaven:: // bool initial = 4; inline void SnapshotWhenTableRequest::clear_initial() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.initial_ = false; } inline bool SnapshotWhenTableRequest::initial() const { @@ -39444,18 +40385,17 @@ inline void SnapshotWhenTableRequest::set_initial(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.initial) } inline bool SnapshotWhenTableRequest::_internal_initial() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.initial_; } inline void SnapshotWhenTableRequest::_internal_set_initial(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.initial_ = value; } // bool incremental = 5; inline void SnapshotWhenTableRequest::clear_incremental() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.incremental_ = false; } inline bool SnapshotWhenTableRequest::incremental() const { @@ -39467,18 +40407,17 @@ inline void SnapshotWhenTableRequest::set_incremental(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.incremental) } inline bool SnapshotWhenTableRequest::_internal_incremental() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.incremental_; } inline void SnapshotWhenTableRequest::_internal_set_incremental(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.incremental_ = value; } // bool history = 6; inline void SnapshotWhenTableRequest::clear_history() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.history_ = false; } inline bool SnapshotWhenTableRequest::history() const { @@ -39490,12 +40429,11 @@ inline void SnapshotWhenTableRequest::set_history(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.history) } inline bool SnapshotWhenTableRequest::_internal_history() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.history_; } inline void SnapshotWhenTableRequest::_internal_set_history(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.history_ = value; } @@ -39507,12 +40445,11 @@ inline int SnapshotWhenTableRequest::stamp_columns_size() const { return _internal_stamp_columns_size(); } inline void SnapshotWhenTableRequest::clear_stamp_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.stamp_columns_.Clear(); } -inline std::string* SnapshotWhenTableRequest::add_stamp_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* SnapshotWhenTableRequest::add_stamp_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_stamp_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) return _s; @@ -39527,57 +40464,21 @@ inline std::string* SnapshotWhenTableRequest::mutable_stamp_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) return _internal_mutable_stamp_columns()->Mutable(index); } -inline void SnapshotWhenTableRequest::set_stamp_columns(int index, const std::string& value) { - _internal_mutable_stamp_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::set_stamp_columns(int index, std::string&& value) { - _internal_mutable_stamp_columns()->Mutable(index)->assign(std::move(value)); +template +inline void SnapshotWhenTableRequest::set_stamp_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_stamp_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) } -inline void SnapshotWhenTableRequest::set_stamp_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_stamp_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::set_stamp_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_stamp_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::set_stamp_columns(int index, absl::string_view value) { - _internal_mutable_stamp_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::add_stamp_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_stamp_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::add_stamp_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_stamp_columns()->Add(std::move(value)); +template +inline void SnapshotWhenTableRequest::add_stamp_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_stamp_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) } -inline void SnapshotWhenTableRequest::add_stamp_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_stamp_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::add_stamp_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_stamp_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} -inline void SnapshotWhenTableRequest::add_stamp_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_stamp_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) -} inline const ::google::protobuf::RepeatedPtrField& SnapshotWhenTableRequest::stamp_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) @@ -39586,17 +40487,17 @@ SnapshotWhenTableRequest::stamp_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* SnapshotWhenTableRequest::mutable_stamp_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_stamp_columns(); } inline const ::google::protobuf::RepeatedPtrField& SnapshotWhenTableRequest::_internal_stamp_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.stamp_columns_; } inline ::google::protobuf::RepeatedPtrField* SnapshotWhenTableRequest::_internal_mutable_stamp_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.stamp_columns_; } @@ -39611,7 +40512,7 @@ inline bool CrossJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CrossJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -39620,7 +40521,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CrossJoinTablesReq return _internal_result_id(); } inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -39633,7 +40534,7 @@ inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -39652,7 +40553,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -39661,22 +40562,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) return _msg; } inline void CrossJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -39702,12 +40603,12 @@ inline bool CrossJoinTablesRequest::has_left_id() const { return value; } inline void CrossJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -39716,7 +40617,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinT return _internal_left_id(); } inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -39729,7 +40630,7 @@ inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -39748,7 +40649,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -39757,28 +40658,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) return _msg; } inline void CrossJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -39798,12 +40699,12 @@ inline bool CrossJoinTablesRequest::has_right_id() const { return value; } inline void CrossJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -39812,7 +40713,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinT return _internal_right_id(); } inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -39825,7 +40726,7 @@ inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -39844,7 +40745,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -39853,28 +40754,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) return _msg; } inline void CrossJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -39895,12 +40796,11 @@ inline int CrossJoinTablesRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void CrossJoinTablesRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* CrossJoinTablesRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* CrossJoinTablesRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) return _s; @@ -39915,57 +40815,21 @@ inline std::string* CrossJoinTablesRequest::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void CrossJoinTablesRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void CrossJoinTablesRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) } -inline void CrossJoinTablesRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void CrossJoinTablesRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) } -inline void CrossJoinTablesRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} -inline void CrossJoinTablesRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& CrossJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) @@ -39974,17 +40838,17 @@ CrossJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* CrossJoinTablesRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& CrossJoinTablesRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* CrossJoinTablesRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -39996,12 +40860,11 @@ inline int CrossJoinTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void CrossJoinTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* CrossJoinTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* CrossJoinTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) return _s; @@ -40016,57 +40879,21 @@ inline std::string* CrossJoinTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void CrossJoinTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void CrossJoinTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) } -inline void CrossJoinTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void CrossJoinTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) } -inline void CrossJoinTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} -inline void CrossJoinTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& CrossJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) @@ -40075,23 +40902,23 @@ CrossJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* CrossJoinTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& CrossJoinTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* CrossJoinTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } // int32 reserve_bits = 6; inline void CrossJoinTablesRequest::clear_reserve_bits() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reserve_bits_ = 0; } inline ::int32_t CrossJoinTablesRequest::reserve_bits() const { @@ -40103,12 +40930,11 @@ inline void CrossJoinTablesRequest::set_reserve_bits(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.reserve_bits) } inline ::int32_t CrossJoinTablesRequest::_internal_reserve_bits() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.reserve_bits_; } inline void CrossJoinTablesRequest::_internal_set_reserve_bits(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.reserve_bits_ = value; } @@ -40123,7 +40949,7 @@ inline bool NaturalJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& NaturalJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -40132,7 +40958,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& NaturalJoinTablesR return _internal_result_id(); } inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -40145,7 +40971,7 @@ inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -40164,7 +40990,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -40173,22 +40999,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) return _msg; } inline void NaturalJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -40214,12 +41040,12 @@ inline bool NaturalJoinTablesRequest::has_left_id() const { return value; } inline void NaturalJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -40228,7 +41054,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoi return _internal_left_id(); } inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -40241,7 +41067,7 @@ inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -40260,7 +41086,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTable return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -40269,28 +41095,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTable return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) return _msg; } inline void NaturalJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -40310,12 +41136,12 @@ inline bool NaturalJoinTablesRequest::has_right_id() const { return value; } inline void NaturalJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -40324,7 +41150,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoi return _internal_right_id(); } inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -40337,7 +41163,7 @@ inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -40356,7 +41182,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTable return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -40365,28 +41191,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTable return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) return _msg; } inline void NaturalJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -40407,12 +41233,11 @@ inline int NaturalJoinTablesRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void NaturalJoinTablesRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* NaturalJoinTablesRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* NaturalJoinTablesRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) return _s; @@ -40427,57 +41252,21 @@ inline std::string* NaturalJoinTablesRequest::mutable_columns_to_match(int index // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void NaturalJoinTablesRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void NaturalJoinTablesRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) } -inline void NaturalJoinTablesRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void NaturalJoinTablesRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) } -inline void NaturalJoinTablesRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} -inline void NaturalJoinTablesRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& NaturalJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) @@ -40486,17 +41275,17 @@ NaturalJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND inline ::google::protobuf::RepeatedPtrField* NaturalJoinTablesRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& NaturalJoinTablesRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* NaturalJoinTablesRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -40508,12 +41297,11 @@ inline int NaturalJoinTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void NaturalJoinTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* NaturalJoinTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* NaturalJoinTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) return _s; @@ -40528,57 +41316,21 @@ inline std::string* NaturalJoinTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void NaturalJoinTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void NaturalJoinTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) } -inline void NaturalJoinTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void NaturalJoinTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) } -inline void NaturalJoinTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} -inline void NaturalJoinTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& NaturalJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) @@ -40587,17 +41339,17 @@ NaturalJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* NaturalJoinTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& NaturalJoinTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* NaturalJoinTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } @@ -40612,7 +41364,7 @@ inline bool ExactJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExactJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -40621,7 +41373,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExactJoinTablesReq return _internal_result_id(); } inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -40634,7 +41386,7 @@ inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -40653,7 +41405,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -40662,22 +41414,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) return _msg; } inline void ExactJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -40703,12 +41455,12 @@ inline bool ExactJoinTablesRequest::has_left_id() const { return value; } inline void ExactJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -40717,7 +41469,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinT return _internal_left_id(); } inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -40730,7 +41482,7 @@ inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -40749,7 +41501,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -40758,28 +41510,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) return _msg; } inline void ExactJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -40799,12 +41551,12 @@ inline bool ExactJoinTablesRequest::has_right_id() const { return value; } inline void ExactJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -40813,7 +41565,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinT return _internal_right_id(); } inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -40826,7 +41578,7 @@ inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -40845,7 +41597,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -40854,28 +41606,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) return _msg; } inline void ExactJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -40896,12 +41648,11 @@ inline int ExactJoinTablesRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void ExactJoinTablesRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* ExactJoinTablesRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* ExactJoinTablesRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) return _s; @@ -40916,57 +41667,21 @@ inline std::string* ExactJoinTablesRequest::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void ExactJoinTablesRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void ExactJoinTablesRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) } -inline void ExactJoinTablesRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void ExactJoinTablesRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) } -inline void ExactJoinTablesRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} -inline void ExactJoinTablesRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& ExactJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) @@ -40975,17 +41690,17 @@ ExactJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* ExactJoinTablesRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& ExactJoinTablesRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* ExactJoinTablesRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -40997,12 +41712,11 @@ inline int ExactJoinTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void ExactJoinTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* ExactJoinTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* ExactJoinTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) return _s; @@ -41017,57 +41731,21 @@ inline std::string* ExactJoinTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void ExactJoinTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void ExactJoinTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) } -inline void ExactJoinTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void ExactJoinTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) } -inline void ExactJoinTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} -inline void ExactJoinTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& ExactJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) @@ -41076,17 +41754,17 @@ ExactJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* ExactJoinTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& ExactJoinTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* ExactJoinTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } @@ -41101,7 +41779,7 @@ inline bool LeftJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& LeftJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -41110,7 +41788,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& LeftJoinTablesRequ return _internal_result_id(); } inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -41123,7 +41801,7 @@ inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -41142,7 +41820,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -41151,22 +41829,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) return _msg; } inline void LeftJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -41192,12 +41870,12 @@ inline bool LeftJoinTablesRequest::has_left_id() const { return value; } inline void LeftJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -41206,7 +41884,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTa return _internal_left_id(); } inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -41219,7 +41897,7 @@ inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -41238,7 +41916,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -41247,28 +41925,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) return _msg; } inline void LeftJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -41288,12 +41966,12 @@ inline bool LeftJoinTablesRequest::has_right_id() const { return value; } inline void LeftJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -41302,7 +41980,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTa return _internal_right_id(); } inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -41315,7 +41993,7 @@ inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -41334,7 +42012,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -41343,28 +42021,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) return _msg; } inline void LeftJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -41385,12 +42063,11 @@ inline int LeftJoinTablesRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void LeftJoinTablesRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* LeftJoinTablesRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* LeftJoinTablesRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) return _s; @@ -41405,57 +42082,21 @@ inline std::string* LeftJoinTablesRequest::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void LeftJoinTablesRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void LeftJoinTablesRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) } -inline void LeftJoinTablesRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void LeftJoinTablesRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) } -inline void LeftJoinTablesRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} -inline void LeftJoinTablesRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& LeftJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) @@ -41464,17 +42105,17 @@ LeftJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* LeftJoinTablesRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& LeftJoinTablesRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* LeftJoinTablesRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -41486,12 +42127,11 @@ inline int LeftJoinTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void LeftJoinTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* LeftJoinTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* LeftJoinTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) return _s; @@ -41506,57 +42146,21 @@ inline std::string* LeftJoinTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void LeftJoinTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void LeftJoinTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) } -inline void LeftJoinTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void LeftJoinTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) } -inline void LeftJoinTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} -inline void LeftJoinTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& LeftJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) @@ -41565,17 +42169,17 @@ LeftJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* LeftJoinTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& LeftJoinTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* LeftJoinTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } @@ -41590,7 +42194,7 @@ inline bool AsOfJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AsOfJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -41599,7 +42203,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AsOfJoinTablesRequ return _internal_result_id(); } inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -41612,7 +42216,7 @@ inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -41631,7 +42235,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -41640,22 +42244,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) return _msg; } inline void AsOfJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -41681,12 +42285,12 @@ inline bool AsOfJoinTablesRequest::has_left_id() const { return value; } inline void AsOfJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -41695,7 +42299,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTa return _internal_left_id(); } inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -41708,7 +42312,7 @@ inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -41727,7 +42331,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -41736,28 +42340,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) return _msg; } inline void AsOfJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -41777,12 +42381,12 @@ inline bool AsOfJoinTablesRequest::has_right_id() const { return value; } inline void AsOfJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -41791,7 +42395,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTa return _internal_right_id(); } inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -41804,7 +42408,7 @@ inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -41823,7 +42427,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -41832,28 +42436,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) return _msg; } inline void AsOfJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -41874,12 +42478,11 @@ inline int AsOfJoinTablesRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void AsOfJoinTablesRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* AsOfJoinTablesRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AsOfJoinTablesRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) return _s; @@ -41894,57 +42497,21 @@ inline std::string* AsOfJoinTablesRequest::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void AsOfJoinTablesRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void AsOfJoinTablesRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) } -inline void AsOfJoinTablesRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void AsOfJoinTablesRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) } -inline void AsOfJoinTablesRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} -inline void AsOfJoinTablesRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& AsOfJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) @@ -41953,17 +42520,17 @@ AsOfJoinTablesRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AsOfJoinTablesRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& AsOfJoinTablesRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* AsOfJoinTablesRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -41975,12 +42542,11 @@ inline int AsOfJoinTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void AsOfJoinTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* AsOfJoinTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AsOfJoinTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) return _s; @@ -41995,57 +42561,21 @@ inline std::string* AsOfJoinTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void AsOfJoinTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void AsOfJoinTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) } -inline void AsOfJoinTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void AsOfJoinTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) } -inline void AsOfJoinTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} -inline void AsOfJoinTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& AsOfJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) @@ -42054,23 +42584,23 @@ AsOfJoinTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AsOfJoinTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& AsOfJoinTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* AsOfJoinTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; inline void AsOfJoinTablesRequest::clear_as_of_match_rule() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_match_rule_ = 0; } inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::as_of_match_rule() const { @@ -42082,12 +42612,11 @@ inline void AsOfJoinTablesRequest::set_as_of_match_rule(::io::deephaven::proto:: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.as_of_match_rule) } inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::_internal_as_of_match_rule() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule>(_impl_.as_of_match_rule_); } inline void AsOfJoinTablesRequest::_internal_set_as_of_match_rule(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_match_rule_ = value; } @@ -42102,7 +42631,7 @@ inline bool AjRajTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AjRajTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -42111,7 +42640,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AjRajTablesRequest return _internal_result_id(); } inline void AjRajTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -42124,7 +42653,7 @@ inline void AjRajTablesRequest::unsafe_arena_set_allocated_result_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -42143,7 +42672,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -42152,22 +42681,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) return _msg; } inline void AjRajTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -42193,12 +42722,12 @@ inline bool AjRajTablesRequest::has_left_id() const { return value; } inline void AjRajTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -42207,7 +42736,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTable return _internal_left_id(); } inline void AjRajTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -42220,7 +42749,7 @@ inline void AjRajTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -42239,7 +42768,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesReque return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -42248,28 +42777,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesReque return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) return _msg; } inline void AjRajTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -42289,12 +42818,12 @@ inline bool AjRajTablesRequest::has_right_id() const { return value; } inline void AjRajTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -42303,7 +42832,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTable return _internal_right_id(); } inline void AjRajTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -42316,7 +42845,7 @@ inline void AjRajTablesRequest::unsafe_arena_set_allocated_right_id(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -42335,7 +42864,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesReque return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -42344,28 +42873,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesReque return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) return _msg; } inline void AjRajTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -42386,12 +42915,11 @@ inline int AjRajTablesRequest::exact_match_columns_size() const { return _internal_exact_match_columns_size(); } inline void AjRajTablesRequest::clear_exact_match_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.exact_match_columns_.Clear(); } -inline std::string* AjRajTablesRequest::add_exact_match_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AjRajTablesRequest::add_exact_match_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_exact_match_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) return _s; @@ -42406,57 +42934,21 @@ inline std::string* AjRajTablesRequest::mutable_exact_match_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) return _internal_mutable_exact_match_columns()->Mutable(index); } -inline void AjRajTablesRequest::set_exact_match_columns(int index, const std::string& value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::set_exact_match_columns(int index, std::string&& value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(std::move(value)); +template +inline void AjRajTablesRequest::set_exact_match_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_exact_match_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) } -inline void AjRajTablesRequest::set_exact_match_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::set_exact_match_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::set_exact_match_columns(int index, absl::string_view value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::add_exact_match_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::add_exact_match_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add(std::move(value)); +template +inline void AjRajTablesRequest::add_exact_match_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_exact_match_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) } -inline void AjRajTablesRequest::add_exact_match_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::add_exact_match_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} -inline void AjRajTablesRequest::add_exact_match_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) -} inline const ::google::protobuf::RepeatedPtrField& AjRajTablesRequest::exact_match_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) @@ -42465,23 +42957,23 @@ AjRajTablesRequest::exact_match_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AjRajTablesRequest::mutable_exact_match_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_exact_match_columns(); } inline const ::google::protobuf::RepeatedPtrField& AjRajTablesRequest::_internal_exact_match_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.exact_match_columns_; } inline ::google::protobuf::RepeatedPtrField* AjRajTablesRequest::_internal_mutable_exact_match_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.exact_match_columns_; } // string as_of_column = 5; inline void AjRajTablesRequest::clear_as_of_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_column_.ClearToEmpty(); } inline const std::string& AjRajTablesRequest::as_of_column() const @@ -42492,8 +42984,7 @@ inline const std::string& AjRajTablesRequest::as_of_column() const template inline PROTOBUF_ALWAYS_INLINE void AjRajTablesRequest::set_as_of_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column) } @@ -42503,26 +42994,24 @@ inline std::string* AjRajTablesRequest::mutable_as_of_column() ABSL_ATTRIBUTE_LI return _s; } inline const std::string& AjRajTablesRequest::_internal_as_of_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.as_of_column_.Get(); } inline void AjRajTablesRequest::_internal_set_as_of_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_column_.Set(value, GetArena()); } inline std::string* AjRajTablesRequest::_internal_mutable_as_of_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.as_of_column_.Mutable( GetArena()); } inline std::string* AjRajTablesRequest::release_as_of_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column) return _impl_.as_of_column_.Release(); } inline void AjRajTablesRequest::set_allocated_as_of_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.as_of_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.as_of_column_.IsDefault()) { @@ -42540,12 +43029,11 @@ inline int AjRajTablesRequest::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void AjRajTablesRequest::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* AjRajTablesRequest::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AjRajTablesRequest::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) return _s; @@ -42560,57 +43048,21 @@ inline std::string* AjRajTablesRequest::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void AjRajTablesRequest::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void AjRajTablesRequest::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) } -inline void AjRajTablesRequest::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void AjRajTablesRequest::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) } -inline void AjRajTablesRequest::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} -inline void AjRajTablesRequest::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& AjRajTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) @@ -42619,17 +43071,17 @@ AjRajTablesRequest::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AjRajTablesRequest::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& AjRajTablesRequest::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* AjRajTablesRequest::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } @@ -42644,12 +43096,12 @@ inline bool MultiJoinInput::has_source_id() const { return value; } inline void MultiJoinInput::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& MultiJoinInput::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -42658,7 +43110,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& MultiJoinI return _internal_source_id(); } inline void MultiJoinInput::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -42671,7 +43123,7 @@ inline void MultiJoinInput::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -42690,7 +43142,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput:: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -42699,28 +43151,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput:: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) return _msg; } inline void MultiJoinInput::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -42741,12 +43193,11 @@ inline int MultiJoinInput::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void MultiJoinInput::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* MultiJoinInput::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* MultiJoinInput::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) return _s; @@ -42761,57 +43212,21 @@ inline std::string* MultiJoinInput::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void MultiJoinInput::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void MultiJoinInput::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) } -inline void MultiJoinInput::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void MultiJoinInput::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) } -inline void MultiJoinInput::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} -inline void MultiJoinInput::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& MultiJoinInput::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) @@ -42820,17 +43235,17 @@ MultiJoinInput::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* MultiJoinInput::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& MultiJoinInput::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* MultiJoinInput::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -42842,12 +43257,11 @@ inline int MultiJoinInput::columns_to_add_size() const { return _internal_columns_to_add_size(); } inline void MultiJoinInput::clear_columns_to_add() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_add_.Clear(); } -inline std::string* MultiJoinInput::add_columns_to_add() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* MultiJoinInput::add_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_add()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) return _s; @@ -42862,57 +43276,21 @@ inline std::string* MultiJoinInput::mutable_columns_to_add(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) return _internal_mutable_columns_to_add()->Mutable(index); } -inline void MultiJoinInput::set_columns_to_add(int index, const std::string& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::set_columns_to_add(int index, std::string&& value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(std::move(value)); +template +inline void MultiJoinInput::set_columns_to_add(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_add()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) } -inline void MultiJoinInput::set_columns_to_add(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_add()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::set_columns_to_add(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_add()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::set_columns_to_add(int index, absl::string_view value) { - _internal_mutable_columns_to_add()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::add_columns_to_add(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::add_columns_to_add(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add(std::move(value)); +template +inline void MultiJoinInput::add_columns_to_add(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_add(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) } -inline void MultiJoinInput::add_columns_to_add(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::add_columns_to_add(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} -inline void MultiJoinInput::add_columns_to_add(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_add()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) -} inline const ::google::protobuf::RepeatedPtrField& MultiJoinInput::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) @@ -42921,17 +43299,17 @@ MultiJoinInput::columns_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* MultiJoinInput::mutable_columns_to_add() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_add(); } inline const ::google::protobuf::RepeatedPtrField& MultiJoinInput::_internal_columns_to_add() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_add_; } inline ::google::protobuf::RepeatedPtrField* MultiJoinInput::_internal_mutable_columns_to_add() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_add_; } @@ -42946,7 +43324,7 @@ inline bool MultiJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& MultiJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -42955,7 +43333,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& MultiJoinTablesReq return _internal_result_id(); } inline void MultiJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -42968,7 +43346,7 @@ inline void MultiJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -42987,7 +43365,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -42996,22 +43374,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) return _msg; } inline void MultiJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -43038,7 +43416,7 @@ inline int MultiJoinTablesRequest::multi_join_inputs_size() const { return _internal_multi_join_inputs_size(); } inline void MultiJoinTablesRequest::clear_multi_join_inputs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.multi_join_inputs_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::MultiJoinInput* MultiJoinTablesRequest::mutable_multi_join_inputs(int index) @@ -43049,7 +43427,7 @@ inline ::io::deephaven::proto::backplane::grpc::MultiJoinInput* MultiJoinTablesR inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>* MultiJoinTablesRequest::mutable_multi_join_inputs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.multi_join_inputs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_multi_join_inputs(); } inline const ::io::deephaven::proto::backplane::grpc::MultiJoinInput& MultiJoinTablesRequest::multi_join_inputs(int index) const @@ -43058,7 +43436,7 @@ inline const ::io::deephaven::proto::backplane::grpc::MultiJoinInput& MultiJoinT return _internal_multi_join_inputs().Get(index); } inline ::io::deephaven::proto::backplane::grpc::MultiJoinInput* MultiJoinTablesRequest::add_multi_join_inputs() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::MultiJoinInput* _add = _internal_mutable_multi_join_inputs()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.multi_join_inputs) return _add; @@ -43070,12 +43448,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>& MultiJoinTablesRequest::_internal_multi_join_inputs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.multi_join_inputs_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>* MultiJoinTablesRequest::_internal_mutable_multi_join_inputs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.multi_join_inputs_; } @@ -43090,7 +43468,7 @@ inline bool RangeJoinTablesRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& RangeJoinTablesRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -43099,7 +43477,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& RangeJoinTablesReq return _internal_result_id(); } inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -43112,7 +43490,7 @@ inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::d // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -43131,7 +43509,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -43140,22 +43518,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) return _msg; } inline void RangeJoinTablesRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -43181,12 +43559,12 @@ inline bool RangeJoinTablesRequest::has_left_id() const { return value; } inline void RangeJoinTablesRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -43195,7 +43573,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinT return _internal_left_id(); } inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -43208,7 +43586,7 @@ inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::dee // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -43227,7 +43605,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -43236,28 +43614,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) return _msg; } inline void RangeJoinTablesRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -43277,12 +43655,12 @@ inline bool RangeJoinTablesRequest::has_right_id() const { return value; } inline void RangeJoinTablesRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -43291,7 +43669,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinT return _internal_right_id(); } inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -43304,7 +43682,7 @@ inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -43323,7 +43701,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesR return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -43332,28 +43710,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesR return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) return _msg; } inline void RangeJoinTablesRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -43374,12 +43752,11 @@ inline int RangeJoinTablesRequest::exact_match_columns_size() const { return _internal_exact_match_columns_size(); } inline void RangeJoinTablesRequest::clear_exact_match_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.exact_match_columns_.Clear(); } -inline std::string* RangeJoinTablesRequest::add_exact_match_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* RangeJoinTablesRequest::add_exact_match_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_exact_match_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) return _s; @@ -43394,57 +43771,21 @@ inline std::string* RangeJoinTablesRequest::mutable_exact_match_columns(int inde // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) return _internal_mutable_exact_match_columns()->Mutable(index); } -inline void RangeJoinTablesRequest::set_exact_match_columns(int index, const std::string& value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::set_exact_match_columns(int index, std::string&& value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(std::move(value)); +template +inline void RangeJoinTablesRequest::set_exact_match_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_exact_match_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) } -inline void RangeJoinTablesRequest::set_exact_match_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::set_exact_match_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::set_exact_match_columns(int index, absl::string_view value) { - _internal_mutable_exact_match_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::add_exact_match_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::add_exact_match_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add(std::move(value)); +template +inline void RangeJoinTablesRequest::add_exact_match_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_exact_match_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) } -inline void RangeJoinTablesRequest::add_exact_match_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::add_exact_match_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} -inline void RangeJoinTablesRequest::add_exact_match_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_exact_match_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) -} inline const ::google::protobuf::RepeatedPtrField& RangeJoinTablesRequest::exact_match_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) @@ -43453,23 +43794,23 @@ RangeJoinTablesRequest::exact_match_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUN inline ::google::protobuf::RepeatedPtrField* RangeJoinTablesRequest::mutable_exact_match_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_exact_match_columns(); } inline const ::google::protobuf::RepeatedPtrField& RangeJoinTablesRequest::_internal_exact_match_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.exact_match_columns_; } inline ::google::protobuf::RepeatedPtrField* RangeJoinTablesRequest::_internal_mutable_exact_match_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.exact_match_columns_; } // string left_start_column = 5; inline void RangeJoinTablesRequest::clear_left_start_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_start_column_.ClearToEmpty(); } inline const std::string& RangeJoinTablesRequest::left_start_column() const @@ -43480,8 +43821,7 @@ inline const std::string& RangeJoinTablesRequest::left_start_column() const template inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_left_start_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_start_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column) } @@ -43491,26 +43831,24 @@ inline std::string* RangeJoinTablesRequest::mutable_left_start_column() ABSL_ATT return _s; } inline const std::string& RangeJoinTablesRequest::_internal_left_start_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.left_start_column_.Get(); } inline void RangeJoinTablesRequest::_internal_set_left_start_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_start_column_.Set(value, GetArena()); } inline std::string* RangeJoinTablesRequest::_internal_mutable_left_start_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.left_start_column_.Mutable( GetArena()); } inline std::string* RangeJoinTablesRequest::release_left_start_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column) return _impl_.left_start_column_.Release(); } inline void RangeJoinTablesRequest::set_allocated_left_start_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_start_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.left_start_column_.IsDefault()) { @@ -43522,7 +43860,7 @@ inline void RangeJoinTablesRequest::set_allocated_left_start_column(std::string* // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; inline void RangeJoinTablesRequest::clear_range_start_rule() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_start_rule_ = 0; } inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::range_start_rule() const { @@ -43534,18 +43872,17 @@ inline void RangeJoinTablesRequest::set_range_start_rule(::io::deephaven::proto: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_start_rule) } inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::_internal_range_start_rule() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule>(_impl_.range_start_rule_); } inline void RangeJoinTablesRequest::_internal_set_range_start_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_start_rule_ = value; } // string right_range_column = 7; inline void RangeJoinTablesRequest::clear_right_range_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.right_range_column_.ClearToEmpty(); } inline const std::string& RangeJoinTablesRequest::right_range_column() const @@ -43556,8 +43893,7 @@ inline const std::string& RangeJoinTablesRequest::right_range_column() const template inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_right_range_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.right_range_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column) } @@ -43567,26 +43903,24 @@ inline std::string* RangeJoinTablesRequest::mutable_right_range_column() ABSL_AT return _s; } inline const std::string& RangeJoinTablesRequest::_internal_right_range_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.right_range_column_.Get(); } inline void RangeJoinTablesRequest::_internal_set_right_range_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.right_range_column_.Set(value, GetArena()); } inline std::string* RangeJoinTablesRequest::_internal_mutable_right_range_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.right_range_column_.Mutable( GetArena()); } inline std::string* RangeJoinTablesRequest::release_right_range_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column) return _impl_.right_range_column_.Release(); } inline void RangeJoinTablesRequest::set_allocated_right_range_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.right_range_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.right_range_column_.IsDefault()) { @@ -43598,7 +43932,7 @@ inline void RangeJoinTablesRequest::set_allocated_right_range_column(std::string // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; inline void RangeJoinTablesRequest::clear_range_end_rule() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_end_rule_ = 0; } inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::range_end_rule() const { @@ -43610,18 +43944,17 @@ inline void RangeJoinTablesRequest::set_range_end_rule(::io::deephaven::proto::b // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_end_rule) } inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::_internal_range_end_rule() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule>(_impl_.range_end_rule_); } inline void RangeJoinTablesRequest::_internal_set_range_end_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_end_rule_ = value; } // string left_end_column = 9; inline void RangeJoinTablesRequest::clear_left_end_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_end_column_.ClearToEmpty(); } inline const std::string& RangeJoinTablesRequest::left_end_column() const @@ -43632,8 +43965,7 @@ inline const std::string& RangeJoinTablesRequest::left_end_column() const template inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_left_end_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_end_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column) } @@ -43643,26 +43975,24 @@ inline std::string* RangeJoinTablesRequest::mutable_left_end_column() ABSL_ATTRI return _s; } inline const std::string& RangeJoinTablesRequest::_internal_left_end_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.left_end_column_.Get(); } inline void RangeJoinTablesRequest::_internal_set_left_end_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_end_column_.Set(value, GetArena()); } inline std::string* RangeJoinTablesRequest::_internal_mutable_left_end_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.left_end_column_.Mutable( GetArena()); } inline std::string* RangeJoinTablesRequest::release_left_end_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column) return _impl_.left_end_column_.Release(); } inline void RangeJoinTablesRequest::set_allocated_left_end_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.left_end_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.left_end_column_.IsDefault()) { @@ -43680,7 +44010,7 @@ inline int RangeJoinTablesRequest::aggregations_size() const { return _internal_aggregations_size(); } inline void RangeJoinTablesRequest::clear_aggregations() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.aggregations_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Aggregation* RangeJoinTablesRequest::mutable_aggregations(int index) @@ -43691,7 +44021,7 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation* RangeJoinTablesRequ inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* RangeJoinTablesRequest::mutable_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.aggregations) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_aggregations(); } inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RangeJoinTablesRequest::aggregations(int index) const @@ -43700,7 +44030,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RangeJoinTabl return _internal_aggregations().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Aggregation* RangeJoinTablesRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Aggregation* _add = _internal_mutable_aggregations()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.aggregations) return _add; @@ -43712,18 +44042,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& RangeJoinTablesRequest::_internal_aggregations() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.aggregations_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* RangeJoinTablesRequest::_internal_mutable_aggregations() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.aggregations_; } // string range_match = 11; inline void RangeJoinTablesRequest::clear_range_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_match_.ClearToEmpty(); } inline const std::string& RangeJoinTablesRequest::range_match() const @@ -43734,8 +44064,7 @@ inline const std::string& RangeJoinTablesRequest::range_match() const template inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_range_match(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_match_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match) } @@ -43745,26 +44074,24 @@ inline std::string* RangeJoinTablesRequest::mutable_range_match() ABSL_ATTRIBUTE return _s; } inline const std::string& RangeJoinTablesRequest::_internal_range_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.range_match_.Get(); } inline void RangeJoinTablesRequest::_internal_set_range_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_match_.Set(value, GetArena()); } inline std::string* RangeJoinTablesRequest::_internal_mutable_range_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.range_match_.Mutable( GetArena()); } inline std::string* RangeJoinTablesRequest::release_range_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match) return _impl_.range_match_.Release(); } inline void RangeJoinTablesRequest::set_allocated_range_match(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.range_match_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.range_match_.IsDefault()) { @@ -43780,7 +44107,7 @@ inline void RangeJoinTablesRequest::set_allocated_range_match(std::string* value // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; inline void ComboAggregateRequest_Aggregate::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = 0; } inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType ComboAggregateRequest_Aggregate::type() const { @@ -43792,12 +44119,11 @@ inline void ComboAggregateRequest_Aggregate::set_type(::io::deephaven::proto::ba // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.type) } inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType ComboAggregateRequest_Aggregate::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType>(_impl_.type_); } inline void ComboAggregateRequest_Aggregate::_internal_set_type(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_ = value; } @@ -43809,12 +44135,11 @@ inline int ComboAggregateRequest_Aggregate::match_pairs_size() const { return _internal_match_pairs_size(); } inline void ComboAggregateRequest_Aggregate::clear_match_pairs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_pairs_.Clear(); } -inline std::string* ComboAggregateRequest_Aggregate::add_match_pairs() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* ComboAggregateRequest_Aggregate::add_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_match_pairs()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) return _s; @@ -43829,57 +44154,21 @@ inline std::string* ComboAggregateRequest_Aggregate::mutable_match_pairs(int ind // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) return _internal_mutable_match_pairs()->Mutable(index); } -inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, const std::string& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, std::string&& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(std::move(value)); +template +inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_match_pairs()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) } -inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, const char* value, - std::size_t size) { - _internal_mutable_match_pairs()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::set_match_pairs(int index, absl::string_view value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::add_match_pairs(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::add_match_pairs(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add(std::move(value)); +template +inline void ComboAggregateRequest_Aggregate::add_match_pairs(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_match_pairs(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) } -inline void ComboAggregateRequest_Aggregate::add_match_pairs(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::add_match_pairs(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} -inline void ComboAggregateRequest_Aggregate::add_match_pairs(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) -} inline const ::google::protobuf::RepeatedPtrField& ComboAggregateRequest_Aggregate::match_pairs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) @@ -43888,23 +44177,23 @@ ComboAggregateRequest_Aggregate::match_pairs() const ABSL_ATTRIBUTE_LIFETIME_BOU inline ::google::protobuf::RepeatedPtrField* ComboAggregateRequest_Aggregate::mutable_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_match_pairs(); } inline const ::google::protobuf::RepeatedPtrField& ComboAggregateRequest_Aggregate::_internal_match_pairs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.match_pairs_; } inline ::google::protobuf::RepeatedPtrField* ComboAggregateRequest_Aggregate::_internal_mutable_match_pairs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.match_pairs_; } // string column_name = 3; inline void ComboAggregateRequest_Aggregate::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& ComboAggregateRequest_Aggregate::column_name() const @@ -43915,8 +44204,7 @@ inline const std::string& ComboAggregateRequest_Aggregate::column_name() const template inline PROTOBUF_ALWAYS_INLINE void ComboAggregateRequest_Aggregate::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name) } @@ -43926,26 +44214,24 @@ inline std::string* ComboAggregateRequest_Aggregate::mutable_column_name() ABSL_ return _s; } inline const std::string& ComboAggregateRequest_Aggregate::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void ComboAggregateRequest_Aggregate::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* ComboAggregateRequest_Aggregate::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* ComboAggregateRequest_Aggregate::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name) return _impl_.column_name_.Release(); } inline void ComboAggregateRequest_Aggregate::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -43957,7 +44243,7 @@ inline void ComboAggregateRequest_Aggregate::set_allocated_column_name(std::stri // double percentile = 4; inline void ComboAggregateRequest_Aggregate::clear_percentile() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = 0; } inline double ComboAggregateRequest_Aggregate::percentile() const { @@ -43969,18 +44255,17 @@ inline void ComboAggregateRequest_Aggregate::set_percentile(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.percentile) } inline double ComboAggregateRequest_Aggregate::_internal_percentile() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.percentile_; } inline void ComboAggregateRequest_Aggregate::_internal_set_percentile(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = value; } // bool avg_median = 5; inline void ComboAggregateRequest_Aggregate::clear_avg_median() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.avg_median_ = false; } inline bool ComboAggregateRequest_Aggregate::avg_median() const { @@ -43992,12 +44277,11 @@ inline void ComboAggregateRequest_Aggregate::set_avg_median(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.avg_median) } inline bool ComboAggregateRequest_Aggregate::_internal_avg_median() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.avg_median_; } inline void ComboAggregateRequest_Aggregate::_internal_set_avg_median(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.avg_median_ = value; } @@ -44012,7 +44296,7 @@ inline bool ComboAggregateRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ComboAggregateRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -44021,7 +44305,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ComboAggregateRequ return _internal_result_id(); } inline void ComboAggregateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -44034,7 +44318,7 @@ inline void ComboAggregateRequest::unsafe_arena_set_allocated_result_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -44053,7 +44337,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::r return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -44062,22 +44346,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::u return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) return _msg; } inline void ComboAggregateRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -44103,12 +44387,12 @@ inline bool ComboAggregateRequest::has_source_id() const { return value; } inline void ComboAggregateRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ComboAggregateRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -44117,7 +44401,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ComboAggre return _internal_source_id(); } inline void ComboAggregateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -44130,7 +44414,7 @@ inline void ComboAggregateRequest::unsafe_arena_set_allocated_source_id(::io::de // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -44149,7 +44433,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRe return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -44158,28 +44442,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRe return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) return _msg; } inline void ComboAggregateRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -44200,7 +44484,7 @@ inline int ComboAggregateRequest::aggregates_size() const { return _internal_aggregates_size(); } inline void ComboAggregateRequest::clear_aggregates() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.aggregates_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* ComboAggregateRequest::mutable_aggregates(int index) @@ -44211,7 +44495,7 @@ inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>* ComboAggregateRequest::mutable_aggregates() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.aggregates) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_aggregates(); } inline const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate& ComboAggregateRequest::aggregates(int index) const @@ -44220,7 +44504,7 @@ inline const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggr return _internal_aggregates().Get(index); } inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* ComboAggregateRequest::add_aggregates() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* _add = _internal_mutable_aggregates()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.aggregates) return _add; @@ -44232,12 +44516,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>& ComboAggregateRequest::_internal_aggregates() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.aggregates_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>* ComboAggregateRequest::_internal_mutable_aggregates() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.aggregates_; } @@ -44249,12 +44533,11 @@ inline int ComboAggregateRequest::group_by_columns_size() const { return _internal_group_by_columns_size(); } inline void ComboAggregateRequest::clear_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_columns_.Clear(); } -inline std::string* ComboAggregateRequest::add_group_by_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* ComboAggregateRequest::add_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) return _s; @@ -44269,57 +44552,21 @@ inline std::string* ComboAggregateRequest::mutable_group_by_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) return _internal_mutable_group_by_columns()->Mutable(index); } -inline void ComboAggregateRequest::set_group_by_columns(int index, const std::string& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::set_group_by_columns(int index, std::string&& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(std::move(value)); +template +inline void ComboAggregateRequest::set_group_by_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) } -inline void ComboAggregateRequest::set_group_by_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::set_group_by_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::set_group_by_columns(int index, absl::string_view value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::add_group_by_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::add_group_by_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add(std::move(value)); +template +inline void ComboAggregateRequest::add_group_by_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) } -inline void ComboAggregateRequest::add_group_by_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::add_group_by_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} -inline void ComboAggregateRequest::add_group_by_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) -} inline const ::google::protobuf::RepeatedPtrField& ComboAggregateRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) @@ -44328,23 +44575,23 @@ ComboAggregateRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* ComboAggregateRequest::mutable_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_columns(); } inline const ::google::protobuf::RepeatedPtrField& ComboAggregateRequest::_internal_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_columns_; } inline ::google::protobuf::RepeatedPtrField* ComboAggregateRequest::_internal_mutable_group_by_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_columns_; } // bool force_combo = 5; inline void ComboAggregateRequest::clear_force_combo() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.force_combo_ = false; } inline bool ComboAggregateRequest::force_combo() const { @@ -44356,12 +44603,11 @@ inline void ComboAggregateRequest::set_force_combo(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.force_combo) } inline bool ComboAggregateRequest::_internal_force_combo() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.force_combo_; } inline void ComboAggregateRequest::_internal_set_force_combo(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.force_combo_ = value; } @@ -44376,7 +44622,7 @@ inline bool AggregateAllRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateAllRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -44385,7 +44631,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateAllReques return _internal_result_id(); } inline void AggregateAllRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -44398,7 +44644,7 @@ inline void AggregateAllRequest::unsafe_arena_set_allocated_result_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -44417,7 +44663,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -44426,22 +44672,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) return _msg; } inline void AggregateAllRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -44467,12 +44713,12 @@ inline bool AggregateAllRequest::has_source_id() const { return value; } inline void AggregateAllRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateAllRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -44481,7 +44727,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateA return _internal_source_id(); } inline void AggregateAllRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -44494,7 +44740,7 @@ inline void AggregateAllRequest::unsafe_arena_set_allocated_source_id(::io::deep // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -44513,7 +44759,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequ return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -44522,28 +44768,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequ return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) return _msg; } inline void AggregateAllRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -44563,12 +44809,12 @@ inline bool AggregateAllRequest::has_spec() const { return value; } inline void AggregateAllRequest::clear_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ != nullptr) _impl_.spec_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::AggSpec& AggregateAllRequest::_internal_spec() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::AggSpec* p = _impl_.spec_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_AggSpec_default_instance_); } @@ -44577,7 +44823,7 @@ inline const ::io::deephaven::proto::backplane::grpc::AggSpec& AggregateAllReque return _internal_spec(); } inline void AggregateAllRequest::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); } @@ -44590,7 +44836,7 @@ inline void AggregateAllRequest::unsafe_arena_set_allocated_spec(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) } inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::AggSpec* released = _impl_.spec_; @@ -44609,7 +44855,7 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::re return released; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::unsafe_arena_release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) _impl_._has_bits_[0] &= ~0x00000004u; @@ -44618,28 +44864,28 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::un return temp; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::_internal_mutable_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>(GetArena()); _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(p); } return _impl_.spec_; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::mutable_spec() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::AggSpec* _msg = _internal_mutable_spec(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) return _msg; } inline void AggregateAllRequest::set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(_impl_.spec_); + delete (_impl_.spec_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -44660,12 +44906,11 @@ inline int AggregateAllRequest::group_by_columns_size() const { return _internal_group_by_columns_size(); } inline void AggregateAllRequest::clear_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_columns_.Clear(); } -inline std::string* AggregateAllRequest::add_group_by_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AggregateAllRequest::add_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) return _s; @@ -44680,57 +44925,21 @@ inline std::string* AggregateAllRequest::mutable_group_by_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) return _internal_mutable_group_by_columns()->Mutable(index); } -inline void AggregateAllRequest::set_group_by_columns(int index, const std::string& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::set_group_by_columns(int index, std::string&& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(std::move(value)); +template +inline void AggregateAllRequest::set_group_by_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) } -inline void AggregateAllRequest::set_group_by_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::set_group_by_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::set_group_by_columns(int index, absl::string_view value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::add_group_by_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::add_group_by_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add(std::move(value)); +template +inline void AggregateAllRequest::add_group_by_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) } -inline void AggregateAllRequest::add_group_by_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::add_group_by_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} -inline void AggregateAllRequest::add_group_by_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) -} inline const ::google::protobuf::RepeatedPtrField& AggregateAllRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) @@ -44739,17 +44948,17 @@ AggregateAllRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AggregateAllRequest::mutable_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_columns(); } inline const ::google::protobuf::RepeatedPtrField& AggregateAllRequest::_internal_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_columns_; } inline ::google::protobuf::RepeatedPtrField* AggregateAllRequest::_internal_mutable_group_by_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_columns_; } @@ -44759,7 +44968,7 @@ AggregateAllRequest::_internal_mutable_group_by_columns() { // double percentile = 1; inline void AggSpec_AggSpecApproximatePercentile::clear_percentile() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = 0; } inline double AggSpec_AggSpecApproximatePercentile::percentile() const { @@ -44771,12 +44980,11 @@ inline void AggSpec_AggSpecApproximatePercentile::set_percentile(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile.percentile) } inline double AggSpec_AggSpecApproximatePercentile::_internal_percentile() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.percentile_; } inline void AggSpec_AggSpecApproximatePercentile::_internal_set_percentile(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = value; } @@ -44786,7 +44994,7 @@ inline bool AggSpec_AggSpecApproximatePercentile::has_compression() const { return value; } inline void AggSpec_AggSpecApproximatePercentile::clear_compression() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.compression_ = 0; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -44796,15 +45004,15 @@ inline double AggSpec_AggSpecApproximatePercentile::compression() const { } inline void AggSpec_AggSpecApproximatePercentile::set_compression(double value) { _internal_set_compression(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile.compression) } inline double AggSpec_AggSpecApproximatePercentile::_internal_compression() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.compression_; } inline void AggSpec_AggSpecApproximatePercentile::_internal_set_compression(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.compression_ = value; } @@ -44814,7 +45022,7 @@ inline void AggSpec_AggSpecApproximatePercentile::_internal_set_compression(doub // bool count_nulls = 1; inline void AggSpec_AggSpecCountDistinct::clear_count_nulls() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.count_nulls_ = false; } inline bool AggSpec_AggSpecCountDistinct::count_nulls() const { @@ -44826,12 +45034,11 @@ inline void AggSpec_AggSpecCountDistinct::set_count_nulls(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct.count_nulls) } inline bool AggSpec_AggSpecCountDistinct::_internal_count_nulls() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.count_nulls_; } inline void AggSpec_AggSpecCountDistinct::_internal_set_count_nulls(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.count_nulls_ = value; } @@ -44841,7 +45048,7 @@ inline void AggSpec_AggSpecCountDistinct::_internal_set_count_nulls(bool value) // bool include_nulls = 1; inline void AggSpec_AggSpecDistinct::clear_include_nulls() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_nulls_ = false; } inline bool AggSpec_AggSpecDistinct::include_nulls() const { @@ -44853,12 +45060,11 @@ inline void AggSpec_AggSpecDistinct::set_include_nulls(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct.include_nulls) } inline bool AggSpec_AggSpecDistinct::_internal_include_nulls() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.include_nulls_; } inline void AggSpec_AggSpecDistinct::_internal_set_include_nulls(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_nulls_ = value; } @@ -44868,7 +45074,7 @@ inline void AggSpec_AggSpecDistinct::_internal_set_include_nulls(bool value) { // string formula = 1; inline void AggSpec_AggSpecFormula::clear_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.ClearToEmpty(); } inline const std::string& AggSpec_AggSpecFormula::formula() const @@ -44879,8 +45085,7 @@ inline const std::string& AggSpec_AggSpecFormula::formula() const template inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecFormula::set_formula(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula) } @@ -44890,26 +45095,24 @@ inline std::string* AggSpec_AggSpecFormula::mutable_formula() ABSL_ATTRIBUTE_LIF return _s; } inline const std::string& AggSpec_AggSpecFormula::_internal_formula() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.formula_.Get(); } inline void AggSpec_AggSpecFormula::_internal_set_formula(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.Set(value, GetArena()); } inline std::string* AggSpec_AggSpecFormula::_internal_mutable_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.formula_.Mutable( GetArena()); } inline std::string* AggSpec_AggSpecFormula::release_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula) return _impl_.formula_.Release(); } inline void AggSpec_AggSpecFormula::set_allocated_formula(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.formula_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.formula_.IsDefault()) { @@ -44921,7 +45124,7 @@ inline void AggSpec_AggSpecFormula::set_allocated_formula(std::string* value) { // string param_token = 2; inline void AggSpec_AggSpecFormula::clear_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.ClearToEmpty(); } inline const std::string& AggSpec_AggSpecFormula::param_token() const @@ -44932,8 +45135,7 @@ inline const std::string& AggSpec_AggSpecFormula::param_token() const template inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecFormula::set_param_token(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token) } @@ -44943,26 +45145,24 @@ inline std::string* AggSpec_AggSpecFormula::mutable_param_token() ABSL_ATTRIBUTE return _s; } inline const std::string& AggSpec_AggSpecFormula::_internal_param_token() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.param_token_.Get(); } inline void AggSpec_AggSpecFormula::_internal_set_param_token(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.Set(value, GetArena()); } inline std::string* AggSpec_AggSpecFormula::_internal_mutable_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.param_token_.Mutable( GetArena()); } inline std::string* AggSpec_AggSpecFormula::release_param_token() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token) return _impl_.param_token_.Release(); } inline void AggSpec_AggSpecFormula::set_allocated_param_token(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.param_token_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.param_token_.IsDefault()) { @@ -44978,7 +45178,7 @@ inline void AggSpec_AggSpecFormula::set_allocated_param_token(std::string* value // bool average_evenly_divided = 1; inline void AggSpec_AggSpecMedian::clear_average_evenly_divided() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.average_evenly_divided_ = false; } inline bool AggSpec_AggSpecMedian::average_evenly_divided() const { @@ -44990,12 +45190,11 @@ inline void AggSpec_AggSpecMedian::set_average_evenly_divided(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian.average_evenly_divided) } inline bool AggSpec_AggSpecMedian::_internal_average_evenly_divided() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.average_evenly_divided_; } inline void AggSpec_AggSpecMedian::_internal_set_average_evenly_divided(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.average_evenly_divided_ = value; } @@ -45005,7 +45204,7 @@ inline void AggSpec_AggSpecMedian::_internal_set_average_evenly_divided(bool val // double percentile = 1; inline void AggSpec_AggSpecPercentile::clear_percentile() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = 0; } inline double AggSpec_AggSpecPercentile::percentile() const { @@ -45017,18 +45216,17 @@ inline void AggSpec_AggSpecPercentile::set_percentile(double value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile.percentile) } inline double AggSpec_AggSpecPercentile::_internal_percentile() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.percentile_; } inline void AggSpec_AggSpecPercentile::_internal_set_percentile(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.percentile_ = value; } // bool average_evenly_divided = 2; inline void AggSpec_AggSpecPercentile::clear_average_evenly_divided() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.average_evenly_divided_ = false; } inline bool AggSpec_AggSpecPercentile::average_evenly_divided() const { @@ -45040,12 +45238,11 @@ inline void AggSpec_AggSpecPercentile::set_average_evenly_divided(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile.average_evenly_divided) } inline bool AggSpec_AggSpecPercentile::_internal_average_evenly_divided() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.average_evenly_divided_; } inline void AggSpec_AggSpecPercentile::_internal_set_average_evenly_divided(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.average_evenly_divided_ = value; } @@ -45061,7 +45258,7 @@ inline int AggSpec_AggSpecSorted::columns_size() const { return _internal_columns_size(); } inline void AggSpec_AggSpecSorted::clear_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* AggSpec_AggSpecSorted::mutable_columns(int index) @@ -45072,7 +45269,7 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* Agg inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>* AggSpec_AggSpecSorted::mutable_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted.columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns(); } inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn& AggSpec_AggSpecSorted::columns(int index) const @@ -45081,7 +45278,7 @@ inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColum return _internal_columns().Get(index); } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* AggSpec_AggSpecSorted::add_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* _add = _internal_mutable_columns()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted.columns) return _add; @@ -45093,12 +45290,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>& AggSpec_AggSpecSorted::_internal_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>* AggSpec_AggSpecSorted::_internal_mutable_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_; } @@ -45108,7 +45305,7 @@ AggSpec_AggSpecSorted::_internal_mutable_columns() { // string column_name = 1; inline void AggSpec_AggSpecSortedColumn::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& AggSpec_AggSpecSortedColumn::column_name() const @@ -45119,8 +45316,7 @@ inline const std::string& AggSpec_AggSpecSortedColumn::column_name() const template inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecSortedColumn::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name) } @@ -45130,26 +45326,24 @@ inline std::string* AggSpec_AggSpecSortedColumn::mutable_column_name() ABSL_ATTR return _s; } inline const std::string& AggSpec_AggSpecSortedColumn::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void AggSpec_AggSpecSortedColumn::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* AggSpec_AggSpecSortedColumn::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* AggSpec_AggSpecSortedColumn::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name) return _impl_.column_name_.Release(); } inline void AggSpec_AggSpecSortedColumn::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -45169,7 +45363,7 @@ inline bool AggSpec_AggSpecTDigest::has_compression() const { return value; } inline void AggSpec_AggSpecTDigest::clear_compression() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.compression_ = 0; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -45179,15 +45373,15 @@ inline double AggSpec_AggSpecTDigest::compression() const { } inline void AggSpec_AggSpecTDigest::set_compression(double value) { _internal_set_compression(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest.compression) } inline double AggSpec_AggSpecTDigest::_internal_compression() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.compression_; } inline void AggSpec_AggSpecTDigest::_internal_set_compression(double value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.compression_ = value; } @@ -45197,7 +45391,7 @@ inline void AggSpec_AggSpecTDigest::_internal_set_compression(double value) { // bool include_nulls = 1; inline void AggSpec_AggSpecUnique::clear_include_nulls() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_nulls_ = false; } inline bool AggSpec_AggSpecUnique::include_nulls() const { @@ -45209,12 +45403,11 @@ inline void AggSpec_AggSpecUnique::set_include_nulls(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.include_nulls) } inline bool AggSpec_AggSpecUnique::_internal_include_nulls() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.include_nulls_; } inline void AggSpec_AggSpecUnique::_internal_set_include_nulls(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_nulls_ = value; } @@ -45225,12 +45418,12 @@ inline bool AggSpec_AggSpecUnique::has_non_unique_sentinel() const { return value; } inline void AggSpec_AggSpecUnique::clear_non_unique_sentinel() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.non_unique_sentinel_ != nullptr) _impl_.non_unique_sentinel_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& AggSpec_AggSpecUnique::_internal_non_unique_sentinel() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* p = _impl_.non_unique_sentinel_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecNonUniqueSentinel_default_instance_); } @@ -45239,7 +45432,7 @@ inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSe return _internal_non_unique_sentinel(); } inline void AggSpec_AggSpecUnique::unsafe_arena_set_allocated_non_unique_sentinel(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.non_unique_sentinel_); } @@ -45252,7 +45445,7 @@ inline void AggSpec_AggSpecUnique::unsafe_arena_set_allocated_non_unique_sentine // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.non_unique_sentinel) } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::release_non_unique_sentinel() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* released = _impl_.non_unique_sentinel_; @@ -45271,7 +45464,7 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel return released; } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::unsafe_arena_release_non_unique_sentinel() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.non_unique_sentinel) _impl_._has_bits_[0] &= ~0x00000001u; @@ -45280,28 +45473,28 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel return temp; } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::_internal_mutable_non_unique_sentinel() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.non_unique_sentinel_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>(GetArena()); _impl_.non_unique_sentinel_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel*>(p); } return _impl_.non_unique_sentinel_; } inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::mutable_non_unique_sentinel() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* _msg = _internal_mutable_non_unique_sentinel(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.non_unique_sentinel) return _msg; } inline void AggSpec_AggSpecUnique::set_allocated_non_unique_sentinel(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel*>(_impl_.non_unique_sentinel_); + delete (_impl_.non_unique_sentinel_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -45326,7 +45519,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_null_value() { _impl_._oneof_case_[0] = kNullValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_null_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kNullValue) { _impl_.type_.null_value_ = 0; clear_has_type(); @@ -45337,7 +45530,11 @@ inline ::io::deephaven::proto::backplane::grpc::NullValue AggSpec_AggSpecNonUniq return _internal_null_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_null_value(::io::deephaven::proto::backplane::grpc::NullValue value) { - _internal_set_null_value(value); + if (type_case() != kNullValue) { + clear_type(); + set_has_null_value(); + } + _impl_.type_.null_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.null_value) } inline ::io::deephaven::proto::backplane::grpc::NullValue AggSpec_AggSpecNonUniqueSentinel::_internal_null_value() const { @@ -45346,13 +45543,6 @@ inline ::io::deephaven::proto::backplane::grpc::NullValue AggSpec_AggSpecNonUniq } return static_cast<::io::deephaven::proto::backplane::grpc::NullValue>(0); } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_null_value(::io::deephaven::proto::backplane::grpc::NullValue value) { - if (type_case() != kNullValue) { - clear_type(); - set_has_null_value(); - } - _impl_.type_.null_value_ = value; -} // string string_value = 2; inline bool AggSpec_AggSpecNonUniqueSentinel::has_string_value() const { @@ -45362,7 +45552,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_string_value() { _impl_._oneof_case_[0] = kStringValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kStringValue) { _impl_.type_.string_value_.Destroy(); clear_has_type(); @@ -45376,7 +45566,7 @@ inline const std::string& AggSpec_AggSpecNonUniqueSentinel::string_value() const template inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecNonUniqueSentinel::set_string_value(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() != kStringValue) { clear_type(); @@ -45392,14 +45582,14 @@ inline std::string* AggSpec_AggSpecNonUniqueSentinel::mutable_string_value() ABS return _s; } inline const std::string& AggSpec_AggSpecNonUniqueSentinel::_internal_string_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (type_case() != kStringValue) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.type_.string_value_.Get(); } inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_string_value(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() != kStringValue) { clear_type(); @@ -45409,7 +45599,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_string_value(const s _impl_.type_.string_value_.Set(value, GetArena()); } inline std::string* AggSpec_AggSpecNonUniqueSentinel::_internal_mutable_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() != kStringValue) { clear_type(); @@ -45419,7 +45609,7 @@ inline std::string* AggSpec_AggSpecNonUniqueSentinel::_internal_mutable_string_v return _impl_.type_.string_value_.Mutable( GetArena()); } inline std::string* AggSpec_AggSpecNonUniqueSentinel::release_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value) if (type_case() != kStringValue) { return nullptr; @@ -45428,7 +45618,7 @@ inline std::string* AggSpec_AggSpecNonUniqueSentinel::release_string_value() { return _impl_.type_.string_value_.Release(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_allocated_string_value(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_type()) { clear_type(); } @@ -45447,7 +45637,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_int_value() { _impl_._oneof_case_[0] = kIntValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_int_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kIntValue) { _impl_.type_.int_value_ = 0; clear_has_type(); @@ -45458,7 +45648,11 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::int_value() const { return _internal_int_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_int_value(::int32_t value) { - _internal_set_int_value(value); + if (type_case() != kIntValue) { + clear_type(); + set_has_int_value(); + } + _impl_.type_.int_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.int_value) } inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_int_value() const { @@ -45467,13 +45661,6 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_int_value() const { } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_int_value(::int32_t value) { - if (type_case() != kIntValue) { - clear_type(); - set_has_int_value(); - } - _impl_.type_.int_value_ = value; -} // sint64 long_value = 4 [jstype = JS_STRING]; inline bool AggSpec_AggSpecNonUniqueSentinel::has_long_value() const { @@ -45483,7 +45670,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_long_value() { _impl_._oneof_case_[0] = kLongValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_long_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kLongValue) { _impl_.type_.long_value_ = ::int64_t{0}; clear_has_type(); @@ -45494,7 +45681,11 @@ inline ::int64_t AggSpec_AggSpecNonUniqueSentinel::long_value() const { return _internal_long_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_long_value(::int64_t value) { - _internal_set_long_value(value); + if (type_case() != kLongValue) { + clear_type(); + set_has_long_value(); + } + _impl_.type_.long_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.long_value) } inline ::int64_t AggSpec_AggSpecNonUniqueSentinel::_internal_long_value() const { @@ -45503,13 +45694,6 @@ inline ::int64_t AggSpec_AggSpecNonUniqueSentinel::_internal_long_value() const } return ::int64_t{0}; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_long_value(::int64_t value) { - if (type_case() != kLongValue) { - clear_type(); - set_has_long_value(); - } - _impl_.type_.long_value_ = value; -} // float float_value = 5; inline bool AggSpec_AggSpecNonUniqueSentinel::has_float_value() const { @@ -45519,7 +45703,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_float_value() { _impl_._oneof_case_[0] = kFloatValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_float_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFloatValue) { _impl_.type_.float_value_ = 0; clear_has_type(); @@ -45530,7 +45714,11 @@ inline float AggSpec_AggSpecNonUniqueSentinel::float_value() const { return _internal_float_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_float_value(float value) { - _internal_set_float_value(value); + if (type_case() != kFloatValue) { + clear_type(); + set_has_float_value(); + } + _impl_.type_.float_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.float_value) } inline float AggSpec_AggSpecNonUniqueSentinel::_internal_float_value() const { @@ -45539,13 +45727,6 @@ inline float AggSpec_AggSpecNonUniqueSentinel::_internal_float_value() const { } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_float_value(float value) { - if (type_case() != kFloatValue) { - clear_type(); - set_has_float_value(); - } - _impl_.type_.float_value_ = value; -} // double double_value = 6; inline bool AggSpec_AggSpecNonUniqueSentinel::has_double_value() const { @@ -45555,7 +45736,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_double_value() { _impl_._oneof_case_[0] = kDoubleValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_double_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kDoubleValue) { _impl_.type_.double_value_ = 0; clear_has_type(); @@ -45566,7 +45747,11 @@ inline double AggSpec_AggSpecNonUniqueSentinel::double_value() const { return _internal_double_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_double_value(double value) { - _internal_set_double_value(value); + if (type_case() != kDoubleValue) { + clear_type(); + set_has_double_value(); + } + _impl_.type_.double_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.double_value) } inline double AggSpec_AggSpecNonUniqueSentinel::_internal_double_value() const { @@ -45575,13 +45760,6 @@ inline double AggSpec_AggSpecNonUniqueSentinel::_internal_double_value() const { } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_double_value(double value) { - if (type_case() != kDoubleValue) { - clear_type(); - set_has_double_value(); - } - _impl_.type_.double_value_ = value; -} // bool bool_value = 7; inline bool AggSpec_AggSpecNonUniqueSentinel::has_bool_value() const { @@ -45591,7 +45769,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_bool_value() { _impl_._oneof_case_[0] = kBoolValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_bool_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kBoolValue) { _impl_.type_.bool_value_ = false; clear_has_type(); @@ -45602,7 +45780,11 @@ inline bool AggSpec_AggSpecNonUniqueSentinel::bool_value() const { return _internal_bool_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_bool_value(bool value) { - _internal_set_bool_value(value); + if (type_case() != kBoolValue) { + clear_type(); + set_has_bool_value(); + } + _impl_.type_.bool_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.bool_value) } inline bool AggSpec_AggSpecNonUniqueSentinel::_internal_bool_value() const { @@ -45611,13 +45793,6 @@ inline bool AggSpec_AggSpecNonUniqueSentinel::_internal_bool_value() const { } return false; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_bool_value(bool value) { - if (type_case() != kBoolValue) { - clear_type(); - set_has_bool_value(); - } - _impl_.type_.bool_value_ = value; -} // sint32 byte_value = 8; inline bool AggSpec_AggSpecNonUniqueSentinel::has_byte_value() const { @@ -45627,7 +45802,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_byte_value() { _impl_._oneof_case_[0] = kByteValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_byte_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kByteValue) { _impl_.type_.byte_value_ = 0; clear_has_type(); @@ -45638,7 +45813,11 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::byte_value() const { return _internal_byte_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_byte_value(::int32_t value) { - _internal_set_byte_value(value); + if (type_case() != kByteValue) { + clear_type(); + set_has_byte_value(); + } + _impl_.type_.byte_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.byte_value) } inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_byte_value() const { @@ -45647,13 +45826,6 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_byte_value() const } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_byte_value(::int32_t value) { - if (type_case() != kByteValue) { - clear_type(); - set_has_byte_value(); - } - _impl_.type_.byte_value_ = value; -} // sint32 short_value = 9; inline bool AggSpec_AggSpecNonUniqueSentinel::has_short_value() const { @@ -45663,7 +45835,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_short_value() { _impl_._oneof_case_[0] = kShortValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_short_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kShortValue) { _impl_.type_.short_value_ = 0; clear_has_type(); @@ -45674,7 +45846,11 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::short_value() const { return _internal_short_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_short_value(::int32_t value) { - _internal_set_short_value(value); + if (type_case() != kShortValue) { + clear_type(); + set_has_short_value(); + } + _impl_.type_.short_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.short_value) } inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_short_value() const { @@ -45683,13 +45859,6 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_short_value() const } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_short_value(::int32_t value) { - if (type_case() != kShortValue) { - clear_type(); - set_has_short_value(); - } - _impl_.type_.short_value_ = value; -} // sint32 char_value = 10; inline bool AggSpec_AggSpecNonUniqueSentinel::has_char_value() const { @@ -45699,7 +45868,7 @@ inline void AggSpec_AggSpecNonUniqueSentinel::set_has_char_value() { _impl_._oneof_case_[0] = kCharValue; } inline void AggSpec_AggSpecNonUniqueSentinel::clear_char_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kCharValue) { _impl_.type_.char_value_ = 0; clear_has_type(); @@ -45710,7 +45879,11 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::char_value() const { return _internal_char_value(); } inline void AggSpec_AggSpecNonUniqueSentinel::set_char_value(::int32_t value) { - _internal_set_char_value(value); + if (type_case() != kCharValue) { + clear_type(); + set_has_char_value(); + } + _impl_.type_.char_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.char_value) } inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_char_value() const { @@ -45719,13 +45892,6 @@ inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::_internal_char_value() const } return 0; } -inline void AggSpec_AggSpecNonUniqueSentinel::_internal_set_char_value(::int32_t value) { - if (type_case() != kCharValue) { - clear_type(); - set_has_char_value(); - } - _impl_.type_.char_value_ = value; -} inline bool AggSpec_AggSpecNonUniqueSentinel::has_type() const { return type_case() != TYPE_NOT_SET; @@ -45742,7 +45908,7 @@ inline AggSpec_AggSpecNonUniqueSentinel::TypeCase AggSpec_AggSpecNonUniqueSentin // string weight_column = 1; inline void AggSpec_AggSpecWeighted::clear_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.ClearToEmpty(); } inline const std::string& AggSpec_AggSpecWeighted::weight_column() const @@ -45753,8 +45919,7 @@ inline const std::string& AggSpec_AggSpecWeighted::weight_column() const template inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecWeighted::set_weight_column(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column) } @@ -45764,26 +45929,24 @@ inline std::string* AggSpec_AggSpecWeighted::mutable_weight_column() ABSL_ATTRIB return _s; } inline const std::string& AggSpec_AggSpecWeighted::_internal_weight_column() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.weight_column_.Get(); } inline void AggSpec_AggSpecWeighted::_internal_set_weight_column(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.Set(value, GetArena()); } inline std::string* AggSpec_AggSpecWeighted::_internal_mutable_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.weight_column_.Mutable( GetArena()); } inline std::string* AggSpec_AggSpecWeighted::release_weight_column() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column) return _impl_.weight_column_.Release(); } inline void AggSpec_AggSpecWeighted::set_allocated_weight_column(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.weight_column_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.weight_column_.IsDefault()) { @@ -45852,10 +46015,12 @@ inline void AggSpec::set_has_abs_sum() { _impl_._oneof_case_[0] = kAbsSum; } inline void AggSpec::clear_abs_sum() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kAbsSum) { if (GetArena() == nullptr) { delete _impl_.type_.abs_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.abs_sum_); } clear_has_type(); } @@ -45907,7 +46072,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* AggSpec:: if (type_case() != kAbsSum) { clear_type(); set_has_abs_sum(); - _impl_.type_.abs_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(GetArena()); + _impl_.type_.abs_sum_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(GetArena()); } return _impl_.type_.abs_sum_; } @@ -45928,10 +46094,12 @@ inline void AggSpec::set_has_approximate_percentile() { _impl_._oneof_case_[0] = kApproximatePercentile; } inline void AggSpec::clear_approximate_percentile() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kApproximatePercentile) { if (GetArena() == nullptr) { delete _impl_.type_.approximate_percentile_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.approximate_percentile_); } clear_has_type(); } @@ -45983,7 +46151,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercen if (type_case() != kApproximatePercentile) { clear_type(); set_has_approximate_percentile(); - _impl_.type_.approximate_percentile_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(GetArena()); + _impl_.type_.approximate_percentile_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(GetArena()); } return _impl_.type_.approximate_percentile_; } @@ -46004,10 +46173,12 @@ inline void AggSpec::set_has_avg() { _impl_._oneof_case_[0] = kAvg; } inline void AggSpec::clear_avg() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kAvg) { if (GetArena() == nullptr) { delete _impl_.type_.avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.avg_); } clear_has_type(); } @@ -46059,7 +46230,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* AggSpec::_in if (type_case() != kAvg) { clear_type(); set_has_avg(); - _impl_.type_.avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(GetArena()); + _impl_.type_.avg_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(GetArena()); } return _impl_.type_.avg_; } @@ -46080,10 +46252,12 @@ inline void AggSpec::set_has_count_distinct() { _impl_._oneof_case_[0] = kCountDistinct; } inline void AggSpec::clear_count_distinct() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kCountDistinct) { if (GetArena() == nullptr) { delete _impl_.type_.count_distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.count_distinct_); } clear_has_type(); } @@ -46135,7 +46309,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* Ag if (type_case() != kCountDistinct) { clear_type(); set_has_count_distinct(); - _impl_.type_.count_distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(GetArena()); + _impl_.type_.count_distinct_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(GetArena()); } return _impl_.type_.count_distinct_; } @@ -46156,10 +46331,12 @@ inline void AggSpec::set_has_distinct() { _impl_._oneof_case_[0] = kDistinct; } inline void AggSpec::clear_distinct() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kDistinct) { if (GetArena() == nullptr) { delete _impl_.type_.distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.distinct_); } clear_has_type(); } @@ -46211,7 +46388,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* AggSpec if (type_case() != kDistinct) { clear_type(); set_has_distinct(); - _impl_.type_.distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(GetArena()); + _impl_.type_.distinct_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(GetArena()); } return _impl_.type_.distinct_; } @@ -46232,10 +46410,12 @@ inline void AggSpec::set_has_first() { _impl_._oneof_case_[0] = kFirst; } inline void AggSpec::clear_first() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFirst) { if (GetArena() == nullptr) { delete _impl_.type_.first_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.first_); } clear_has_type(); } @@ -46287,7 +46467,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* AggSpec::_ if (type_case() != kFirst) { clear_type(); set_has_first(); - _impl_.type_.first_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(GetArena()); + _impl_.type_.first_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(GetArena()); } return _impl_.type_.first_; } @@ -46308,10 +46489,12 @@ inline void AggSpec::set_has_formula() { _impl_._oneof_case_[0] = kFormula; } inline void AggSpec::clear_formula() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFormula) { if (GetArena() == nullptr) { delete _impl_.type_.formula_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.formula_); } clear_has_type(); } @@ -46363,7 +46546,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* AggSpec: if (type_case() != kFormula) { clear_type(); set_has_formula(); - _impl_.type_.formula_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(GetArena()); + _impl_.type_.formula_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(GetArena()); } return _impl_.type_.formula_; } @@ -46384,10 +46568,12 @@ inline void AggSpec::set_has_freeze() { _impl_._oneof_case_[0] = kFreeze; } inline void AggSpec::clear_freeze() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFreeze) { if (GetArena() == nullptr) { delete _impl_.type_.freeze_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.freeze_); } clear_has_type(); } @@ -46439,7 +46625,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* AggSpec:: if (type_case() != kFreeze) { clear_type(); set_has_freeze(); - _impl_.type_.freeze_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(GetArena()); + _impl_.type_.freeze_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(GetArena()); } return _impl_.type_.freeze_; } @@ -46460,10 +46647,12 @@ inline void AggSpec::set_has_group() { _impl_._oneof_case_[0] = kGroup; } inline void AggSpec::clear_group() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kGroup) { if (GetArena() == nullptr) { delete _impl_.type_.group_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.group_); } clear_has_type(); } @@ -46515,7 +46704,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* AggSpec::_ if (type_case() != kGroup) { clear_type(); set_has_group(); - _impl_.type_.group_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(GetArena()); + _impl_.type_.group_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(GetArena()); } return _impl_.type_.group_; } @@ -46536,10 +46726,12 @@ inline void AggSpec::set_has_last() { _impl_._oneof_case_[0] = kLast; } inline void AggSpec::clear_last() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kLast) { if (GetArena() == nullptr) { delete _impl_.type_.last_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.last_); } clear_has_type(); } @@ -46591,7 +46783,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* AggSpec::_i if (type_case() != kLast) { clear_type(); set_has_last(); - _impl_.type_.last_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(GetArena()); + _impl_.type_.last_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(GetArena()); } return _impl_.type_.last_; } @@ -46612,10 +46805,12 @@ inline void AggSpec::set_has_max() { _impl_._oneof_case_[0] = kMax; } inline void AggSpec::clear_max() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kMax) { if (GetArena() == nullptr) { delete _impl_.type_.max_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.max_); } clear_has_type(); } @@ -46667,7 +46862,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* AggSpec::_in if (type_case() != kMax) { clear_type(); set_has_max(); - _impl_.type_.max_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(GetArena()); + _impl_.type_.max_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(GetArena()); } return _impl_.type_.max_; } @@ -46688,10 +46884,12 @@ inline void AggSpec::set_has_median() { _impl_._oneof_case_[0] = kMedian; } inline void AggSpec::clear_median() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kMedian) { if (GetArena() == nullptr) { delete _impl_.type_.median_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.median_); } clear_has_type(); } @@ -46743,7 +46941,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* AggSpec:: if (type_case() != kMedian) { clear_type(); set_has_median(); - _impl_.type_.median_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(GetArena()); + _impl_.type_.median_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(GetArena()); } return _impl_.type_.median_; } @@ -46764,10 +46963,12 @@ inline void AggSpec::set_has_min() { _impl_._oneof_case_[0] = kMin; } inline void AggSpec::clear_min() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kMin) { if (GetArena() == nullptr) { delete _impl_.type_.min_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.min_); } clear_has_type(); } @@ -46819,7 +47020,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* AggSpec::_in if (type_case() != kMin) { clear_type(); set_has_min(); - _impl_.type_.min_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(GetArena()); + _impl_.type_.min_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(GetArena()); } return _impl_.type_.min_; } @@ -46840,10 +47042,12 @@ inline void AggSpec::set_has_percentile() { _impl_._oneof_case_[0] = kPercentile; } inline void AggSpec::clear_percentile() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kPercentile) { if (GetArena() == nullptr) { delete _impl_.type_.percentile_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.percentile_); } clear_has_type(); } @@ -46895,7 +47099,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* AggSp if (type_case() != kPercentile) { clear_type(); set_has_percentile(); - _impl_.type_.percentile_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(GetArena()); + _impl_.type_.percentile_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(GetArena()); } return _impl_.type_.percentile_; } @@ -46916,10 +47121,12 @@ inline void AggSpec::set_has_sorted_first() { _impl_._oneof_case_[0] = kSortedFirst; } inline void AggSpec::clear_sorted_first() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kSortedFirst) { if (GetArena() == nullptr) { delete _impl_.type_.sorted_first_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sorted_first_); } clear_has_type(); } @@ -46971,7 +47178,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec:: if (type_case() != kSortedFirst) { clear_type(); set_has_sorted_first(); - _impl_.type_.sorted_first_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); + _impl_.type_.sorted_first_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); } return _impl_.type_.sorted_first_; } @@ -46992,10 +47200,12 @@ inline void AggSpec::set_has_sorted_last() { _impl_._oneof_case_[0] = kSortedLast; } inline void AggSpec::clear_sorted_last() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kSortedLast) { if (GetArena() == nullptr) { delete _impl_.type_.sorted_last_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sorted_last_); } clear_has_type(); } @@ -47047,7 +47257,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec:: if (type_case() != kSortedLast) { clear_type(); set_has_sorted_last(); - _impl_.type_.sorted_last_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); + _impl_.type_.sorted_last_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); } return _impl_.type_.sorted_last_; } @@ -47068,10 +47279,12 @@ inline void AggSpec::set_has_std() { _impl_._oneof_case_[0] = kStd; } inline void AggSpec::clear_std() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kStd) { if (GetArena() == nullptr) { delete _impl_.type_.std_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.std_); } clear_has_type(); } @@ -47123,7 +47336,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* AggSpec::_in if (type_case() != kStd) { clear_type(); set_has_std(); - _impl_.type_.std_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(GetArena()); + _impl_.type_.std_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(GetArena()); } return _impl_.type_.std_; } @@ -47144,10 +47358,12 @@ inline void AggSpec::set_has_sum() { _impl_._oneof_case_[0] = kSum; } inline void AggSpec::clear_sum() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kSum) { if (GetArena() == nullptr) { delete _impl_.type_.sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.sum_); } clear_has_type(); } @@ -47199,7 +47415,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* AggSpec::_in if (type_case() != kSum) { clear_type(); set_has_sum(); - _impl_.type_.sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(GetArena()); + _impl_.type_.sum_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(GetArena()); } return _impl_.type_.sum_; } @@ -47220,10 +47437,12 @@ inline void AggSpec::set_has_t_digest() { _impl_._oneof_case_[0] = kTDigest; } inline void AggSpec::clear_t_digest() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kTDigest) { if (GetArena() == nullptr) { delete _impl_.type_.t_digest_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.t_digest_); } clear_has_type(); } @@ -47275,7 +47494,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* AggSpec: if (type_case() != kTDigest) { clear_type(); set_has_t_digest(); - _impl_.type_.t_digest_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(GetArena()); + _impl_.type_.t_digest_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(GetArena()); } return _impl_.type_.t_digest_; } @@ -47296,10 +47516,12 @@ inline void AggSpec::set_has_unique() { _impl_._oneof_case_[0] = kUnique; } inline void AggSpec::clear_unique() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kUnique) { if (GetArena() == nullptr) { delete _impl_.type_.unique_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.unique_); } clear_has_type(); } @@ -47351,7 +47573,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* AggSpec:: if (type_case() != kUnique) { clear_type(); set_has_unique(); - _impl_.type_.unique_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(GetArena()); + _impl_.type_.unique_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(GetArena()); } return _impl_.type_.unique_; } @@ -47372,10 +47595,12 @@ inline void AggSpec::set_has_weighted_avg() { _impl_._oneof_case_[0] = kWeightedAvg; } inline void AggSpec::clear_weighted_avg() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kWeightedAvg) { if (GetArena() == nullptr) { delete _impl_.type_.weighted_avg_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.weighted_avg_); } clear_has_type(); } @@ -47427,7 +47652,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec if (type_case() != kWeightedAvg) { clear_type(); set_has_weighted_avg(); - _impl_.type_.weighted_avg_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); + _impl_.type_.weighted_avg_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); } return _impl_.type_.weighted_avg_; } @@ -47448,10 +47674,12 @@ inline void AggSpec::set_has_weighted_sum() { _impl_._oneof_case_[0] = kWeightedSum; } inline void AggSpec::clear_weighted_sum() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kWeightedSum) { if (GetArena() == nullptr) { delete _impl_.type_.weighted_sum_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.weighted_sum_); } clear_has_type(); } @@ -47503,7 +47731,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec if (type_case() != kWeightedSum) { clear_type(); set_has_weighted_sum(); - _impl_.type_.weighted_sum_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); + _impl_.type_.weighted_sum_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); } return _impl_.type_.weighted_sum_; } @@ -47524,10 +47753,12 @@ inline void AggSpec::set_has_var() { _impl_._oneof_case_[0] = kVar; } inline void AggSpec::clear_var() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kVar) { if (GetArena() == nullptr) { delete _impl_.type_.var_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.var_); } clear_has_type(); } @@ -47579,7 +47810,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* AggSpec::_in if (type_case() != kVar) { clear_type(); set_has_var(); - _impl_.type_.var_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(GetArena()); + _impl_.type_.var_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(GetArena()); } return _impl_.type_.var_; } @@ -47609,7 +47841,7 @@ inline bool AggregateRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -47618,7 +47850,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateRequest:: return _internal_result_id(); } inline void AggregateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -47631,7 +47863,7 @@ inline void AggregateRequest::unsafe_arena_set_allocated_result_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -47650,7 +47882,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::releas return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -47659,22 +47891,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::unsafe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) return _msg; } inline void AggregateRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -47700,12 +47932,12 @@ inline bool AggregateRequest::has_source_id() const { return value; } inline void AggregateRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -47714,7 +47946,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateR return _internal_source_id(); } inline void AggregateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -47727,7 +47959,7 @@ inline void AggregateRequest::unsafe_arena_set_allocated_source_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -47746,7 +47978,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -47755,28 +47987,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) return _msg; } inline void AggregateRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -47796,12 +48028,12 @@ inline bool AggregateRequest::has_initial_groups_id() const { return value; } inline void AggregateRequest::clear_initial_groups_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.initial_groups_id_ != nullptr) _impl_.initial_groups_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::_internal_initial_groups_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.initial_groups_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -47810,7 +48042,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateR return _internal_initial_groups_id(); } inline void AggregateRequest::unsafe_arena_set_allocated_initial_groups_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.initial_groups_id_); } @@ -47823,7 +48055,7 @@ inline void AggregateRequest::unsafe_arena_set_allocated_initial_groups_id(::io: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::release_initial_groups_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.initial_groups_id_; @@ -47842,7 +48074,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::unsafe_arena_release_initial_groups_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -47851,28 +48083,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::_internal_mutable_initial_groups_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.initial_groups_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.initial_groups_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.initial_groups_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::mutable_initial_groups_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_initial_groups_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) return _msg; } inline void AggregateRequest::set_allocated_initial_groups_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.initial_groups_id_); + delete (_impl_.initial_groups_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -47887,7 +48119,7 @@ inline void AggregateRequest::set_allocated_initial_groups_id(::io::deephaven::p // bool preserve_empty = 4; inline void AggregateRequest::clear_preserve_empty() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.preserve_empty_ = false; } inline bool AggregateRequest::preserve_empty() const { @@ -47899,12 +48131,11 @@ inline void AggregateRequest::set_preserve_empty(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateRequest.preserve_empty) } inline bool AggregateRequest::_internal_preserve_empty() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.preserve_empty_; } inline void AggregateRequest::_internal_set_preserve_empty(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.preserve_empty_ = value; } @@ -47916,7 +48147,7 @@ inline int AggregateRequest::aggregations_size() const { return _internal_aggregations_size(); } inline void AggregateRequest::clear_aggregations() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.aggregations_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Aggregation* AggregateRequest::mutable_aggregations(int index) @@ -47927,7 +48158,7 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation* AggregateRequest::m inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* AggregateRequest::mutable_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AggregateRequest.aggregations) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_aggregations(); } inline const ::io::deephaven::proto::backplane::grpc::Aggregation& AggregateRequest::aggregations(int index) const @@ -47936,7 +48167,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Aggregation& AggregateRequ return _internal_aggregations().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Aggregation* AggregateRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Aggregation* _add = _internal_mutable_aggregations()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggregateRequest.aggregations) return _add; @@ -47948,12 +48179,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& AggregateRequest::_internal_aggregations() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.aggregations_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* AggregateRequest::_internal_mutable_aggregations() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.aggregations_; } @@ -47965,12 +48196,11 @@ inline int AggregateRequest::group_by_columns_size() const { return _internal_group_by_columns_size(); } inline void AggregateRequest::clear_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.group_by_columns_.Clear(); } -inline std::string* AggregateRequest::add_group_by_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* AggregateRequest::add_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_group_by_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) return _s; @@ -47985,57 +48215,21 @@ inline std::string* AggregateRequest::mutable_group_by_columns(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) return _internal_mutable_group_by_columns()->Mutable(index); } -inline void AggregateRequest::set_group_by_columns(int index, const std::string& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::set_group_by_columns(int index, std::string&& value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(std::move(value)); +template +inline void AggregateRequest::set_group_by_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_group_by_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) } -inline void AggregateRequest::set_group_by_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_group_by_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::set_group_by_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_group_by_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::set_group_by_columns(int index, absl::string_view value) { - _internal_mutable_group_by_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::add_group_by_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::add_group_by_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add(std::move(value)); +template +inline void AggregateRequest::add_group_by_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_group_by_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) } -inline void AggregateRequest::add_group_by_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::add_group_by_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} -inline void AggregateRequest::add_group_by_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_group_by_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) -} inline const ::google::protobuf::RepeatedPtrField& AggregateRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) @@ -48044,17 +48238,17 @@ AggregateRequest::group_by_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* AggregateRequest::mutable_group_by_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_group_by_columns(); } inline const ::google::protobuf::RepeatedPtrField& AggregateRequest::_internal_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.group_by_columns_; } inline ::google::protobuf::RepeatedPtrField* AggregateRequest::_internal_mutable_group_by_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.group_by_columns_; } @@ -48069,12 +48263,12 @@ inline bool Aggregation_AggregationColumns::has_spec() const { return value; } inline void Aggregation_AggregationColumns::clear_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ != nullptr) _impl_.spec_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::AggSpec& Aggregation_AggregationColumns::_internal_spec() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::AggSpec* p = _impl_.spec_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_AggSpec_default_instance_); } @@ -48083,7 +48277,7 @@ inline const ::io::deephaven::proto::backplane::grpc::AggSpec& Aggregation_Aggre return _internal_spec(); } inline void Aggregation_AggregationColumns::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); } @@ -48096,7 +48290,7 @@ inline void Aggregation_AggregationColumns::unsafe_arena_set_allocated_spec(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) } inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::AggSpec* released = _impl_.spec_; @@ -48115,7 +48309,7 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_Aggregation return released; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::unsafe_arena_release_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) _impl_._has_bits_[0] &= ~0x00000001u; @@ -48124,28 +48318,28 @@ inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_Aggregation return temp; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::_internal_mutable_spec() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.spec_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggSpec>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec>(GetArena()); _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(p); } return _impl_.spec_; } inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::mutable_spec() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::AggSpec* _msg = _internal_mutable_spec(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) return _msg; } inline void Aggregation_AggregationColumns::set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(_impl_.spec_); + delete (_impl_.spec_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -48166,12 +48360,11 @@ inline int Aggregation_AggregationColumns::match_pairs_size() const { return _internal_match_pairs_size(); } inline void Aggregation_AggregationColumns::clear_match_pairs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_pairs_.Clear(); } -inline std::string* Aggregation_AggregationColumns::add_match_pairs() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* Aggregation_AggregationColumns::add_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_match_pairs()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) return _s; @@ -48186,57 +48379,21 @@ inline std::string* Aggregation_AggregationColumns::mutable_match_pairs(int inde // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) return _internal_mutable_match_pairs()->Mutable(index); } -inline void Aggregation_AggregationColumns::set_match_pairs(int index, const std::string& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::set_match_pairs(int index, std::string&& value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(std::move(value)); +template +inline void Aggregation_AggregationColumns::set_match_pairs(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_match_pairs()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) } -inline void Aggregation_AggregationColumns::set_match_pairs(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_match_pairs()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::set_match_pairs(int index, const char* value, - std::size_t size) { - _internal_mutable_match_pairs()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::set_match_pairs(int index, absl::string_view value) { - _internal_mutable_match_pairs()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::add_match_pairs(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::add_match_pairs(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add(std::move(value)); +template +inline void Aggregation_AggregationColumns::add_match_pairs(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_match_pairs(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) } -inline void Aggregation_AggregationColumns::add_match_pairs(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::add_match_pairs(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} -inline void Aggregation_AggregationColumns::add_match_pairs(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_match_pairs()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) -} inline const ::google::protobuf::RepeatedPtrField& Aggregation_AggregationColumns::match_pairs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) @@ -48245,17 +48402,17 @@ Aggregation_AggregationColumns::match_pairs() const ABSL_ATTRIBUTE_LIFETIME_BOUN inline ::google::protobuf::RepeatedPtrField* Aggregation_AggregationColumns::mutable_match_pairs() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_match_pairs(); } inline const ::google::protobuf::RepeatedPtrField& Aggregation_AggregationColumns::_internal_match_pairs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.match_pairs_; } inline ::google::protobuf::RepeatedPtrField* Aggregation_AggregationColumns::_internal_mutable_match_pairs() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.match_pairs_; } @@ -48265,7 +48422,7 @@ Aggregation_AggregationColumns::_internal_mutable_match_pairs() { // string column_name = 1; inline void Aggregation_AggregationCount::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& Aggregation_AggregationCount::column_name() const @@ -48276,8 +48433,7 @@ inline const std::string& Aggregation_AggregationCount::column_name() const template inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationCount::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name) } @@ -48287,26 +48443,24 @@ inline std::string* Aggregation_AggregationCount::mutable_column_name() ABSL_ATT return _s; } inline const std::string& Aggregation_AggregationCount::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void Aggregation_AggregationCount::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* Aggregation_AggregationCount::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* Aggregation_AggregationCount::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name) return _impl_.column_name_.Release(); } inline void Aggregation_AggregationCount::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -48322,7 +48476,7 @@ inline void Aggregation_AggregationCount::set_allocated_column_name(std::string* // string column_name = 1; inline void Aggregation_AggregationRowKey::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& Aggregation_AggregationRowKey::column_name() const @@ -48333,8 +48487,7 @@ inline const std::string& Aggregation_AggregationRowKey::column_name() const template inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationRowKey::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name) } @@ -48344,26 +48497,24 @@ inline std::string* Aggregation_AggregationRowKey::mutable_column_name() ABSL_AT return _s; } inline const std::string& Aggregation_AggregationRowKey::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void Aggregation_AggregationRowKey::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* Aggregation_AggregationRowKey::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* Aggregation_AggregationRowKey::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name) return _impl_.column_name_.Release(); } inline void Aggregation_AggregationRowKey::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -48379,7 +48530,7 @@ inline void Aggregation_AggregationRowKey::set_allocated_column_name(std::string // string column_name = 1; inline void Aggregation_AggregationPartition::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& Aggregation_AggregationPartition::column_name() const @@ -48390,8 +48541,7 @@ inline const std::string& Aggregation_AggregationPartition::column_name() const template inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationPartition::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name) } @@ -48401,26 +48551,24 @@ inline std::string* Aggregation_AggregationPartition::mutable_column_name() ABSL return _s; } inline const std::string& Aggregation_AggregationPartition::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void Aggregation_AggregationPartition::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* Aggregation_AggregationPartition::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* Aggregation_AggregationPartition::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name) return _impl_.column_name_.Release(); } inline void Aggregation_AggregationPartition::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -48432,7 +48580,7 @@ inline void Aggregation_AggregationPartition::set_allocated_column_name(std::str // bool include_group_by_columns = 2; inline void Aggregation_AggregationPartition::clear_include_group_by_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_group_by_columns_ = false; } inline bool Aggregation_AggregationPartition::include_group_by_columns() const { @@ -48444,12 +48592,11 @@ inline void Aggregation_AggregationPartition::set_include_group_by_columns(bool // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.include_group_by_columns) } inline bool Aggregation_AggregationPartition::_internal_include_group_by_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.include_group_by_columns_; } inline void Aggregation_AggregationPartition::_internal_set_include_group_by_columns(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.include_group_by_columns_ = value; } @@ -48468,10 +48615,12 @@ inline void Aggregation::set_has_columns() { _impl_._oneof_case_[0] = kColumns; } inline void Aggregation::clear_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kColumns) { if (GetArena() == nullptr) { delete _impl_.type_.columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.columns_); } clear_has_type(); } @@ -48523,7 +48672,8 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* if (type_case() != kColumns) { clear_type(); set_has_columns(); - _impl_.type_.columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(GetArena()); + _impl_.type_.columns_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(GetArena()); } return _impl_.type_.columns_; } @@ -48544,10 +48694,12 @@ inline void Aggregation::set_has_count() { _impl_._oneof_case_[0] = kCount; } inline void Aggregation::clear_count() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kCount) { if (GetArena() == nullptr) { delete _impl_.type_.count_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.count_); } clear_has_type(); } @@ -48599,7 +48751,8 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* Ag if (type_case() != kCount) { clear_type(); set_has_count(); - _impl_.type_.count_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(GetArena()); + _impl_.type_.count_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(GetArena()); } return _impl_.type_.count_; } @@ -48620,10 +48773,12 @@ inline void Aggregation::set_has_first_row_key() { _impl_._oneof_case_[0] = kFirstRowKey; } inline void Aggregation::clear_first_row_key() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kFirstRowKey) { if (GetArena() == nullptr) { delete _impl_.type_.first_row_key_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.first_row_key_); } clear_has_type(); } @@ -48675,7 +48830,8 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* A if (type_case() != kFirstRowKey) { clear_type(); set_has_first_row_key(); - _impl_.type_.first_row_key_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); + _impl_.type_.first_row_key_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); } return _impl_.type_.first_row_key_; } @@ -48696,10 +48852,12 @@ inline void Aggregation::set_has_last_row_key() { _impl_._oneof_case_[0] = kLastRowKey; } inline void Aggregation::clear_last_row_key() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kLastRowKey) { if (GetArena() == nullptr) { delete _impl_.type_.last_row_key_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.last_row_key_); } clear_has_type(); } @@ -48751,7 +48909,8 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* A if (type_case() != kLastRowKey) { clear_type(); set_has_last_row_key(); - _impl_.type_.last_row_key_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); + _impl_.type_.last_row_key_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); } return _impl_.type_.last_row_key_; } @@ -48772,10 +48931,12 @@ inline void Aggregation::set_has_partition() { _impl_._oneof_case_[0] = kPartition; } inline void Aggregation::clear_partition() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (type_case() == kPartition) { if (GetArena() == nullptr) { delete _impl_.type_.partition_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.type_.partition_); } clear_has_type(); } @@ -48827,7 +48988,8 @@ inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition if (type_case() != kPartition) { clear_type(); set_has_partition(); - _impl_.type_.partition_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(GetArena()); + _impl_.type_.partition_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(GetArena()); } return _impl_.type_.partition_; } @@ -48852,7 +49014,7 @@ inline Aggregation::TypeCase Aggregation::type_case() const { // string column_name = 1; inline void SortDescriptor::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& SortDescriptor::column_name() const @@ -48863,8 +49025,7 @@ inline const std::string& SortDescriptor::column_name() const template inline PROTOBUF_ALWAYS_INLINE void SortDescriptor::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SortDescriptor.column_name) } @@ -48874,26 +49035,24 @@ inline std::string* SortDescriptor::mutable_column_name() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& SortDescriptor::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void SortDescriptor::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* SortDescriptor::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* SortDescriptor::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SortDescriptor.column_name) return _impl_.column_name_.Release(); } inline void SortDescriptor::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -48905,7 +49064,7 @@ inline void SortDescriptor::set_allocated_column_name(std::string* value) { // bool is_absolute = 2; inline void SortDescriptor::clear_is_absolute() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_absolute_ = false; } inline bool SortDescriptor::is_absolute() const { @@ -48917,18 +49076,17 @@ inline void SortDescriptor::set_is_absolute(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SortDescriptor.is_absolute) } inline bool SortDescriptor::_internal_is_absolute() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_absolute_; } inline void SortDescriptor::_internal_set_is_absolute(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_absolute_ = value; } // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; inline void SortDescriptor::clear_direction() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.direction_ = 0; } inline ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection SortDescriptor::direction() const { @@ -48940,12 +49098,11 @@ inline void SortDescriptor::set_direction(::io::deephaven::proto::backplane::grp // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SortDescriptor.direction) } inline ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection SortDescriptor::_internal_direction() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection>(_impl_.direction_); } inline void SortDescriptor::_internal_set_direction(::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.direction_ = value; } @@ -48960,7 +49117,7 @@ inline bool SortTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SortTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -48969,7 +49126,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SortTableRequest:: return _internal_result_id(); } inline void SortTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -48982,7 +49139,7 @@ inline void SortTableRequest::unsafe_arena_set_allocated_result_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -49001,7 +49158,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::releas return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -49010,22 +49167,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::unsafe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) return _msg; } inline void SortTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -49051,12 +49208,12 @@ inline bool SortTableRequest::has_source_id() const { return value; } inline void SortTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& SortTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -49065,7 +49222,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& SortTableR return _internal_source_id(); } inline void SortTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -49078,7 +49235,7 @@ inline void SortTableRequest::unsafe_arena_set_allocated_source_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -49097,7 +49254,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -49106,28 +49263,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) return _msg; } inline void SortTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -49148,7 +49305,7 @@ inline int SortTableRequest::sorts_size() const { return _internal_sorts_size(); } inline void SortTableRequest::clear_sorts() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.sorts_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* SortTableRequest::mutable_sorts(int index) @@ -49159,7 +49316,7 @@ inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* SortTableRequest inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* SortTableRequest::mutable_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.SortTableRequest.sorts) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_sorts(); } inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& SortTableRequest::sorts(int index) const @@ -49168,7 +49325,7 @@ inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& SortTableR return _internal_sorts().Get(index); } inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* SortTableRequest::add_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::SortDescriptor* _add = _internal_mutable_sorts()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SortTableRequest.sorts) return _add; @@ -49180,12 +49337,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& SortTableRequest::_internal_sorts() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.sorts_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* SortTableRequest::_internal_mutable_sorts() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.sorts_; } @@ -49200,7 +49357,7 @@ inline bool FilterTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& FilterTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -49209,7 +49366,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& FilterTableRequest return _internal_result_id(); } inline void FilterTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -49222,7 +49379,7 @@ inline void FilterTableRequest::unsafe_arena_set_allocated_result_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -49241,7 +49398,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -49250,22 +49407,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) return _msg; } inline void FilterTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -49291,12 +49448,12 @@ inline bool FilterTableRequest::has_source_id() const { return value; } inline void FilterTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& FilterTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -49305,7 +49462,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& FilterTabl return _internal_source_id(); } inline void FilterTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -49318,7 +49475,7 @@ inline void FilterTableRequest::unsafe_arena_set_allocated_source_id(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -49337,7 +49494,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableReque return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -49346,28 +49503,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableReque return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) return _msg; } inline void FilterTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -49388,7 +49545,7 @@ inline int FilterTableRequest::filters_size() const { return _internal_filters_size(); } inline void FilterTableRequest::clear_filters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filters_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Condition* FilterTableRequest::mutable_filters(int index) @@ -49399,7 +49556,7 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* FilterTableRequest::m inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* FilterTableRequest::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.FilterTableRequest.filters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_filters(); } inline const ::io::deephaven::proto::backplane::grpc::Condition& FilterTableRequest::filters(int index) const @@ -49408,7 +49565,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Condition& FilterTableRequ return _internal_filters().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Condition* FilterTableRequest::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Condition* _add = _internal_mutable_filters()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.FilterTableRequest.filters) return _add; @@ -49420,12 +49577,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& FilterTableRequest::_internal_filters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filters_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* FilterTableRequest::_internal_mutable_filters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.filters_; } @@ -49440,7 +49597,7 @@ inline bool SeekRowRequest::has_source_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& SeekRowRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -49449,7 +49606,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& SeekRowRequest::so return _internal_source_id(); } inline void SeekRowRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -49462,7 +49619,7 @@ inline void SeekRowRequest::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; @@ -49481,7 +49638,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -49490,22 +49647,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) return _msg; } inline void SeekRowRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -49526,7 +49683,7 @@ inline void SeekRowRequest::set_allocated_source_id(::io::deephaven::proto::back // sint64 starting_row = 2 [jstype = JS_STRING]; inline void SeekRowRequest::clear_starting_row() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.starting_row_ = ::int64_t{0}; } inline ::int64_t SeekRowRequest::starting_row() const { @@ -49538,18 +49695,17 @@ inline void SeekRowRequest::set_starting_row(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.starting_row) } inline ::int64_t SeekRowRequest::_internal_starting_row() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.starting_row_; } inline void SeekRowRequest::_internal_set_starting_row(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.starting_row_ = value; } // string column_name = 3; inline void SeekRowRequest::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& SeekRowRequest::column_name() const @@ -49560,8 +49716,7 @@ inline const std::string& SeekRowRequest::column_name() const template inline PROTOBUF_ALWAYS_INLINE void SeekRowRequest::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name) } @@ -49571,26 +49726,24 @@ inline std::string* SeekRowRequest::mutable_column_name() ABSL_ATTRIBUTE_LIFETIM return _s; } inline const std::string& SeekRowRequest::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void SeekRowRequest::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* SeekRowRequest::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* SeekRowRequest::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name) return _impl_.column_name_.Release(); } inline void SeekRowRequest::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -49607,12 +49760,12 @@ inline bool SeekRowRequest::has_seek_value() const { return value; } inline void SeekRowRequest::clear_seek_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.seek_value_ != nullptr) _impl_.seek_value_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::Literal& SeekRowRequest::_internal_seek_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Literal* p = _impl_.seek_value_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Literal_default_instance_); } @@ -49621,7 +49774,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Literal& SeekRowRequest::s return _internal_seek_value(); } inline void SeekRowRequest::unsafe_arena_set_allocated_seek_value(::io::deephaven::proto::backplane::grpc::Literal* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.seek_value_); } @@ -49634,7 +49787,7 @@ inline void SeekRowRequest::unsafe_arena_set_allocated_seek_value(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) } inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::release_seek_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Literal* released = _impl_.seek_value_; @@ -49653,7 +49806,7 @@ inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::release return released; } inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::unsafe_arena_release_seek_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) _impl_._has_bits_[0] &= ~0x00000002u; @@ -49662,28 +49815,28 @@ inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::_internal_mutable_seek_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.seek_value_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Literal>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Literal>(GetArena()); _impl_.seek_value_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal*>(p); } return _impl_.seek_value_; } inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::mutable_seek_value() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Literal* _msg = _internal_mutable_seek_value(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) return _msg; } inline void SeekRowRequest::set_allocated_seek_value(::io::deephaven::proto::backplane::grpc::Literal* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal*>(_impl_.seek_value_); + delete (_impl_.seek_value_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -49698,7 +49851,7 @@ inline void SeekRowRequest::set_allocated_seek_value(::io::deephaven::proto::bac // bool insensitive = 5; inline void SeekRowRequest::clear_insensitive() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.insensitive_ = false; } inline bool SeekRowRequest::insensitive() const { @@ -49710,18 +49863,17 @@ inline void SeekRowRequest::set_insensitive(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.insensitive) } inline bool SeekRowRequest::_internal_insensitive() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.insensitive_; } inline void SeekRowRequest::_internal_set_insensitive(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.insensitive_ = value; } // bool contains = 6; inline void SeekRowRequest::clear_contains() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contains_ = false; } inline bool SeekRowRequest::contains() const { @@ -49733,18 +49885,17 @@ inline void SeekRowRequest::set_contains(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.contains) } inline bool SeekRowRequest::_internal_contains() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.contains_; } inline void SeekRowRequest::_internal_set_contains(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.contains_ = value; } // bool is_backward = 7; inline void SeekRowRequest::clear_is_backward() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_backward_ = false; } inline bool SeekRowRequest::is_backward() const { @@ -49756,12 +49907,11 @@ inline void SeekRowRequest::set_is_backward(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.is_backward) } inline bool SeekRowRequest::_internal_is_backward() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.is_backward_; } inline void SeekRowRequest::_internal_set_is_backward(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.is_backward_ = value; } @@ -49771,7 +49921,7 @@ inline void SeekRowRequest::_internal_set_is_backward(bool value) { // sint64 result_row = 1 [jstype = JS_STRING]; inline void SeekRowResponse::clear_result_row() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.result_row_ = ::int64_t{0}; } inline ::int64_t SeekRowResponse::result_row() const { @@ -49783,12 +49933,11 @@ inline void SeekRowResponse::set_result_row(::int64_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowResponse.result_row) } inline ::int64_t SeekRowResponse::_internal_result_row() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.result_row_; } inline void SeekRowResponse::_internal_set_result_row(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.result_row_ = value; } @@ -49798,7 +49947,7 @@ inline void SeekRowResponse::_internal_set_result_row(::int64_t value) { // string column_name = 1; inline void Reference::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& Reference::column_name() const @@ -49809,8 +49958,7 @@ inline const std::string& Reference::column_name() const template inline PROTOBUF_ALWAYS_INLINE void Reference::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Reference.column_name) } @@ -49820,26 +49968,24 @@ inline std::string* Reference::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOU return _s; } inline const std::string& Reference::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void Reference::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* Reference::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* Reference::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Reference.column_name) return _impl_.column_name_.Release(); } inline void Reference::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -49861,7 +50007,7 @@ inline void Literal::set_has_string_value() { _impl_._oneof_case_[0] = kStringValue; } inline void Literal::clear_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() == kStringValue) { _impl_.value_.string_value_.Destroy(); clear_has_value(); @@ -49875,7 +50021,7 @@ inline const std::string& Literal::string_value() const template inline PROTOBUF_ALWAYS_INLINE void Literal::set_string_value(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() != kStringValue) { clear_value(); @@ -49891,14 +50037,14 @@ inline std::string* Literal::mutable_string_value() ABSL_ATTRIBUTE_LIFETIME_BOUN return _s; } inline const std::string& Literal::_internal_string_value() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (value_case() != kStringValue) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.value_.string_value_.Get(); } inline void Literal::_internal_set_string_value(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() != kStringValue) { clear_value(); @@ -49908,7 +50054,7 @@ inline void Literal::_internal_set_string_value(const std::string& value) { _impl_.value_.string_value_.Set(value, GetArena()); } inline std::string* Literal::_internal_mutable_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() != kStringValue) { clear_value(); @@ -49918,7 +50064,7 @@ inline std::string* Literal::_internal_mutable_string_value() { return _impl_.value_.string_value_.Mutable( GetArena()); } inline std::string* Literal::release_string_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Literal.string_value) if (value_case() != kStringValue) { return nullptr; @@ -49927,7 +50073,7 @@ inline std::string* Literal::release_string_value() { return _impl_.value_.string_value_.Release(); } inline void Literal::set_allocated_string_value(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_value()) { clear_value(); } @@ -49946,7 +50092,7 @@ inline void Literal::set_has_double_value() { _impl_._oneof_case_[0] = kDoubleValue; } inline void Literal::clear_double_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() == kDoubleValue) { _impl_.value_.double_value_ = 0; clear_has_value(); @@ -49957,7 +50103,11 @@ inline double Literal::double_value() const { return _internal_double_value(); } inline void Literal::set_double_value(double value) { - _internal_set_double_value(value); + if (value_case() != kDoubleValue) { + clear_value(); + set_has_double_value(); + } + _impl_.value_.double_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Literal.double_value) } inline double Literal::_internal_double_value() const { @@ -49966,13 +50116,6 @@ inline double Literal::_internal_double_value() const { } return 0; } -inline void Literal::_internal_set_double_value(double value) { - if (value_case() != kDoubleValue) { - clear_value(); - set_has_double_value(); - } - _impl_.value_.double_value_ = value; -} // bool bool_value = 3; inline bool Literal::has_bool_value() const { @@ -49982,7 +50125,7 @@ inline void Literal::set_has_bool_value() { _impl_._oneof_case_[0] = kBoolValue; } inline void Literal::clear_bool_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() == kBoolValue) { _impl_.value_.bool_value_ = false; clear_has_value(); @@ -49993,7 +50136,11 @@ inline bool Literal::bool_value() const { return _internal_bool_value(); } inline void Literal::set_bool_value(bool value) { - _internal_set_bool_value(value); + if (value_case() != kBoolValue) { + clear_value(); + set_has_bool_value(); + } + _impl_.value_.bool_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Literal.bool_value) } inline bool Literal::_internal_bool_value() const { @@ -50002,13 +50149,6 @@ inline bool Literal::_internal_bool_value() const { } return false; } -inline void Literal::_internal_set_bool_value(bool value) { - if (value_case() != kBoolValue) { - clear_value(); - set_has_bool_value(); - } - _impl_.value_.bool_value_ = value; -} // sint64 long_value = 4 [jstype = JS_STRING]; inline bool Literal::has_long_value() const { @@ -50018,7 +50158,7 @@ inline void Literal::set_has_long_value() { _impl_._oneof_case_[0] = kLongValue; } inline void Literal::clear_long_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() == kLongValue) { _impl_.value_.long_value_ = ::int64_t{0}; clear_has_value(); @@ -50029,7 +50169,11 @@ inline ::int64_t Literal::long_value() const { return _internal_long_value(); } inline void Literal::set_long_value(::int64_t value) { - _internal_set_long_value(value); + if (value_case() != kLongValue) { + clear_value(); + set_has_long_value(); + } + _impl_.value_.long_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Literal.long_value) } inline ::int64_t Literal::_internal_long_value() const { @@ -50038,13 +50182,6 @@ inline ::int64_t Literal::_internal_long_value() const { } return ::int64_t{0}; } -inline void Literal::_internal_set_long_value(::int64_t value) { - if (value_case() != kLongValue) { - clear_value(); - set_has_long_value(); - } - _impl_.value_.long_value_ = value; -} // sint64 nano_time_value = 5 [jstype = JS_STRING]; inline bool Literal::has_nano_time_value() const { @@ -50054,7 +50191,7 @@ inline void Literal::set_has_nano_time_value() { _impl_._oneof_case_[0] = kNanoTimeValue; } inline void Literal::clear_nano_time_value() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (value_case() == kNanoTimeValue) { _impl_.value_.nano_time_value_ = ::int64_t{0}; clear_has_value(); @@ -50065,7 +50202,11 @@ inline ::int64_t Literal::nano_time_value() const { return _internal_nano_time_value(); } inline void Literal::set_nano_time_value(::int64_t value) { - _internal_set_nano_time_value(value); + if (value_case() != kNanoTimeValue) { + clear_value(); + set_has_nano_time_value(); + } + _impl_.value_.nano_time_value_ = value; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Literal.nano_time_value) } inline ::int64_t Literal::_internal_nano_time_value() const { @@ -50074,13 +50215,6 @@ inline ::int64_t Literal::_internal_nano_time_value() const { } return ::int64_t{0}; } -inline void Literal::_internal_set_nano_time_value(::int64_t value) { - if (value_case() != kNanoTimeValue) { - clear_value(); - set_has_nano_time_value(); - } - _impl_.value_.nano_time_value_ = value; -} inline bool Literal::has_value() const { return value_case() != VALUE_NOT_SET; @@ -50106,10 +50240,12 @@ inline void Value::set_has_reference() { _impl_._oneof_case_[0] = kReference; } inline void Value::clear_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kReference) { if (GetArena() == nullptr) { delete _impl_.data_.reference_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.reference_); } clear_has_data(); } @@ -50161,7 +50297,8 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* Value::_internal_muta if (data_case() != kReference) { clear_data(); set_has_reference(); - _impl_.data_.reference_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); + _impl_.data_.reference_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); } return _impl_.data_.reference_; } @@ -50182,10 +50319,12 @@ inline void Value::set_has_literal() { _impl_._oneof_case_[0] = kLiteral; } inline void Value::clear_literal() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kLiteral) { if (GetArena() == nullptr) { delete _impl_.data_.literal_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.literal_); } clear_has_data(); } @@ -50237,7 +50376,8 @@ inline ::io::deephaven::proto::backplane::grpc::Literal* Value::_internal_mutabl if (data_case() != kLiteral) { clear_data(); set_has_literal(); - _impl_.data_.literal_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Literal>(GetArena()); + _impl_.data_.literal_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Literal>(GetArena()); } return _impl_.data_.literal_; } @@ -50271,10 +50411,12 @@ inline void Condition::set_has_and_() { _impl_._oneof_case_[0] = kAnd; } inline void Condition::clear_and_() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kAnd) { if (GetArena() == nullptr) { delete _impl_.data_.and__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.and__); } clear_has_data(); } @@ -50326,7 +50468,8 @@ inline ::io::deephaven::proto::backplane::grpc::AndCondition* Condition::_intern if (data_case() != kAnd) { clear_data(); set_has_and_(); - _impl_.data_.and__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AndCondition>(GetArena()); + _impl_.data_.and__ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AndCondition>(GetArena()); } return _impl_.data_.and__; } @@ -50347,10 +50490,12 @@ inline void Condition::set_has_or_() { _impl_._oneof_case_[0] = kOr; } inline void Condition::clear_or_() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kOr) { if (GetArena() == nullptr) { delete _impl_.data_.or__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.or__); } clear_has_data(); } @@ -50402,7 +50547,8 @@ inline ::io::deephaven::proto::backplane::grpc::OrCondition* Condition::_interna if (data_case() != kOr) { clear_data(); set_has_or_(); - _impl_.data_.or__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::OrCondition>(GetArena()); + _impl_.data_.or__ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::OrCondition>(GetArena()); } return _impl_.data_.or__; } @@ -50423,10 +50569,12 @@ inline void Condition::set_has_not_() { _impl_._oneof_case_[0] = kNot; } inline void Condition::clear_not_() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kNot) { if (GetArena() == nullptr) { delete _impl_.data_.not__; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.not__); } clear_has_data(); } @@ -50478,7 +50626,8 @@ inline ::io::deephaven::proto::backplane::grpc::NotCondition* Condition::_intern if (data_case() != kNot) { clear_data(); set_has_not_(); - _impl_.data_.not__ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::NotCondition>(GetArena()); + _impl_.data_.not__ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::NotCondition>(GetArena()); } return _impl_.data_.not__; } @@ -50499,10 +50648,12 @@ inline void Condition::set_has_compare() { _impl_._oneof_case_[0] = kCompare; } inline void Condition::clear_compare() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kCompare) { if (GetArena() == nullptr) { delete _impl_.data_.compare_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.compare_); } clear_has_data(); } @@ -50554,7 +50705,8 @@ inline ::io::deephaven::proto::backplane::grpc::CompareCondition* Condition::_in if (data_case() != kCompare) { clear_data(); set_has_compare(); - _impl_.data_.compare_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CompareCondition>(GetArena()); + _impl_.data_.compare_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CompareCondition>(GetArena()); } return _impl_.data_.compare_; } @@ -50575,10 +50727,12 @@ inline void Condition::set_has_in() { _impl_._oneof_case_[0] = kIn; } inline void Condition::clear_in() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kIn) { if (GetArena() == nullptr) { delete _impl_.data_.in_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.in_); } clear_has_data(); } @@ -50630,7 +50784,8 @@ inline ::io::deephaven::proto::backplane::grpc::InCondition* Condition::_interna if (data_case() != kIn) { clear_data(); set_has_in(); - _impl_.data_.in_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::InCondition>(GetArena()); + _impl_.data_.in_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::InCondition>(GetArena()); } return _impl_.data_.in_; } @@ -50651,10 +50806,12 @@ inline void Condition::set_has_invoke() { _impl_._oneof_case_[0] = kInvoke; } inline void Condition::clear_invoke() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kInvoke) { if (GetArena() == nullptr) { delete _impl_.data_.invoke_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.invoke_); } clear_has_data(); } @@ -50706,7 +50863,8 @@ inline ::io::deephaven::proto::backplane::grpc::InvokeCondition* Condition::_int if (data_case() != kInvoke) { clear_data(); set_has_invoke(); - _impl_.data_.invoke_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::InvokeCondition>(GetArena()); + _impl_.data_.invoke_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::InvokeCondition>(GetArena()); } return _impl_.data_.invoke_; } @@ -50727,10 +50885,12 @@ inline void Condition::set_has_is_null() { _impl_._oneof_case_[0] = kIsNull; } inline void Condition::clear_is_null() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kIsNull) { if (GetArena() == nullptr) { delete _impl_.data_.is_null_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.is_null_); } clear_has_data(); } @@ -50782,7 +50942,8 @@ inline ::io::deephaven::proto::backplane::grpc::IsNullCondition* Condition::_int if (data_case() != kIsNull) { clear_data(); set_has_is_null(); - _impl_.data_.is_null_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::IsNullCondition>(GetArena()); + _impl_.data_.is_null_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::IsNullCondition>(GetArena()); } return _impl_.data_.is_null_; } @@ -50803,10 +50964,12 @@ inline void Condition::set_has_matches() { _impl_._oneof_case_[0] = kMatches; } inline void Condition::clear_matches() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kMatches) { if (GetArena() == nullptr) { delete _impl_.data_.matches_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.matches_); } clear_has_data(); } @@ -50858,7 +51021,8 @@ inline ::io::deephaven::proto::backplane::grpc::MatchesCondition* Condition::_in if (data_case() != kMatches) { clear_data(); set_has_matches(); - _impl_.data_.matches_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MatchesCondition>(GetArena()); + _impl_.data_.matches_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MatchesCondition>(GetArena()); } return _impl_.data_.matches_; } @@ -50879,10 +51043,12 @@ inline void Condition::set_has_contains() { _impl_._oneof_case_[0] = kContains; } inline void Condition::clear_contains() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kContains) { if (GetArena() == nullptr) { delete _impl_.data_.contains_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.contains_); } clear_has_data(); } @@ -50934,7 +51100,8 @@ inline ::io::deephaven::proto::backplane::grpc::ContainsCondition* Condition::_i if (data_case() != kContains) { clear_data(); set_has_contains(); - _impl_.data_.contains_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ContainsCondition>(GetArena()); + _impl_.data_.contains_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ContainsCondition>(GetArena()); } return _impl_.data_.contains_; } @@ -50955,10 +51122,12 @@ inline void Condition::set_has_search() { _impl_._oneof_case_[0] = kSearch; } inline void Condition::clear_search() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (data_case() == kSearch) { if (GetArena() == nullptr) { delete _impl_.data_.search_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.data_.search_); } clear_has_data(); } @@ -51010,7 +51179,8 @@ inline ::io::deephaven::proto::backplane::grpc::SearchCondition* Condition::_int if (data_case() != kSearch) { clear_data(); set_has_search(); - _impl_.data_.search_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SearchCondition>(GetArena()); + _impl_.data_.search_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SearchCondition>(GetArena()); } return _impl_.data_.search_; } @@ -51041,7 +51211,7 @@ inline int AndCondition::filters_size() const { return _internal_filters_size(); } inline void AndCondition::clear_filters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filters_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Condition* AndCondition::mutable_filters(int index) @@ -51052,7 +51222,7 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* AndCondition::mutable inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* AndCondition::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.AndCondition.filters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_filters(); } inline const ::io::deephaven::proto::backplane::grpc::Condition& AndCondition::filters(int index) const @@ -51061,7 +51231,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Condition& AndCondition::f return _internal_filters().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Condition* AndCondition::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Condition* _add = _internal_mutable_filters()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.AndCondition.filters) return _add; @@ -51073,12 +51243,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& AndCondition::_internal_filters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filters_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* AndCondition::_internal_mutable_filters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.filters_; } @@ -51094,7 +51264,7 @@ inline int OrCondition::filters_size() const { return _internal_filters_size(); } inline void OrCondition::clear_filters() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.filters_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Condition* OrCondition::mutable_filters(int index) @@ -51105,7 +51275,7 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* OrCondition::mutable_ inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* OrCondition::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.OrCondition.filters) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_filters(); } inline const ::io::deephaven::proto::backplane::grpc::Condition& OrCondition::filters(int index) const @@ -51114,7 +51284,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Condition& OrCondition::fi return _internal_filters().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Condition* OrCondition::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Condition* _add = _internal_mutable_filters()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.OrCondition.filters) return _add; @@ -51126,12 +51296,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& OrCondition::_internal_filters() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.filters_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* OrCondition::_internal_mutable_filters() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.filters_; } @@ -51146,12 +51316,12 @@ inline bool NotCondition::has_filter() const { return value; } inline void NotCondition::clear_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.filter_ != nullptr) _impl_.filter_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Condition& NotCondition::_internal_filter() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Condition* p = _impl_.filter_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Condition_default_instance_); } @@ -51160,7 +51330,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Condition& NotCondition::f return _internal_filter(); } inline void NotCondition::unsafe_arena_set_allocated_filter(::io::deephaven::proto::backplane::grpc::Condition* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.filter_); } @@ -51173,7 +51343,7 @@ inline void NotCondition::unsafe_arena_set_allocated_filter(::io::deephaven::pro // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.NotCondition.filter) } inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::release_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Condition* released = _impl_.filter_; @@ -51192,7 +51362,7 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::release return released; } inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::unsafe_arena_release_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NotCondition.filter) _impl_._has_bits_[0] &= ~0x00000001u; @@ -51201,28 +51371,28 @@ inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::_internal_mutable_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.filter_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Condition>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Condition>(GetArena()); _impl_.filter_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Condition*>(p); } return _impl_.filter_; } inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::mutable_filter() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Condition* _msg = _internal_mutable_filter(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NotCondition.filter) return _msg; } inline void NotCondition::set_allocated_filter(::io::deephaven::proto::backplane::grpc::Condition* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Condition*>(_impl_.filter_); + delete (_impl_.filter_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Condition*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51241,7 +51411,7 @@ inline void NotCondition::set_allocated_filter(::io::deephaven::proto::backplane // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; inline void CompareCondition::clear_operation() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.operation_ = 0; } inline ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation CompareCondition::operation() const { @@ -51253,18 +51423,17 @@ inline void CompareCondition::set_operation(::io::deephaven::proto::backplane::g // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CompareCondition.operation) } inline ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation CompareCondition::_internal_operation() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation>(_impl_.operation_); } inline void CompareCondition::_internal_set_operation(::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.operation_ = value; } // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; inline void CompareCondition::clear_case_sensitivity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = 0; } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity CompareCondition::case_sensitivity() const { @@ -51276,12 +51445,11 @@ inline void CompareCondition::set_case_sensitivity(::io::deephaven::proto::backp // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CompareCondition.case_sensitivity) } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity CompareCondition::_internal_case_sensitivity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::CaseSensitivity>(_impl_.case_sensitivity_); } inline void CompareCondition::_internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = value; } @@ -51292,12 +51460,12 @@ inline bool CompareCondition::has_lhs() const { return value; } inline void CompareCondition::clear_lhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.lhs_ != nullptr) _impl_.lhs_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::_internal_lhs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Value* p = _impl_.lhs_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Value_default_instance_); } @@ -51306,7 +51474,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::l return _internal_lhs(); } inline void CompareCondition::unsafe_arena_set_allocated_lhs(::io::deephaven::proto::backplane::grpc::Value* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.lhs_); } @@ -51319,7 +51487,7 @@ inline void CompareCondition::unsafe_arena_set_allocated_lhs(::io::deephaven::pr // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::release_lhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.lhs_; @@ -51338,7 +51506,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::release return released; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_arena_release_lhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) _impl_._has_bits_[0] &= ~0x00000001u; @@ -51347,28 +51515,28 @@ inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::_internal_mutable_lhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.lhs_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); _impl_.lhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(p); } return _impl_.lhs_; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::mutable_lhs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* _msg = _internal_mutable_lhs(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) return _msg; } inline void CompareCondition::set_allocated_lhs(::io::deephaven::proto::backplane::grpc::Value* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(_impl_.lhs_); + delete (_impl_.lhs_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51388,12 +51556,12 @@ inline bool CompareCondition::has_rhs() const { return value; } inline void CompareCondition::clear_rhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.rhs_ != nullptr) _impl_.rhs_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::_internal_rhs() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Value* p = _impl_.rhs_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Value_default_instance_); } @@ -51402,7 +51570,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::r return _internal_rhs(); } inline void CompareCondition::unsafe_arena_set_allocated_rhs(::io::deephaven::proto::backplane::grpc::Value* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.rhs_); } @@ -51415,7 +51583,7 @@ inline void CompareCondition::unsafe_arena_set_allocated_rhs(::io::deephaven::pr // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::release_rhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.rhs_; @@ -51434,7 +51602,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::release return released; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_arena_release_rhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) _impl_._has_bits_[0] &= ~0x00000002u; @@ -51443,28 +51611,28 @@ inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_ return temp; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::_internal_mutable_rhs() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.rhs_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); _impl_.rhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(p); } return _impl_.rhs_; } inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::mutable_rhs() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::Value* _msg = _internal_mutable_rhs(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) return _msg; } inline void CompareCondition::set_allocated_rhs(::io::deephaven::proto::backplane::grpc::Value* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(_impl_.rhs_); + delete (_impl_.rhs_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51488,12 +51656,12 @@ inline bool InCondition::has_target() const { return value; } inline void InCondition::clear_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.target_ != nullptr) _impl_.target_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::_internal_target() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Value* p = _impl_.target_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Value_default_instance_); } @@ -51502,7 +51670,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::target return _internal_target(); } inline void InCondition::unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.target_); } @@ -51515,7 +51683,7 @@ inline void InCondition::unsafe_arena_set_allocated_target(::io::deephaven::prot // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.InCondition.target) } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::release_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.target_; @@ -51534,7 +51702,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::release_targ return released; } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::unsafe_arena_release_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.InCondition.target) _impl_._has_bits_[0] &= ~0x00000001u; @@ -51543,28 +51711,28 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::unsafe_arena return temp; } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::_internal_mutable_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.target_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(p); } return _impl_.target_; } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::mutable_target() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* _msg = _internal_mutable_target(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.InCondition.target) return _msg; } inline void InCondition::set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(_impl_.target_); + delete (_impl_.target_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51585,7 +51753,7 @@ inline int InCondition::candidates_size() const { return _internal_candidates_size(); } inline void InCondition::clear_candidates() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.candidates_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::mutable_candidates(int index) @@ -51596,7 +51764,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::mutable_cand inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* InCondition::mutable_candidates() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.InCondition.candidates) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_candidates(); } inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::candidates(int index) const @@ -51605,7 +51773,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::candid return _internal_candidates().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::add_candidates() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Value* _add = _internal_mutable_candidates()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.InCondition.candidates) return _add; @@ -51617,18 +51785,18 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& InCondition::_internal_candidates() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.candidates_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* InCondition::_internal_mutable_candidates() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.candidates_; } // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; inline void InCondition::clear_case_sensitivity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = 0; } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity InCondition::case_sensitivity() const { @@ -51640,18 +51808,17 @@ inline void InCondition::set_case_sensitivity(::io::deephaven::proto::backplane: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.InCondition.case_sensitivity) } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity InCondition::_internal_case_sensitivity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::CaseSensitivity>(_impl_.case_sensitivity_); } inline void InCondition::_internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = value; } // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; inline void InCondition::clear_match_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = 0; } inline ::io::deephaven::proto::backplane::grpc::MatchType InCondition::match_type() const { @@ -51663,12 +51830,11 @@ inline void InCondition::set_match_type(::io::deephaven::proto::backplane::grpc: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.InCondition.match_type) } inline ::io::deephaven::proto::backplane::grpc::MatchType InCondition::_internal_match_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::MatchType>(_impl_.match_type_); } inline void InCondition::_internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = value; } @@ -51678,7 +51844,7 @@ inline void InCondition::_internal_set_match_type(::io::deephaven::proto::backpl // string method = 1; inline void InvokeCondition::clear_method() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.method_.ClearToEmpty(); } inline const std::string& InvokeCondition::method() const @@ -51689,8 +51855,7 @@ inline const std::string& InvokeCondition::method() const template inline PROTOBUF_ALWAYS_INLINE void InvokeCondition::set_method(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.method_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.InvokeCondition.method) } @@ -51700,26 +51865,24 @@ inline std::string* InvokeCondition::mutable_method() ABSL_ATTRIBUTE_LIFETIME_BO return _s; } inline const std::string& InvokeCondition::_internal_method() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.method_.Get(); } inline void InvokeCondition::_internal_set_method(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.method_.Set(value, GetArena()); } inline std::string* InvokeCondition::_internal_mutable_method() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.method_.Mutable( GetArena()); } inline std::string* InvokeCondition::release_method() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.InvokeCondition.method) return _impl_.method_.Release(); } inline void InvokeCondition::set_allocated_method(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.method_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.method_.IsDefault()) { @@ -51736,12 +51899,12 @@ inline bool InvokeCondition::has_target() const { return value; } inline void InvokeCondition::clear_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.target_ != nullptr) _impl_.target_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::_internal_target() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Value* p = _impl_.target_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Value_default_instance_); } @@ -51750,7 +51913,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::ta return _internal_target(); } inline void InvokeCondition::unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.target_); } @@ -51763,7 +51926,7 @@ inline void InvokeCondition::unsafe_arena_set_allocated_target(::io::deephaven:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.InvokeCondition.target) } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::release_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.target_; @@ -51782,7 +51945,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::unsafe_arena_release_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.InvokeCondition.target) _impl_._has_bits_[0] &= ~0x00000001u; @@ -51791,28 +51954,28 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::_internal_mutable_target() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.target_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Value>(GetArena()); _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(p); } return _impl_.target_; } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::mutable_target() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Value* _msg = _internal_mutable_target(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.InvokeCondition.target) return _msg; } inline void InvokeCondition::set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(_impl_.target_); + delete (_impl_.target_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51833,7 +51996,7 @@ inline int InvokeCondition::arguments_size() const { return _internal_arguments_size(); } inline void InvokeCondition::clear_arguments() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.arguments_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::mutable_arguments(int index) @@ -51844,7 +52007,7 @@ inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::mutable_ inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* InvokeCondition::mutable_arguments() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.InvokeCondition.arguments) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_arguments(); } inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::arguments(int index) const @@ -51853,7 +52016,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::ar return _internal_arguments().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::add_arguments() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Value* _add = _internal_mutable_arguments()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.InvokeCondition.arguments) return _add; @@ -51865,12 +52028,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& InvokeCondition::_internal_arguments() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.arguments_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* InvokeCondition::_internal_mutable_arguments() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.arguments_; } @@ -51885,12 +52048,12 @@ inline bool IsNullCondition::has_reference() const { return value; } inline void IsNullCondition::clear_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ != nullptr) _impl_.reference_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Reference& IsNullCondition::_internal_reference() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Reference* p = _impl_.reference_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Reference_default_instance_); } @@ -51899,7 +52062,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Reference& IsNullCondition return _internal_reference(); } inline void IsNullCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); } @@ -51912,7 +52075,7 @@ inline void IsNullCondition::unsafe_arena_set_allocated_reference(::io::deephave // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) } inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; @@ -51931,7 +52094,7 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::rele return released; } inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::unsafe_arena_release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) _impl_._has_bits_[0] &= ~0x00000001u; @@ -51940,28 +52103,28 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::unsa return temp; } inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::_internal_mutable_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(p); } return _impl_.reference_; } inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::mutable_reference() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* _msg = _internal_mutable_reference(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) return _msg; } inline void IsNullCondition::set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(_impl_.reference_); + delete (_impl_.reference_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -51985,12 +52148,12 @@ inline bool MatchesCondition::has_reference() const { return value; } inline void MatchesCondition::clear_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ != nullptr) _impl_.reference_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Reference& MatchesCondition::_internal_reference() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Reference* p = _impl_.reference_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Reference_default_instance_); } @@ -51999,7 +52162,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Reference& MatchesConditio return _internal_reference(); } inline void MatchesCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); } @@ -52012,7 +52175,7 @@ inline void MatchesCondition::unsafe_arena_set_allocated_reference(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) } inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; @@ -52031,7 +52194,7 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::rel return released; } inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::unsafe_arena_release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) _impl_._has_bits_[0] &= ~0x00000001u; @@ -52040,28 +52203,28 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::uns return temp; } inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::_internal_mutable_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(p); } return _impl_.reference_; } inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::mutable_reference() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* _msg = _internal_mutable_reference(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) return _msg; } inline void MatchesCondition::set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(_impl_.reference_); + delete (_impl_.reference_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -52076,7 +52239,7 @@ inline void MatchesCondition::set_allocated_reference(::io::deephaven::proto::ba // string regex = 2; inline void MatchesCondition::clear_regex() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.regex_.ClearToEmpty(); } inline const std::string& MatchesCondition::regex() const @@ -52087,8 +52250,7 @@ inline const std::string& MatchesCondition::regex() const template inline PROTOBUF_ALWAYS_INLINE void MatchesCondition::set_regex(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.regex_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MatchesCondition.regex) } @@ -52098,26 +52260,24 @@ inline std::string* MatchesCondition::mutable_regex() ABSL_ATTRIBUTE_LIFETIME_BO return _s; } inline const std::string& MatchesCondition::_internal_regex() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.regex_.Get(); } inline void MatchesCondition::_internal_set_regex(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.regex_.Set(value, GetArena()); } inline std::string* MatchesCondition::_internal_mutable_regex() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.regex_.Mutable( GetArena()); } inline std::string* MatchesCondition::release_regex() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MatchesCondition.regex) return _impl_.regex_.Release(); } inline void MatchesCondition::set_allocated_regex(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.regex_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.regex_.IsDefault()) { @@ -52129,7 +52289,7 @@ inline void MatchesCondition::set_allocated_regex(std::string* value) { // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; inline void MatchesCondition::clear_case_sensitivity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = 0; } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity MatchesCondition::case_sensitivity() const { @@ -52141,18 +52301,17 @@ inline void MatchesCondition::set_case_sensitivity(::io::deephaven::proto::backp // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MatchesCondition.case_sensitivity) } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity MatchesCondition::_internal_case_sensitivity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::CaseSensitivity>(_impl_.case_sensitivity_); } inline void MatchesCondition::_internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = value; } // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; inline void MatchesCondition::clear_match_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = 0; } inline ::io::deephaven::proto::backplane::grpc::MatchType MatchesCondition::match_type() const { @@ -52164,12 +52323,11 @@ inline void MatchesCondition::set_match_type(::io::deephaven::proto::backplane:: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MatchesCondition.match_type) } inline ::io::deephaven::proto::backplane::grpc::MatchType MatchesCondition::_internal_match_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::MatchType>(_impl_.match_type_); } inline void MatchesCondition::_internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = value; } @@ -52184,12 +52342,12 @@ inline bool ContainsCondition::has_reference() const { return value; } inline void ContainsCondition::clear_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ != nullptr) _impl_.reference_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Reference& ContainsCondition::_internal_reference() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Reference* p = _impl_.reference_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Reference_default_instance_); } @@ -52198,7 +52356,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Reference& ContainsConditi return _internal_reference(); } inline void ContainsCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); } @@ -52211,7 +52369,7 @@ inline void ContainsCondition::unsafe_arena_set_allocated_reference(::io::deepha // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) } inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; @@ -52230,7 +52388,7 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::re return released; } inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::unsafe_arena_release_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) _impl_._has_bits_[0] &= ~0x00000001u; @@ -52239,28 +52397,28 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::un return temp; } inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::_internal_mutable_reference() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.reference_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(p); } return _impl_.reference_; } inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::mutable_reference() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Reference* _msg = _internal_mutable_reference(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) return _msg; } inline void ContainsCondition::set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(_impl_.reference_); + delete (_impl_.reference_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -52275,7 +52433,7 @@ inline void ContainsCondition::set_allocated_reference(::io::deephaven::proto::b // string search_string = 2; inline void ContainsCondition::clear_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.ClearToEmpty(); } inline const std::string& ContainsCondition::search_string() const @@ -52286,8 +52444,7 @@ inline const std::string& ContainsCondition::search_string() const template inline PROTOBUF_ALWAYS_INLINE void ContainsCondition::set_search_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ContainsCondition.search_string) } @@ -52297,26 +52454,24 @@ inline std::string* ContainsCondition::mutable_search_string() ABSL_ATTRIBUTE_LI return _s; } inline const std::string& ContainsCondition::_internal_search_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.search_string_.Get(); } inline void ContainsCondition::_internal_set_search_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.Set(value, GetArena()); } inline std::string* ContainsCondition::_internal_mutable_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.search_string_.Mutable( GetArena()); } inline std::string* ContainsCondition::release_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ContainsCondition.search_string) return _impl_.search_string_.Release(); } inline void ContainsCondition::set_allocated_search_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.search_string_.IsDefault()) { @@ -52328,7 +52483,7 @@ inline void ContainsCondition::set_allocated_search_string(std::string* value) { // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; inline void ContainsCondition::clear_case_sensitivity() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = 0; } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity ContainsCondition::case_sensitivity() const { @@ -52340,18 +52495,17 @@ inline void ContainsCondition::set_case_sensitivity(::io::deephaven::proto::back // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ContainsCondition.case_sensitivity) } inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity ContainsCondition::_internal_case_sensitivity() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::CaseSensitivity>(_impl_.case_sensitivity_); } inline void ContainsCondition::_internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.case_sensitivity_ = value; } // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; inline void ContainsCondition::clear_match_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = 0; } inline ::io::deephaven::proto::backplane::grpc::MatchType ContainsCondition::match_type() const { @@ -52363,12 +52517,11 @@ inline void ContainsCondition::set_match_type(::io::deephaven::proto::backplane: // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ContainsCondition.match_type) } inline ::io::deephaven::proto::backplane::grpc::MatchType ContainsCondition::_internal_match_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return static_cast<::io::deephaven::proto::backplane::grpc::MatchType>(_impl_.match_type_); } inline void ContainsCondition::_internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.match_type_ = value; } @@ -52378,7 +52531,7 @@ inline void ContainsCondition::_internal_set_match_type(::io::deephaven::proto:: // string search_string = 1; inline void SearchCondition::clear_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.ClearToEmpty(); } inline const std::string& SearchCondition::search_string() const @@ -52389,8 +52542,7 @@ inline const std::string& SearchCondition::search_string() const template inline PROTOBUF_ALWAYS_INLINE void SearchCondition::set_search_string(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SearchCondition.search_string) } @@ -52400,26 +52552,24 @@ inline std::string* SearchCondition::mutable_search_string() ABSL_ATTRIBUTE_LIFE return _s; } inline const std::string& SearchCondition::_internal_search_string() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.search_string_.Get(); } inline void SearchCondition::_internal_set_search_string(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.Set(value, GetArena()); } inline std::string* SearchCondition::_internal_mutable_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.search_string_.Mutable( GetArena()); } inline std::string* SearchCondition::release_search_string() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SearchCondition.search_string) return _impl_.search_string_.Release(); } inline void SearchCondition::set_allocated_search_string(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.search_string_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.search_string_.IsDefault()) { @@ -52437,7 +52587,7 @@ inline int SearchCondition::optional_references_size() const { return _internal_optional_references_size(); } inline void SearchCondition::clear_optional_references() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.optional_references_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::Reference* SearchCondition::mutable_optional_references(int index) @@ -52448,7 +52598,7 @@ inline ::io::deephaven::proto::backplane::grpc::Reference* SearchCondition::muta inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>* SearchCondition::mutable_optional_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.SearchCondition.optional_references) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_optional_references(); } inline const ::io::deephaven::proto::backplane::grpc::Reference& SearchCondition::optional_references(int index) const @@ -52457,7 +52607,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Reference& SearchCondition return _internal_optional_references().Get(index); } inline ::io::deephaven::proto::backplane::grpc::Reference* SearchCondition::add_optional_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::Reference* _add = _internal_mutable_optional_references()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.SearchCondition.optional_references) return _add; @@ -52469,12 +52619,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>& SearchCondition::_internal_optional_references() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.optional_references_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>* SearchCondition::_internal_mutable_optional_references() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.optional_references_; } @@ -52489,7 +52639,7 @@ inline bool FlattenRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& FlattenRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -52498,7 +52648,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& FlattenRequest::re return _internal_result_id(); } inline void FlattenRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -52511,7 +52661,7 @@ inline void FlattenRequest::unsafe_arena_set_allocated_result_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -52530,7 +52680,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -52539,22 +52689,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) return _msg; } inline void FlattenRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -52580,12 +52730,12 @@ inline bool FlattenRequest::has_source_id() const { return value; } inline void FlattenRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& FlattenRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -52594,7 +52744,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& FlattenReq return _internal_source_id(); } inline void FlattenRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -52607,7 +52757,7 @@ inline void FlattenRequest::unsafe_arena_set_allocated_source_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -52626,7 +52776,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -52635,28 +52785,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) return _msg; } inline void FlattenRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -52680,7 +52830,7 @@ inline bool MetaTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& MetaTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -52689,7 +52839,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& MetaTableRequest:: return _internal_result_id(); } inline void MetaTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -52702,7 +52852,7 @@ inline void MetaTableRequest::unsafe_arena_set_allocated_result_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -52721,7 +52871,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::releas return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -52730,22 +52880,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::unsafe return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) return _msg; } inline void MetaTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -52771,12 +52921,12 @@ inline bool MetaTableRequest::has_source_id() const { return value; } inline void MetaTableRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& MetaTableRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -52785,7 +52935,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& MetaTableR return _internal_source_id(); } inline void MetaTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -52798,7 +52948,7 @@ inline void MetaTableRequest::unsafe_arena_set_allocated_source_id(::io::deephav // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -52817,7 +52967,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -52826,28 +52976,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) return _msg; } inline void MetaTableRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -52870,7 +53020,7 @@ inline bool RunChartDownsampleRequest_ZoomRange::has_min_date_nanos() const { return value; } inline void RunChartDownsampleRequest_ZoomRange::clear_min_date_nanos() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.min_date_nanos_ = ::int64_t{0}; _impl_._has_bits_[0] &= ~0x00000001u; } @@ -52880,15 +53030,15 @@ inline ::int64_t RunChartDownsampleRequest_ZoomRange::min_date_nanos() const { } inline void RunChartDownsampleRequest_ZoomRange::set_min_date_nanos(::int64_t value) { _internal_set_min_date_nanos(value); + _impl_._has_bits_[0] |= 0x00000001u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange.min_date_nanos) } inline ::int64_t RunChartDownsampleRequest_ZoomRange::_internal_min_date_nanos() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.min_date_nanos_; } inline void RunChartDownsampleRequest_ZoomRange::_internal_set_min_date_nanos(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.min_date_nanos_ = value; } @@ -52898,7 +53048,7 @@ inline bool RunChartDownsampleRequest_ZoomRange::has_max_date_nanos() const { return value; } inline void RunChartDownsampleRequest_ZoomRange::clear_max_date_nanos() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_date_nanos_ = ::int64_t{0}; _impl_._has_bits_[0] &= ~0x00000002u; } @@ -52908,15 +53058,15 @@ inline ::int64_t RunChartDownsampleRequest_ZoomRange::max_date_nanos() const { } inline void RunChartDownsampleRequest_ZoomRange::set_max_date_nanos(::int64_t value) { _internal_set_max_date_nanos(value); + _impl_._has_bits_[0] |= 0x00000002u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange.max_date_nanos) } inline ::int64_t RunChartDownsampleRequest_ZoomRange::_internal_max_date_nanos() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.max_date_nanos_; } inline void RunChartDownsampleRequest_ZoomRange::_internal_set_max_date_nanos(::int64_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.max_date_nanos_ = value; } @@ -52931,7 +53081,7 @@ inline bool RunChartDownsampleRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& RunChartDownsampleRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -52940,7 +53090,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& RunChartDownsample return _internal_result_id(); } inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -52953,7 +53103,7 @@ inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_result_id(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -52972,7 +53122,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleReques return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -52981,22 +53131,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleReques return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) return _msg; } inline void RunChartDownsampleRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -53022,12 +53172,12 @@ inline bool RunChartDownsampleRequest::has_source_id() const { return value; } inline void RunChartDownsampleRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& RunChartDownsampleRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -53036,7 +53186,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& RunChartDo return _internal_source_id(); } inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -53049,7 +53199,7 @@ inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_source_id(::io // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -53068,7 +53218,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsamp return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -53077,28 +53227,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsamp return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) return _msg; } inline void RunChartDownsampleRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -53113,7 +53263,7 @@ inline void RunChartDownsampleRequest::set_allocated_source_id(::io::deephaven:: // int32 pixel_count = 3; inline void RunChartDownsampleRequest::clear_pixel_count() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pixel_count_ = 0; } inline ::int32_t RunChartDownsampleRequest::pixel_count() const { @@ -53125,12 +53275,11 @@ inline void RunChartDownsampleRequest::set_pixel_count(::int32_t value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.pixel_count) } inline ::int32_t RunChartDownsampleRequest::_internal_pixel_count() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.pixel_count_; } inline void RunChartDownsampleRequest::_internal_set_pixel_count(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pixel_count_ = value; } @@ -53141,12 +53290,12 @@ inline bool RunChartDownsampleRequest::has_zoom_range() const { return value; } inline void RunChartDownsampleRequest::clear_zoom_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.zoom_range_ != nullptr) _impl_.zoom_range_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& RunChartDownsampleRequest::_internal_zoom_range() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* p = _impl_.zoom_range_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_RunChartDownsampleRequest_ZoomRange_default_instance_); } @@ -53155,7 +53304,7 @@ inline const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ return _internal_zoom_range(); } inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_zoom_range(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.zoom_range_); } @@ -53168,7 +53317,7 @@ inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_zoom_range(::i // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) } inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::release_zoom_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* released = _impl_.zoom_range_; @@ -53187,7 +53336,7 @@ inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRa return released; } inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::unsafe_arena_release_zoom_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) _impl_._has_bits_[0] &= ~0x00000004u; @@ -53196,28 +53345,28 @@ inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRa return temp; } inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::_internal_mutable_zoom_range() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.zoom_range_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>(GetArena()); _impl_.zoom_range_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange*>(p); } return _impl_.zoom_range_; } inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::mutable_zoom_range() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* _msg = _internal_mutable_zoom_range(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) return _msg; } inline void RunChartDownsampleRequest::set_allocated_zoom_range(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange*>(_impl_.zoom_range_); + delete (_impl_.zoom_range_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -53232,7 +53381,7 @@ inline void RunChartDownsampleRequest::set_allocated_zoom_range(::io::deephaven: // string x_column_name = 5; inline void RunChartDownsampleRequest::clear_x_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.x_column_name_.ClearToEmpty(); } inline const std::string& RunChartDownsampleRequest::x_column_name() const @@ -53243,8 +53392,7 @@ inline const std::string& RunChartDownsampleRequest::x_column_name() const template inline PROTOBUF_ALWAYS_INLINE void RunChartDownsampleRequest::set_x_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.x_column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name) } @@ -53254,26 +53402,24 @@ inline std::string* RunChartDownsampleRequest::mutable_x_column_name() ABSL_ATTR return _s; } inline const std::string& RunChartDownsampleRequest::_internal_x_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.x_column_name_.Get(); } inline void RunChartDownsampleRequest::_internal_set_x_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.x_column_name_.Set(value, GetArena()); } inline std::string* RunChartDownsampleRequest::_internal_mutable_x_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.x_column_name_.Mutable( GetArena()); } inline std::string* RunChartDownsampleRequest::release_x_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name) return _impl_.x_column_name_.Release(); } inline void RunChartDownsampleRequest::set_allocated_x_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.x_column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.x_column_name_.IsDefault()) { @@ -53291,12 +53437,11 @@ inline int RunChartDownsampleRequest::y_column_names_size() const { return _internal_y_column_names_size(); } inline void RunChartDownsampleRequest::clear_y_column_names() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.y_column_names_.Clear(); } -inline std::string* RunChartDownsampleRequest::add_y_column_names() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* RunChartDownsampleRequest::add_y_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_y_column_names()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) return _s; @@ -53311,57 +53456,21 @@ inline std::string* RunChartDownsampleRequest::mutable_y_column_names(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) return _internal_mutable_y_column_names()->Mutable(index); } -inline void RunChartDownsampleRequest::set_y_column_names(int index, const std::string& value) { - _internal_mutable_y_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::set_y_column_names(int index, std::string&& value) { - _internal_mutable_y_column_names()->Mutable(index)->assign(std::move(value)); +template +inline void RunChartDownsampleRequest::set_y_column_names(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_y_column_names()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) } -inline void RunChartDownsampleRequest::set_y_column_names(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_y_column_names()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::set_y_column_names(int index, const char* value, - std::size_t size) { - _internal_mutable_y_column_names()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::set_y_column_names(int index, absl::string_view value) { - _internal_mutable_y_column_names()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::add_y_column_names(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_y_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::add_y_column_names(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_y_column_names()->Add(std::move(value)); +template +inline void RunChartDownsampleRequest::add_y_column_names(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_y_column_names(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) } -inline void RunChartDownsampleRequest::add_y_column_names(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_y_column_names()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::add_y_column_names(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_y_column_names()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} -inline void RunChartDownsampleRequest::add_y_column_names(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_y_column_names()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) -} inline const ::google::protobuf::RepeatedPtrField& RunChartDownsampleRequest::y_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) @@ -53370,17 +53479,17 @@ RunChartDownsampleRequest::y_column_names() const ABSL_ATTRIBUTE_LIFETIME_BOUND inline ::google::protobuf::RepeatedPtrField* RunChartDownsampleRequest::mutable_y_column_names() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_y_column_names(); } inline const ::google::protobuf::RepeatedPtrField& RunChartDownsampleRequest::_internal_y_column_names() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.y_column_names_; } inline ::google::protobuf::RepeatedPtrField* RunChartDownsampleRequest::_internal_mutable_y_column_names() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.y_column_names_; } @@ -53400,12 +53509,11 @@ inline int CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::key_columns return _internal_key_columns_size(); } inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::clear_key_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.key_columns_.Clear(); } -inline std::string* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_key_columns()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) return _s; @@ -53420,57 +53528,21 @@ inline std::string* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::mu // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) return _internal_mutable_key_columns()->Mutable(index); } -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, const std::string& value) { - _internal_mutable_key_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, std::string&& value) { - _internal_mutable_key_columns()->Mutable(index)->assign(std::move(value)); +template +inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_key_columns()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) } -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_key_columns()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, const char* value, - std::size_t size) { - _internal_mutable_key_columns()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::set_key_columns(int index, absl::string_view value) { - _internal_mutable_key_columns()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_columns()->Add(std::move(value)); +template +inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_key_columns(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) } -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_columns()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_columns()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::add_key_columns(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_key_columns()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) -} inline const ::google::protobuf::RepeatedPtrField& CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::key_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) @@ -53479,17 +53551,17 @@ CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::key_columns() const AB inline ::google::protobuf::RepeatedPtrField* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::mutable_key_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_key_columns(); } inline const ::google::protobuf::RepeatedPtrField& CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_internal_key_columns() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.key_columns_; } inline ::google::protobuf::RepeatedPtrField* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_internal_mutable_key_columns() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.key_columns_; } @@ -53512,10 +53584,12 @@ inline void CreateInputTableRequest_InputTableKind::set_has_in_memory_append_onl _impl_._oneof_case_[0] = kInMemoryAppendOnly; } inline void CreateInputTableRequest_InputTableKind::clear_in_memory_append_only() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() == kInMemoryAppendOnly) { if (GetArena() == nullptr) { delete _impl_.kind_.in_memory_append_only_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.in_memory_append_only_); } clear_has_kind(); } @@ -53567,7 +53641,8 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTab if (kind_case() != kInMemoryAppendOnly) { clear_kind(); set_has_in_memory_append_only(); - _impl_.kind_.in_memory_append_only_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(GetArena()); + _impl_.kind_.in_memory_append_only_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>(GetArena()); } return _impl_.kind_.in_memory_append_only_; } @@ -53588,10 +53663,12 @@ inline void CreateInputTableRequest_InputTableKind::set_has_in_memory_key_backed _impl_._oneof_case_[0] = kInMemoryKeyBacked; } inline void CreateInputTableRequest_InputTableKind::clear_in_memory_key_backed() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() == kInMemoryKeyBacked) { if (GetArena() == nullptr) { delete _impl_.kind_.in_memory_key_backed_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.in_memory_key_backed_); } clear_has_kind(); } @@ -53643,7 +53720,8 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTab if (kind_case() != kInMemoryKeyBacked) { clear_kind(); set_has_in_memory_key_backed(); - _impl_.kind_.in_memory_key_backed_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(GetArena()); + _impl_.kind_.in_memory_key_backed_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>(GetArena()); } return _impl_.kind_.in_memory_key_backed_; } @@ -53664,10 +53742,12 @@ inline void CreateInputTableRequest_InputTableKind::set_has_blink() { _impl_._oneof_case_[0] = kBlink; } inline void CreateInputTableRequest_InputTableKind::clear_blink() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (kind_case() == kBlink) { if (GetArena() == nullptr) { delete _impl_.kind_.blink_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.kind_.blink_); } clear_has_kind(); } @@ -53719,7 +53799,8 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTab if (kind_case() != kBlink) { clear_kind(); set_has_blink(); - _impl_.kind_.blink_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(GetArena()); + _impl_.kind_.blink_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(GetArena()); } return _impl_.kind_.blink_; } @@ -53749,7 +53830,7 @@ inline bool CreateInputTableRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& CreateInputTableRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -53758,7 +53839,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& CreateInputTableRe return _internal_result_id(); } inline void CreateInputTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -53771,7 +53852,7 @@ inline void CreateInputTableRequest::unsafe_arena_set_allocated_result_id(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -53790,7 +53871,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -53799,22 +53880,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) return _msg; } inline void CreateInputTableRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -53844,10 +53925,12 @@ inline void CreateInputTableRequest::set_has_source_table_id() { _impl_._oneof_case_[0] = kSourceTableId; } inline void CreateInputTableRequest::clear_source_table_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (definition_case() == kSourceTableId) { if (GetArena() == nullptr) { delete _impl_.definition_.source_table_id_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.definition_.source_table_id_); } clear_has_definition(); } @@ -53899,7 +53982,8 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* CreateInputTable if (definition_case() != kSourceTableId) { clear_definition(); set_has_source_table_id(); - _impl_.definition_.source_table_id_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + _impl_.definition_.source_table_id_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); } return _impl_.definition_.source_table_id_; } @@ -53917,7 +54001,7 @@ inline void CreateInputTableRequest::set_has_schema() { _impl_._oneof_case_[0] = kSchema; } inline void CreateInputTableRequest::clear_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (definition_case() == kSchema) { _impl_.definition_.schema_.Destroy(); clear_has_definition(); @@ -53931,7 +54015,7 @@ inline const std::string& CreateInputTableRequest::schema() const template inline PROTOBUF_ALWAYS_INLINE void CreateInputTableRequest::set_schema(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (definition_case() != kSchema) { clear_definition(); @@ -53947,14 +54031,14 @@ inline std::string* CreateInputTableRequest::mutable_schema() ABSL_ATTRIBUTE_LIF return _s; } inline const std::string& CreateInputTableRequest::_internal_schema() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); if (definition_case() != kSchema) { return ::google::protobuf::internal::GetEmptyStringAlreadyInited(); } return _impl_.definition_.schema_.Get(); } inline void CreateInputTableRequest::_internal_set_schema(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (definition_case() != kSchema) { clear_definition(); @@ -53964,7 +54048,7 @@ inline void CreateInputTableRequest::_internal_set_schema(const std::string& val _impl_.definition_.schema_.Set(value, GetArena()); } inline std::string* CreateInputTableRequest::_internal_mutable_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (definition_case() != kSchema) { clear_definition(); @@ -53974,7 +54058,7 @@ inline std::string* CreateInputTableRequest::_internal_mutable_schema() { return _impl_.definition_.schema_.Mutable( GetArena()); } inline std::string* CreateInputTableRequest::release_schema() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) if (definition_case() != kSchema) { return nullptr; @@ -53983,7 +54067,7 @@ inline std::string* CreateInputTableRequest::release_schema() { return _impl_.definition_.schema_.Release(); } inline void CreateInputTableRequest::set_allocated_schema(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (has_definition()) { clear_definition(); } @@ -54001,12 +54085,12 @@ inline bool CreateInputTableRequest::has_kind() const { return value; } inline void CreateInputTableRequest::clear_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.kind_ != nullptr) _impl_.kind_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& CreateInputTableRequest::_internal_kind() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* p = _impl_.kind_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_default_instance_); } @@ -54015,7 +54099,7 @@ inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_In return _internal_kind(); } inline void CreateInputTableRequest::unsafe_arena_set_allocated_kind(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.kind_); } @@ -54028,7 +54112,7 @@ inline void CreateInputTableRequest::unsafe_arena_set_allocated_kind(::io::deeph // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) } inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::release_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* released = _impl_.kind_; @@ -54047,7 +54131,7 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTab return released; } inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::unsafe_arena_release_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) _impl_._has_bits_[0] &= ~0x00000002u; @@ -54056,28 +54140,28 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTab return temp; } inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::_internal_mutable_kind() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.kind_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>(GetArena()); _impl_.kind_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind*>(p); } return _impl_.kind_; } inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::mutable_kind() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* _msg = _internal_mutable_kind(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) return _msg; } inline void CreateInputTableRequest::set_allocated_kind(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind*>(_impl_.kind_); + delete (_impl_.kind_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -54110,7 +54194,7 @@ inline bool WhereInRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& WhereInRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -54119,7 +54203,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& WhereInRequest::re return _internal_result_id(); } inline void WhereInRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -54132,7 +54216,7 @@ inline void WhereInRequest::unsafe_arena_set_allocated_result_id(::io::deephaven // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -54151,7 +54235,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::release_ return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -54160,22 +54244,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::unsafe_a return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) return _msg; } inline void WhereInRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -54201,12 +54285,12 @@ inline bool WhereInRequest::has_left_id() const { return value; } inline void WhereInRequest::clear_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ != nullptr) _impl_.left_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::_internal_left_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.left_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -54215,7 +54299,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInReq return _internal_left_id(); } inline void WhereInRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); } @@ -54228,7 +54312,7 @@ inline void WhereInRequest::unsafe_arena_set_allocated_left_id(::io::deephaven:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; @@ -54247,7 +54331,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::unsafe_arena_release_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -54256,28 +54340,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::_internal_mutable_left_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.left_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.left_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::mutable_left_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_left_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) return _msg; } inline void WhereInRequest::set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.left_id_); + delete (_impl_.left_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -54297,12 +54381,12 @@ inline bool WhereInRequest::has_right_id() const { return value; } inline void WhereInRequest::clear_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ != nullptr) _impl_.right_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000004u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::_internal_right_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.right_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -54311,7 +54395,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInReq return _internal_right_id(); } inline void WhereInRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); } @@ -54324,7 +54408,7 @@ inline void WhereInRequest::unsafe_arena_set_allocated_right_id(::io::deephaven: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; @@ -54343,7 +54427,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest:: return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::unsafe_arena_release_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) _impl_._has_bits_[0] &= ~0x00000004u; @@ -54352,28 +54436,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest:: return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::_internal_mutable_right_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.right_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.right_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::mutable_right_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000004u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_right_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) return _msg; } inline void WhereInRequest::set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.right_id_); + delete (_impl_.right_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -54388,7 +54472,7 @@ inline void WhereInRequest::set_allocated_right_id(::io::deephaven::proto::backp // bool inverted = 4; inline void WhereInRequest::clear_inverted() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.inverted_ = false; } inline bool WhereInRequest::inverted() const { @@ -54400,12 +54484,11 @@ inline void WhereInRequest::set_inverted(bool value) { // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WhereInRequest.inverted) } inline bool WhereInRequest::_internal_inverted() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.inverted_; } inline void WhereInRequest::_internal_set_inverted(bool value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.inverted_ = value; } @@ -54417,12 +54500,11 @@ inline int WhereInRequest::columns_to_match_size() const { return _internal_columns_to_match_size(); } inline void WhereInRequest::clear_columns_to_match() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.columns_to_match_.Clear(); } -inline std::string* WhereInRequest::add_columns_to_match() - ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); +inline std::string* WhereInRequest::add_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { + ::google::protobuf::internal::TSanWrite(&_impl_); std::string* _s = _internal_mutable_columns_to_match()->Add(); // @@protoc_insertion_point(field_add_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) return _s; @@ -54437,57 +54519,21 @@ inline std::string* WhereInRequest::mutable_columns_to_match(int index) // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) return _internal_mutable_columns_to_match()->Mutable(index); } -inline void WhereInRequest::set_columns_to_match(int index, const std::string& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::set_columns_to_match(int index, std::string&& value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(std::move(value)); +template +inline void WhereInRequest::set_columns_to_match(int index, Arg_&& value, Args_... args) { + ::google::protobuf::internal::AssignToString( + *_internal_mutable_columns_to_match()->Mutable(index), + std::forward(value), args... ); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) } -inline void WhereInRequest::set_columns_to_match(int index, const char* value) { - ABSL_DCHECK(value != nullptr); - _internal_mutable_columns_to_match()->Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::set_columns_to_match(int index, const char* value, - std::size_t size) { - _internal_mutable_columns_to_match()->Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::set_columns_to_match(int index, absl::string_view value) { - _internal_mutable_columns_to_match()->Mutable(index)->assign(value.data(), - value.size()); - // @@protoc_insertion_point(field_set_string_piece:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::add_columns_to_match(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::add_columns_to_match(std::string&& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add(std::move(value)); +template +inline void WhereInRequest::add_columns_to_match(Arg_&& value, Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + ::google::protobuf::internal::AddToRepeatedPtrField(*_internal_mutable_columns_to_match(), + std::forward(value), + args... ); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) } -inline void WhereInRequest::add_columns_to_match(const char* value) { - ABSL_DCHECK(value != nullptr); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value); - // @@protoc_insertion_point(field_add_char:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::add_columns_to_match(const char* value, std::size_t size) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} -inline void WhereInRequest::add_columns_to_match(absl::string_view value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _internal_mutable_columns_to_match()->Add()->assign(value.data(), value.size()); - // @@protoc_insertion_point(field_add_string_piece:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) -} inline const ::google::protobuf::RepeatedPtrField& WhereInRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) @@ -54496,17 +54542,17 @@ WhereInRequest::columns_to_match() const ABSL_ATTRIBUTE_LIFETIME_BOUND { inline ::google::protobuf::RepeatedPtrField* WhereInRequest::mutable_columns_to_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_columns_to_match(); } inline const ::google::protobuf::RepeatedPtrField& WhereInRequest::_internal_columns_to_match() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.columns_to_match_; } inline ::google::protobuf::RepeatedPtrField* WhereInRequest::_internal_mutable_columns_to_match() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.columns_to_match_; } @@ -54521,7 +54567,7 @@ inline bool ColumnStatisticsRequest::has_result_id() const { return value; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& ColumnStatisticsRequest::_internal_result_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.result_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -54530,7 +54576,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& ColumnStatisticsRe return _internal_result_id(); } inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -54543,7 +54589,7 @@ inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_result_id(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) } inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; @@ -54562,7 +54608,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest: return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::unsafe_arena_release_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) _impl_._has_bits_[0] &= ~0x00000001u; @@ -54571,22 +54617,22 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest: return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::_internal_mutable_result_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.result_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.result_id_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_result_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) return _msg; } inline void ColumnStatisticsRequest::set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); } @@ -54612,12 +54658,12 @@ inline bool ColumnStatisticsRequest::has_source_id() const { return value; } inline void ColumnStatisticsRequest::clear_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); _impl_._has_bits_[0] &= ~0x00000002u; } inline const ::io::deephaven::proto::backplane::grpc::TableReference& ColumnStatisticsRequest::_internal_source_id() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::TableReference* p = _impl_.source_id_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); } @@ -54626,7 +54672,7 @@ inline const ::io::deephaven::proto::backplane::grpc::TableReference& ColumnStat return _internal_source_id(); } inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); } @@ -54639,7 +54685,7 @@ inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_source_id(::io:: // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) } inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; @@ -54658,7 +54704,7 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatistics return released; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::unsafe_arena_release_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) _impl_._has_bits_[0] &= ~0x00000002u; @@ -54667,28 +54713,28 @@ inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatistics return temp; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::_internal_mutable_source_id() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000002u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.source_id_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(p); } return _impl_.source_id_; } inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::mutable_source_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000002u; ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_id(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) return _msg; } inline void ColumnStatisticsRequest::set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(_impl_.source_id_); + delete (_impl_.source_id_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -54703,7 +54749,7 @@ inline void ColumnStatisticsRequest::set_allocated_source_id(::io::deephaven::pr // string column_name = 3; inline void ColumnStatisticsRequest::clear_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.ClearToEmpty(); } inline const std::string& ColumnStatisticsRequest::column_name() const @@ -54714,8 +54760,7 @@ inline const std::string& ColumnStatisticsRequest::column_name() const template inline PROTOBUF_ALWAYS_INLINE void ColumnStatisticsRequest::set_column_name(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name) } @@ -54725,26 +54770,24 @@ inline std::string* ColumnStatisticsRequest::mutable_column_name() ABSL_ATTRIBUT return _s; } inline const std::string& ColumnStatisticsRequest::_internal_column_name() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.column_name_.Get(); } inline void ColumnStatisticsRequest::_internal_set_column_name(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.Set(value, GetArena()); } inline std::string* ColumnStatisticsRequest::_internal_mutable_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.column_name_.Mutable( GetArena()); } inline std::string* ColumnStatisticsRequest::release_column_name() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name) return _impl_.column_name_.Release(); } inline void ColumnStatisticsRequest::set_allocated_column_name(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.column_name_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.column_name_.IsDefault()) { @@ -54760,7 +54803,7 @@ inline bool ColumnStatisticsRequest::has_unique_value_limit() const { return value; } inline void ColumnStatisticsRequest::clear_unique_value_limit() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.unique_value_limit_ = 0; _impl_._has_bits_[0] &= ~0x00000004u; } @@ -54770,15 +54813,15 @@ inline ::int32_t ColumnStatisticsRequest::unique_value_limit() const { } inline void ColumnStatisticsRequest::set_unique_value_limit(::int32_t value) { _internal_set_unique_value_limit(value); + _impl_._has_bits_[0] |= 0x00000004u; // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.unique_value_limit) } inline ::int32_t ColumnStatisticsRequest::_internal_unique_value_limit() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.unique_value_limit_; } inline void ColumnStatisticsRequest::_internal_set_unique_value_limit(::int32_t value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000004u; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.unique_value_limit_ = value; } @@ -54797,10 +54840,12 @@ inline void BatchTableRequest_Operation::set_has_empty_table() { _impl_._oneof_case_[0] = kEmptyTable; } inline void BatchTableRequest_Operation::clear_empty_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kEmptyTable) { if (GetArena() == nullptr) { delete _impl_.op_.empty_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.empty_table_); } clear_has_op(); } @@ -54852,7 +54897,8 @@ inline ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* BatchTableReq if (op_case() != kEmptyTable) { clear_op(); set_has_empty_table(); - _impl_.op_.empty_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(GetArena()); + _impl_.op_.empty_table_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(GetArena()); } return _impl_.op_.empty_table_; } @@ -54873,10 +54919,12 @@ inline void BatchTableRequest_Operation::set_has_time_table() { _impl_._oneof_case_[0] = kTimeTable; } inline void BatchTableRequest_Operation::clear_time_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kTimeTable) { if (GetArena() == nullptr) { delete _impl_.op_.time_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.time_table_); } clear_has_op(); } @@ -54928,7 +54976,8 @@ inline ::io::deephaven::proto::backplane::grpc::TimeTableRequest* BatchTableRequ if (op_case() != kTimeTable) { clear_op(); set_has_time_table(); - _impl_.op_.time_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(GetArena()); + _impl_.op_.time_table_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(GetArena()); } return _impl_.op_.time_table_; } @@ -54949,10 +54998,12 @@ inline void BatchTableRequest_Operation::set_has_drop_columns() { _impl_._oneof_case_[0] = kDropColumns; } inline void BatchTableRequest_Operation::clear_drop_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kDropColumns) { if (GetArena() == nullptr) { delete _impl_.op_.drop_columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.drop_columns_); } clear_has_op(); } @@ -55004,7 +55055,8 @@ inline ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* BatchTableRe if (op_case() != kDropColumns) { clear_op(); set_has_drop_columns(); - _impl_.op_.drop_columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(GetArena()); + _impl_.op_.drop_columns_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(GetArena()); } return _impl_.op_.drop_columns_; } @@ -55025,10 +55077,12 @@ inline void BatchTableRequest_Operation::set_has_update() { _impl_._oneof_case_[0] = kUpdate; } inline void BatchTableRequest_Operation::clear_update() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kUpdate) { if (GetArena() == nullptr) { delete _impl_.op_.update_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_); } clear_has_op(); } @@ -55080,7 +55134,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTabl if (op_case() != kUpdate) { clear_op(); set_has_update(); - _impl_.op_.update_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); + _impl_.op_.update_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); } return _impl_.op_.update_; } @@ -55101,10 +55156,12 @@ inline void BatchTableRequest_Operation::set_has_lazy_update() { _impl_._oneof_case_[0] = kLazyUpdate; } inline void BatchTableRequest_Operation::clear_lazy_update() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kLazyUpdate) { if (GetArena() == nullptr) { delete _impl_.op_.lazy_update_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.lazy_update_); } clear_has_op(); } @@ -55156,7 +55213,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTabl if (op_case() != kLazyUpdate) { clear_op(); set_has_lazy_update(); - _impl_.op_.lazy_update_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); + _impl_.op_.lazy_update_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); } return _impl_.op_.lazy_update_; } @@ -55177,10 +55235,12 @@ inline void BatchTableRequest_Operation::set_has_view() { _impl_._oneof_case_[0] = kView; } inline void BatchTableRequest_Operation::clear_view() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kView) { if (GetArena() == nullptr) { delete _impl_.op_.view_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.view_); } clear_has_op(); } @@ -55232,7 +55292,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTabl if (op_case() != kView) { clear_op(); set_has_view(); - _impl_.op_.view_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); + _impl_.op_.view_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); } return _impl_.op_.view_; } @@ -55253,10 +55314,12 @@ inline void BatchTableRequest_Operation::set_has_update_view() { _impl_._oneof_case_[0] = kUpdateView; } inline void BatchTableRequest_Operation::clear_update_view() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kUpdateView) { if (GetArena() == nullptr) { delete _impl_.op_.update_view_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_view_); } clear_has_op(); } @@ -55308,7 +55371,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTabl if (op_case() != kUpdateView) { clear_op(); set_has_update_view(); - _impl_.op_.update_view_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); + _impl_.op_.update_view_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); } return _impl_.op_.update_view_; } @@ -55329,10 +55393,12 @@ inline void BatchTableRequest_Operation::set_has_select() { _impl_._oneof_case_[0] = kSelect; } inline void BatchTableRequest_Operation::clear_select() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kSelect) { if (GetArena() == nullptr) { delete _impl_.op_.select_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.select_); } clear_has_op(); } @@ -55384,7 +55450,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTabl if (op_case() != kSelect) { clear_op(); set_has_select(); - _impl_.op_.select_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); + _impl_.op_.select_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); } return _impl_.op_.select_; } @@ -55405,10 +55472,12 @@ inline void BatchTableRequest_Operation::set_has_select_distinct() { _impl_._oneof_case_[0] = kSelectDistinct; } inline void BatchTableRequest_Operation::clear_select_distinct() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kSelectDistinct) { if (GetArena() == nullptr) { delete _impl_.op_.select_distinct_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.select_distinct_); } clear_has_op(); } @@ -55460,7 +55529,8 @@ inline ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* BatchTabl if (op_case() != kSelectDistinct) { clear_op(); set_has_select_distinct(); - _impl_.op_.select_distinct_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(GetArena()); + _impl_.op_.select_distinct_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(GetArena()); } return _impl_.op_.select_distinct_; } @@ -55481,10 +55551,12 @@ inline void BatchTableRequest_Operation::set_has_filter() { _impl_._oneof_case_[0] = kFilter; } inline void BatchTableRequest_Operation::clear_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kFilter) { if (GetArena() == nullptr) { delete _impl_.op_.filter_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.filter_); } clear_has_op(); } @@ -55536,7 +55608,8 @@ inline ::io::deephaven::proto::backplane::grpc::FilterTableRequest* BatchTableRe if (op_case() != kFilter) { clear_op(); set_has_filter(); - _impl_.op_.filter_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(GetArena()); + _impl_.op_.filter_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(GetArena()); } return _impl_.op_.filter_; } @@ -55557,10 +55630,12 @@ inline void BatchTableRequest_Operation::set_has_unstructured_filter() { _impl_._oneof_case_[0] = kUnstructuredFilter; } inline void BatchTableRequest_Operation::clear_unstructured_filter() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kUnstructuredFilter) { if (GetArena() == nullptr) { delete _impl_.op_.unstructured_filter_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.unstructured_filter_); } clear_has_op(); } @@ -55612,7 +55687,8 @@ inline ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* if (op_case() != kUnstructuredFilter) { clear_op(); set_has_unstructured_filter(); - _impl_.op_.unstructured_filter_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(GetArena()); + _impl_.op_.unstructured_filter_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(GetArena()); } return _impl_.op_.unstructured_filter_; } @@ -55633,10 +55709,12 @@ inline void BatchTableRequest_Operation::set_has_sort() { _impl_._oneof_case_[0] = kSort; } inline void BatchTableRequest_Operation::clear_sort() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kSort) { if (GetArena() == nullptr) { delete _impl_.op_.sort_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.sort_); } clear_has_op(); } @@ -55688,7 +55766,8 @@ inline ::io::deephaven::proto::backplane::grpc::SortTableRequest* BatchTableRequ if (op_case() != kSort) { clear_op(); set_has_sort(); - _impl_.op_.sort_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SortTableRequest>(GetArena()); + _impl_.op_.sort_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SortTableRequest>(GetArena()); } return _impl_.op_.sort_; } @@ -55709,10 +55788,12 @@ inline void BatchTableRequest_Operation::set_has_head() { _impl_._oneof_case_[0] = kHead; } inline void BatchTableRequest_Operation::clear_head() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kHead) { if (GetArena() == nullptr) { delete _impl_.op_.head_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.head_); } clear_has_op(); } @@ -55764,7 +55845,8 @@ inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableReq if (op_case() != kHead) { clear_op(); set_has_head(); - _impl_.op_.head_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); + _impl_.op_.head_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); } return _impl_.op_.head_; } @@ -55785,10 +55867,12 @@ inline void BatchTableRequest_Operation::set_has_tail() { _impl_._oneof_case_[0] = kTail; } inline void BatchTableRequest_Operation::clear_tail() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kTail) { if (GetArena() == nullptr) { delete _impl_.op_.tail_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.tail_); } clear_has_op(); } @@ -55840,7 +55924,8 @@ inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableReq if (op_case() != kTail) { clear_op(); set_has_tail(); - _impl_.op_.tail_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); + _impl_.op_.tail_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); } return _impl_.op_.tail_; } @@ -55861,10 +55946,12 @@ inline void BatchTableRequest_Operation::set_has_head_by() { _impl_._oneof_case_[0] = kHeadBy; } inline void BatchTableRequest_Operation::clear_head_by() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kHeadBy) { if (GetArena() == nullptr) { delete _impl_.op_.head_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.head_by_); } clear_has_op(); } @@ -55916,7 +56003,8 @@ inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableR if (op_case() != kHeadBy) { clear_op(); set_has_head_by(); - _impl_.op_.head_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); + _impl_.op_.head_by_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); } return _impl_.op_.head_by_; } @@ -55937,10 +56025,12 @@ inline void BatchTableRequest_Operation::set_has_tail_by() { _impl_._oneof_case_[0] = kTailBy; } inline void BatchTableRequest_Operation::clear_tail_by() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kTailBy) { if (GetArena() == nullptr) { delete _impl_.op_.tail_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.tail_by_); } clear_has_op(); } @@ -55992,7 +56082,8 @@ inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableR if (op_case() != kTailBy) { clear_op(); set_has_tail_by(); - _impl_.op_.tail_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); + _impl_.op_.tail_by_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); } return _impl_.op_.tail_by_; } @@ -56013,10 +56104,12 @@ inline void BatchTableRequest_Operation::set_has_ungroup() { _impl_._oneof_case_[0] = kUngroup; } inline void BatchTableRequest_Operation::clear_ungroup() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kUngroup) { if (GetArena() == nullptr) { delete _impl_.op_.ungroup_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.ungroup_); } clear_has_op(); } @@ -56068,7 +56161,8 @@ inline ::io::deephaven::proto::backplane::grpc::UngroupRequest* BatchTableReques if (op_case() != kUngroup) { clear_op(); set_has_ungroup(); - _impl_.op_.ungroup_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UngroupRequest>(GetArena()); + _impl_.op_.ungroup_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UngroupRequest>(GetArena()); } return _impl_.op_.ungroup_; } @@ -56089,10 +56183,12 @@ inline void BatchTableRequest_Operation::set_has_merge() { _impl_._oneof_case_[0] = kMerge; } inline void BatchTableRequest_Operation::clear_merge() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kMerge) { if (GetArena() == nullptr) { delete _impl_.op_.merge_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.merge_); } clear_has_op(); } @@ -56144,7 +56240,8 @@ inline ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* BatchTableRe if (op_case() != kMerge) { clear_op(); set_has_merge(); - _impl_.op_.merge_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(GetArena()); + _impl_.op_.merge_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(GetArena()); } return _impl_.op_.merge_; } @@ -56165,10 +56262,12 @@ inline void BatchTableRequest_Operation::set_has_combo_aggregate() { _impl_._oneof_case_[0] = kComboAggregate; } inline void BatchTableRequest_Operation::clear_combo_aggregate() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kComboAggregate) { if (GetArena() == nullptr) { delete _impl_.op_.combo_aggregate_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.combo_aggregate_); } clear_has_op(); } @@ -56220,7 +56319,8 @@ inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* BatchTabl if (op_case() != kComboAggregate) { clear_op(); set_has_combo_aggregate(); - _impl_.op_.combo_aggregate_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(GetArena()); + _impl_.op_.combo_aggregate_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(GetArena()); } return _impl_.op_.combo_aggregate_; } @@ -56241,10 +56341,12 @@ inline void BatchTableRequest_Operation::set_has_flatten() { _impl_._oneof_case_[0] = kFlatten; } inline void BatchTableRequest_Operation::clear_flatten() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kFlatten) { if (GetArena() == nullptr) { delete _impl_.op_.flatten_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.flatten_); } clear_has_op(); } @@ -56296,7 +56398,8 @@ inline ::io::deephaven::proto::backplane::grpc::FlattenRequest* BatchTableReques if (op_case() != kFlatten) { clear_op(); set_has_flatten(); - _impl_.op_.flatten_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FlattenRequest>(GetArena()); + _impl_.op_.flatten_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FlattenRequest>(GetArena()); } return _impl_.op_.flatten_; } @@ -56317,10 +56420,12 @@ inline void BatchTableRequest_Operation::set_has_run_chart_downsample() { _impl_._oneof_case_[0] = kRunChartDownsample; } inline void BatchTableRequest_Operation::clear_run_chart_downsample() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kRunChartDownsample) { if (GetArena() == nullptr) { delete _impl_.op_.run_chart_downsample_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.run_chart_downsample_); } clear_has_op(); } @@ -56372,7 +56477,8 @@ inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* Batch if (op_case() != kRunChartDownsample) { clear_op(); set_has_run_chart_downsample(); - _impl_.op_.run_chart_downsample_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(GetArena()); + _impl_.op_.run_chart_downsample_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(GetArena()); } return _impl_.op_.run_chart_downsample_; } @@ -56393,10 +56499,12 @@ inline void BatchTableRequest_Operation::set_has_cross_join() { _impl_._oneof_case_[0] = kCrossJoin; } inline void BatchTableRequest_Operation::clear_cross_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kCrossJoin) { if (GetArena() == nullptr) { delete _impl_.op_.cross_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.cross_join_); } clear_has_op(); } @@ -56448,7 +56556,8 @@ inline ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* BatchTab if (op_case() != kCrossJoin) { clear_op(); set_has_cross_join(); - _impl_.op_.cross_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(GetArena()); + _impl_.op_.cross_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(GetArena()); } return _impl_.op_.cross_join_; } @@ -56469,10 +56578,12 @@ inline void BatchTableRequest_Operation::set_has_natural_join() { _impl_._oneof_case_[0] = kNaturalJoin; } inline void BatchTableRequest_Operation::clear_natural_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kNaturalJoin) { if (GetArena() == nullptr) { delete _impl_.op_.natural_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.natural_join_); } clear_has_op(); } @@ -56524,7 +56635,8 @@ inline ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* BatchT if (op_case() != kNaturalJoin) { clear_op(); set_has_natural_join(); - _impl_.op_.natural_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(GetArena()); + _impl_.op_.natural_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(GetArena()); } return _impl_.op_.natural_join_; } @@ -56545,10 +56657,12 @@ inline void BatchTableRequest_Operation::set_has_exact_join() { _impl_._oneof_case_[0] = kExactJoin; } inline void BatchTableRequest_Operation::clear_exact_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kExactJoin) { if (GetArena() == nullptr) { delete _impl_.op_.exact_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.exact_join_); } clear_has_op(); } @@ -56600,7 +56714,8 @@ inline ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* BatchTab if (op_case() != kExactJoin) { clear_op(); set_has_exact_join(); - _impl_.op_.exact_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(GetArena()); + _impl_.op_.exact_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(GetArena()); } return _impl_.op_.exact_join_; } @@ -56621,10 +56736,12 @@ inline void BatchTableRequest_Operation::set_has_left_join() { _impl_._oneof_case_[0] = kLeftJoin; } inline void BatchTableRequest_Operation::clear_left_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kLeftJoin) { if (GetArena() == nullptr) { delete _impl_.op_.left_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.left_join_); } clear_has_op(); } @@ -56676,7 +56793,8 @@ inline ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* BatchTabl if (op_case() != kLeftJoin) { clear_op(); set_has_left_join(); - _impl_.op_.left_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(GetArena()); + _impl_.op_.left_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(GetArena()); } return _impl_.op_.left_join_; } @@ -56697,10 +56815,12 @@ inline void BatchTableRequest_Operation::set_has_as_of_join() { _impl_._oneof_case_[0] = kAsOfJoin; } inline void BatchTableRequest_Operation::clear_as_of_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kAsOfJoin) { if (GetArena() == nullptr) { delete _impl_.op_.as_of_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.as_of_join_); } clear_has_op(); } @@ -56752,7 +56872,8 @@ inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* BatchTabl if (op_case() != kAsOfJoin) { clear_op(); set_has_as_of_join(); - _impl_.op_.as_of_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(GetArena()); + _impl_.op_.as_of_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(GetArena()); } return _impl_.op_.as_of_join_; } @@ -56773,10 +56894,12 @@ inline void BatchTableRequest_Operation::set_has_fetch_table() { _impl_._oneof_case_[0] = kFetchTable; } inline void BatchTableRequest_Operation::clear_fetch_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kFetchTable) { if (GetArena() == nullptr) { delete _impl_.op_.fetch_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.fetch_table_); } clear_has_op(); } @@ -56828,7 +56951,8 @@ inline ::io::deephaven::proto::backplane::grpc::FetchTableRequest* BatchTableReq if (op_case() != kFetchTable) { clear_op(); set_has_fetch_table(); - _impl_.op_.fetch_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(GetArena()); + _impl_.op_.fetch_table_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(GetArena()); } return _impl_.op_.fetch_table_; } @@ -56849,10 +56973,12 @@ inline void BatchTableRequest_Operation::set_has_apply_preview_columns() { _impl_._oneof_case_[0] = kApplyPreviewColumns; } inline void BatchTableRequest_Operation::clear_apply_preview_columns() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kApplyPreviewColumns) { if (GetArena() == nullptr) { delete _impl_.op_.apply_preview_columns_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.apply_preview_columns_); } clear_has_op(); } @@ -56904,7 +57030,8 @@ inline ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* Batc if (op_case() != kApplyPreviewColumns) { clear_op(); set_has_apply_preview_columns(); - _impl_.op_.apply_preview_columns_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(GetArena()); + _impl_.op_.apply_preview_columns_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(GetArena()); } return _impl_.op_.apply_preview_columns_; } @@ -56925,10 +57052,12 @@ inline void BatchTableRequest_Operation::set_has_create_input_table() { _impl_._oneof_case_[0] = kCreateInputTable; } inline void BatchTableRequest_Operation::clear_create_input_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kCreateInputTable) { if (GetArena() == nullptr) { delete _impl_.op_.create_input_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.create_input_table_); } clear_has_op(); } @@ -56980,7 +57109,8 @@ inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* BatchTa if (op_case() != kCreateInputTable) { clear_op(); set_has_create_input_table(); - _impl_.op_.create_input_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(GetArena()); + _impl_.op_.create_input_table_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(GetArena()); } return _impl_.op_.create_input_table_; } @@ -57001,10 +57131,12 @@ inline void BatchTableRequest_Operation::set_has_update_by() { _impl_._oneof_case_[0] = kUpdateBy; } inline void BatchTableRequest_Operation::clear_update_by() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kUpdateBy) { if (GetArena() == nullptr) { delete _impl_.op_.update_by_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.update_by_); } clear_has_op(); } @@ -57056,7 +57188,8 @@ inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest* BatchTableReque if (op_case() != kUpdateBy) { clear_op(); set_has_update_by(); - _impl_.op_.update_by_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(GetArena()); + _impl_.op_.update_by_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(GetArena()); } return _impl_.op_.update_by_; } @@ -57077,10 +57210,12 @@ inline void BatchTableRequest_Operation::set_has_where_in() { _impl_._oneof_case_[0] = kWhereIn; } inline void BatchTableRequest_Operation::clear_where_in() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kWhereIn) { if (GetArena() == nullptr) { delete _impl_.op_.where_in_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.where_in_); } clear_has_op(); } @@ -57132,7 +57267,8 @@ inline ::io::deephaven::proto::backplane::grpc::WhereInRequest* BatchTableReques if (op_case() != kWhereIn) { clear_op(); set_has_where_in(); - _impl_.op_.where_in_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::WhereInRequest>(GetArena()); + _impl_.op_.where_in_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::WhereInRequest>(GetArena()); } return _impl_.op_.where_in_; } @@ -57153,10 +57289,12 @@ inline void BatchTableRequest_Operation::set_has_aggregate_all() { _impl_._oneof_case_[0] = kAggregateAll; } inline void BatchTableRequest_Operation::clear_aggregate_all() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kAggregateAll) { if (GetArena() == nullptr) { delete _impl_.op_.aggregate_all_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aggregate_all_); } clear_has_op(); } @@ -57208,7 +57346,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* BatchTableR if (op_case() != kAggregateAll) { clear_op(); set_has_aggregate_all(); - _impl_.op_.aggregate_all_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(GetArena()); + _impl_.op_.aggregate_all_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(GetArena()); } return _impl_.op_.aggregate_all_; } @@ -57229,10 +57368,12 @@ inline void BatchTableRequest_Operation::set_has_aggregate() { _impl_._oneof_case_[0] = kAggregate; } inline void BatchTableRequest_Operation::clear_aggregate() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kAggregate) { if (GetArena() == nullptr) { delete _impl_.op_.aggregate_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aggregate_); } clear_has_op(); } @@ -57284,7 +57425,8 @@ inline ::io::deephaven::proto::backplane::grpc::AggregateRequest* BatchTableRequ if (op_case() != kAggregate) { clear_op(); set_has_aggregate(); - _impl_.op_.aggregate_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AggregateRequest>(GetArena()); + _impl_.op_.aggregate_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggregateRequest>(GetArena()); } return _impl_.op_.aggregate_; } @@ -57305,10 +57447,12 @@ inline void BatchTableRequest_Operation::set_has_snapshot() { _impl_._oneof_case_[0] = kSnapshot; } inline void BatchTableRequest_Operation::clear_snapshot() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kSnapshot) { if (GetArena() == nullptr) { delete _impl_.op_.snapshot_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.snapshot_); } clear_has_op(); } @@ -57360,7 +57504,8 @@ inline ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* BatchTable if (op_case() != kSnapshot) { clear_op(); set_has_snapshot(); - _impl_.op_.snapshot_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(GetArena()); + _impl_.op_.snapshot_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(GetArena()); } return _impl_.op_.snapshot_; } @@ -57381,10 +57526,12 @@ inline void BatchTableRequest_Operation::set_has_snapshot_when() { _impl_._oneof_case_[0] = kSnapshotWhen; } inline void BatchTableRequest_Operation::clear_snapshot_when() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kSnapshotWhen) { if (GetArena() == nullptr) { delete _impl_.op_.snapshot_when_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.snapshot_when_); } clear_has_op(); } @@ -57436,7 +57583,8 @@ inline ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* BatchT if (op_case() != kSnapshotWhen) { clear_op(); set_has_snapshot_when(); - _impl_.op_.snapshot_when_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(GetArena()); + _impl_.op_.snapshot_when_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(GetArena()); } return _impl_.op_.snapshot_when_; } @@ -57457,10 +57605,12 @@ inline void BatchTableRequest_Operation::set_has_meta_table() { _impl_._oneof_case_[0] = kMetaTable; } inline void BatchTableRequest_Operation::clear_meta_table() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kMetaTable) { if (GetArena() == nullptr) { delete _impl_.op_.meta_table_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.meta_table_); } clear_has_op(); } @@ -57512,7 +57662,8 @@ inline ::io::deephaven::proto::backplane::grpc::MetaTableRequest* BatchTableRequ if (op_case() != kMetaTable) { clear_op(); set_has_meta_table(); - _impl_.op_.meta_table_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(GetArena()); + _impl_.op_.meta_table_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(GetArena()); } return _impl_.op_.meta_table_; } @@ -57533,10 +57684,12 @@ inline void BatchTableRequest_Operation::set_has_range_join() { _impl_._oneof_case_[0] = kRangeJoin; } inline void BatchTableRequest_Operation::clear_range_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kRangeJoin) { if (GetArena() == nullptr) { delete _impl_.op_.range_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.range_join_); } clear_has_op(); } @@ -57588,7 +57741,8 @@ inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* BatchTab if (op_case() != kRangeJoin) { clear_op(); set_has_range_join(); - _impl_.op_.range_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(GetArena()); + _impl_.op_.range_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(GetArena()); } return _impl_.op_.range_join_; } @@ -57609,10 +57763,12 @@ inline void BatchTableRequest_Operation::set_has_aj() { _impl_._oneof_case_[0] = kAj; } inline void BatchTableRequest_Operation::clear_aj() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kAj) { if (GetArena() == nullptr) { delete _impl_.op_.aj_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.aj_); } clear_has_op(); } @@ -57664,7 +57820,8 @@ inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRe if (op_case() != kAj) { clear_op(); set_has_aj(); - _impl_.op_.aj_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); + _impl_.op_.aj_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); } return _impl_.op_.aj_; } @@ -57685,10 +57842,12 @@ inline void BatchTableRequest_Operation::set_has_raj() { _impl_._oneof_case_[0] = kRaj; } inline void BatchTableRequest_Operation::clear_raj() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kRaj) { if (GetArena() == nullptr) { delete _impl_.op_.raj_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.raj_); } clear_has_op(); } @@ -57740,7 +57899,8 @@ inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRe if (op_case() != kRaj) { clear_op(); set_has_raj(); - _impl_.op_.raj_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); + _impl_.op_.raj_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); } return _impl_.op_.raj_; } @@ -57761,10 +57921,12 @@ inline void BatchTableRequest_Operation::set_has_column_statistics() { _impl_._oneof_case_[0] = kColumnStatistics; } inline void BatchTableRequest_Operation::clear_column_statistics() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kColumnStatistics) { if (GetArena() == nullptr) { delete _impl_.op_.column_statistics_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.column_statistics_); } clear_has_op(); } @@ -57816,7 +57978,8 @@ inline ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* BatchTa if (op_case() != kColumnStatistics) { clear_op(); set_has_column_statistics(); - _impl_.op_.column_statistics_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(GetArena()); + _impl_.op_.column_statistics_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(GetArena()); } return _impl_.op_.column_statistics_; } @@ -57837,10 +58000,12 @@ inline void BatchTableRequest_Operation::set_has_multi_join() { _impl_._oneof_case_[0] = kMultiJoin; } inline void BatchTableRequest_Operation::clear_multi_join() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (op_case() == kMultiJoin) { if (GetArena() == nullptr) { delete _impl_.op_.multi_join_; + } else if (::google::protobuf::internal::DebugHardenClearOneofMessageOnArena()) { + ::google::protobuf::internal::MaybePoisonAfterClear(_impl_.op_.multi_join_); } clear_has_op(); } @@ -57892,7 +58057,8 @@ inline ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* BatchTab if (op_case() != kMultiJoin) { clear_op(); set_has_multi_join(); - _impl_.op_.multi_join_ = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(GetArena()); + _impl_.op_.multi_join_ = + ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(GetArena()); } return _impl_.op_.multi_join_; } @@ -57923,7 +58089,7 @@ inline int BatchTableRequest::ops_size() const { return _internal_ops_size(); } inline void BatchTableRequest::clear_ops() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ops_.Clear(); } inline ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* BatchTableRequest::mutable_ops(int index) @@ -57934,7 +58100,7 @@ inline ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* Bat inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>* BatchTableRequest::mutable_ops() ABSL_ATTRIBUTE_LIFETIME_BOUND { // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.BatchTableRequest.ops) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); return _internal_mutable_ops(); } inline const ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation& BatchTableRequest::ops(int index) const @@ -57943,7 +58109,7 @@ inline const ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operatio return _internal_ops().Get(index); } inline ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* BatchTableRequest::add_ops() ABSL_ATTRIBUTE_LIFETIME_BOUND { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* _add = _internal_mutable_ops()->Add(); // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.grpc.BatchTableRequest.ops) return _add; @@ -57955,12 +58121,12 @@ inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backpl } inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>& BatchTableRequest::_internal_ops() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.ops_; } inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>* BatchTableRequest::_internal_mutable_ops() { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return &_impl_.ops_; } diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc index 8dd24d6cdb9..ad33ba9ef28 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc @@ -1,17 +1,20 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/ticket.proto +// Protobuf C++ Version: 5.28.1 #include "deephaven/proto/ticket.pb.h" #include +#include #include "google/protobuf/io/coded_stream.h" +#include "google/protobuf/generated_message_tctable_impl.h" #include "google/protobuf/extension_set.h" #include "google/protobuf/wire_format_lite.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/generated_message_reflection.h" #include "google/protobuf/reflection_ops.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/generated_message_tctable_impl.h" // @@protoc_insertion_point(includes) // Must be included last. @@ -35,7 +38,13 @@ inline constexpr Ticket::Impl_::Impl_( template PROTOBUF_CONSTEXPR Ticket::Ticket(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TicketDefaultTypeInternal { PROTOBUF_CONSTEXPR TicketDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TicketDefaultTypeInternal() {} @@ -57,7 +66,13 @@ inline constexpr TypedTicket::Impl_::Impl_( template PROTOBUF_CONSTEXPR TypedTicket::TypedTicket(::_pbi::ConstantInitialized) - : _impl_(::_pbi::ConstantInitialized()) {} +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(_class_data_.base()), +#else // PROTOBUF_CUSTOM_VTABLE + : ::google::protobuf::Message(), +#endif // PROTOBUF_CUSTOM_VTABLE + _impl_(::_pbi::ConstantInitialized()) { +} struct TypedTicketDefaultTypeInternal { PROTOBUF_CONSTEXPR TypedTicketDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} ~TypedTicketDefaultTypeInternal() {} @@ -73,47 +88,47 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT } // namespace proto } // namespace deephaven } // namespace io -static ::_pb::Metadata file_level_metadata_deephaven_2fproto_2fticket_2eproto[2]; static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_deephaven_2fproto_2fticket_2eproto = nullptr; static constexpr const ::_pb::ServiceDescriptor** file_level_service_descriptors_deephaven_2fproto_2fticket_2eproto = nullptr; -const ::uint32_t TableStruct_deephaven_2fproto_2fticket_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( - protodesc_cold) = { - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Ticket, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Ticket, _impl_.ticket_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - ~0u, // no _split_ - ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_.ticket_), - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_.type_), - 0, - ~0u, +const ::uint32_t + TableStruct_deephaven_2fproto_2fticket_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Ticket, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::Ticket, _impl_.ticket_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_.ticket_), + PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TypedTicket, _impl_.type_), + 0, + ~0u, }; static const ::_pbi::MigrationSchema - schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { + schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { {0, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Ticket)}, {9, 19, -1, sizeof(::io::deephaven::proto::backplane::grpc::TypedTicket)}, }; - static const ::_pb::Message* const file_default_instances[] = { &::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_._instance, &::io::deephaven::proto::backplane::grpc::_TypedTicket_default_instance_._instance, }; -const char descriptor_table_protodef_deephaven_2fproto_2fticket_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const char descriptor_table_protodef_deephaven_2fproto_2fticket_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE( + protodesc_cold) = { "\n\034deephaven/proto/ticket.proto\022!io.deeph" "aven.proto.backplane.grpc\"\030\n\006Ticket\022\016\n\006t" "icket\030\001 \001(\014\"V\n\013TypedTicket\0229\n\006ticket\030\001 \001" @@ -123,7 +138,7 @@ const char descriptor_table_protodef_deephaven_2fproto_2fticket_2eproto[] PROTOB "/ticketb\006proto3" }; static ::absl::once_flag descriptor_table_deephaven_2fproto_2fticket_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fticket_2eproto = { +PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fticket_2eproto = { false, false, 255, @@ -136,28 +151,9 @@ const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fticket_2eprot schemas, file_default_instances, TableStruct_deephaven_2fproto_2fticket_2eproto::offsets, - file_level_metadata_deephaven_2fproto_2fticket_2eproto, file_level_enum_descriptors_deephaven_2fproto_2fticket_2eproto, file_level_service_descriptors_deephaven_2fproto_2fticket_2eproto, }; - -// This function exists to be marked as weak. -// It can significantly speed up compilation by breaking up LLVM's SCC -// in the .pb.cc translation units. Large translation units see a -// reduction of more than 35% of walltime for optimized builds. Without -// the weak attribute all the messages in the file, including all the -// vtables and everything they use become part of the same SCC through -// a cycle like: -// GetMetadata -> descriptor table -> default instances -> -// vtables -> GetMetadata -// By adding a weak function here we break the connection from the -// individual vtables back into the descriptor table. -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_deephaven_2fproto_2fticket_2eproto_getter() { - return &descriptor_table_deephaven_2fproto_2fticket_2eproto; -} -// Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 -static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_deephaven_2fproto_2fticket_2eproto(&descriptor_table_deephaven_2fproto_2fticket_2eproto); namespace io { namespace deephaven { namespace proto { @@ -170,25 +166,33 @@ class Ticket::_Internal { }; Ticket::Ticket(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.Ticket) } inline PROTOBUF_NDEBUG_INLINE Ticket::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::Ticket& from_msg) : ticket_(arena, from.ticket_), _cached_size_{0} {} Ticket::Ticket( ::google::protobuf::Arena* arena, const Ticket& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE Ticket* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Ticket) } @@ -212,24 +216,34 @@ inline void Ticket::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void Ticket::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Ticket) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.ticket_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* Ticket::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + Ticket::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_Ticket_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &Ticket::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &Ticket::ByteSizeLong, + &Ticket::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(Ticket, _impl_._cached_size_), + false, + }, + &Ticket::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fticket_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* Ticket::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<0, 1, 0, 0, 2> Ticket::_table_ = { { @@ -242,8 +256,12 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> Ticket::_table_ = { 1, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries - &_Ticket_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // bytes ticket = 1; {::_pbi::TcParser::FastBS1, @@ -260,54 +278,73 @@ const ::_pbi::TcParseTable<0, 1, 0, 0, 2> Ticket::_table_ = { }}, }; -::uint8_t* Ticket::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Ticket) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - // bytes ticket = 1; - if (!this->_internal_ticket().empty()) { - const std::string& _s = this->_internal_ticket(); - target = stream->WriteBytesMaybeAliased(1, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Ticket) - return target; -} - -::size_t Ticket::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Ticket) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void Ticket::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.Ticket) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // bytes ticket = 1; - if (!this->_internal_ticket().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_ticket()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData Ticket::_class_data_ = { - Ticket::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* Ticket::GetClassData() const { - return &_class_data_; + _impl_.ticket_.ClearToEmpty(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void Ticket::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* Ticket::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const Ticket& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* Ticket::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const Ticket& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.Ticket) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes ticket = 1; + if (!this_._internal_ticket().empty()) { + const std::string& _s = this_._internal_ticket(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.Ticket) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t Ticket::ByteSizeLong(const MessageLite& base) { + const Ticket& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t Ticket::ByteSizeLong() const { + const Ticket& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.Ticket) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + { + // bytes ticket = 1; + if (!this_._internal_ticket().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this_._internal_ticket()); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void Ticket::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.Ticket) @@ -328,13 +365,7 @@ void Ticket::CopyFrom(const Ticket& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool Ticket::IsInitialized() const { - return true; -} -::_pbi::CachedSize* Ticket::AccessCachedSize() const { - return &_impl_._cached_size_; -} void Ticket::InternalSwap(Ticket* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -344,34 +375,30 @@ void Ticket::InternalSwap(Ticket* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata Ticket::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fticket_2eproto_getter, &descriptor_table_deephaven_2fproto_2fticket_2eproto_once, - file_level_metadata_deephaven_2fproto_2fticket_2eproto[0]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // =================================================================== class TypedTicket::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = + decltype(std::declval()._impl_._has_bits_); static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_._has_bits_); - static const ::io::deephaven::proto::backplane::grpc::Ticket& ticket(const TypedTicket* msg); - static void set_has_ticket(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + 8 * PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_._has_bits_); }; -const ::io::deephaven::proto::backplane::grpc::Ticket& TypedTicket::_Internal::ticket(const TypedTicket* msg) { - return *msg->_impl_.ticket_; -} TypedTicket::TypedTicket(::google::protobuf::Arena* arena) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE SharedCtor(arena); // @@protoc_insertion_point(arena_constructor:io.deephaven.proto.backplane.grpc.TypedTicket) } inline PROTOBUF_NDEBUG_INLINE TypedTicket::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, - const Impl_& from) + const Impl_& from, const ::io::deephaven::proto::backplane::grpc::TypedTicket& from_msg) : _has_bits_{from._has_bits_}, _cached_size_{0}, type_(arena, from.type_) {} @@ -379,16 +406,20 @@ inline PROTOBUF_NDEBUG_INLINE TypedTicket::Impl_::Impl_( TypedTicket::TypedTicket( ::google::protobuf::Arena* arena, const TypedTicket& from) +#if defined(PROTOBUF_CUSTOM_VTABLE) + : ::google::protobuf::Message(arena, _class_data_.base()) { +#else // PROTOBUF_CUSTOM_VTABLE : ::google::protobuf::Message(arena) { +#endif // PROTOBUF_CUSTOM_VTABLE TypedTicket* const _this = this; (void)_this; _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _impl_.ticket_ = (cached_has_bits & 0x00000001u) - ? CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ticket_) - : nullptr; + _impl_.ticket_ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>( + arena, *from._impl_.ticket_) + : nullptr; // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TypedTicket) } @@ -414,30 +445,34 @@ inline void TypedTicket::SharedDtor() { _impl_.~Impl_(); } -PROTOBUF_NOINLINE void TypedTicket::Clear() { -// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TypedTicket) - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ::uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.type_.ClearToEmpty(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - ABSL_DCHECK(_impl_.ticket_ != nullptr); - _impl_.ticket_->Clear(); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -const char* TypedTicket::_InternalParse( - const char* ptr, ::_pbi::ParseContext* ctx) { - ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header); - return ptr; +PROTOBUF_CONSTINIT +PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::google::protobuf::MessageLite::ClassDataFull + TypedTicket::_class_data_ = { + ::google::protobuf::Message::ClassData{ + &_TypedTicket_default_instance_._instance, + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + &TypedTicket::MergeImpl, +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::google::protobuf::Message::GetDeleteImpl(), + ::google::protobuf::Message::GetNewImpl(), + ::google::protobuf::Message::GetClearImpl(), &TypedTicket::ByteSizeLong, + &TypedTicket::_InternalSerialize, +#endif // PROTOBUF_CUSTOM_VTABLE + PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_._cached_size_), + false, + }, + &TypedTicket::kDescriptorMethods, + &descriptor_table_deephaven_2fproto_2fticket_2eproto, + nullptr, // tracker +}; +const ::google::protobuf::MessageLite::ClassData* TypedTicket::GetClassData() const { + ::google::protobuf::internal::PrefetchToLocalCache(&_class_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_class_data_.tc_table); + return _class_data_.base(); } - - PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const ::_pbi::TcParseTable<1, 2, 1, 58, 2> TypedTicket::_table_ = { { @@ -450,8 +485,12 @@ const ::_pbi::TcParseTable<1, 2, 1, 58, 2> TypedTicket::_table_ = { 2, // num_field_entries 1, // num_aux_entries offsetof(decltype(_table_), aux_entries), - &_TypedTicket_default_instance_._instance, + _class_data_.base(), + nullptr, // post_loop_handler ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ // string type = 2; {::_pbi::TcParser::FastUS1, @@ -477,73 +516,102 @@ const ::_pbi::TcParseTable<1, 2, 1, 58, 2> TypedTicket::_table_ = { }}, }; -::uint8_t* TypedTicket::_InternalSerialize( - ::uint8_t* target, - ::google::protobuf::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TypedTicket) - ::uint32_t cached_has_bits = 0; - (void)cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - if (cached_has_bits & 0x00000001u) { - target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( - 1, _Internal::ticket(this), - _Internal::ticket(this).GetCachedSize(), target, stream); - } - - // string type = 2; - if (!this->_internal_type().empty()) { - const std::string& _s = this->_internal_type(); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TypedTicket.type"); - target = stream->WriteStringMaybeAliased(2, _s, target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = - ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TypedTicket) - return target; -} - -::size_t TypedTicket::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TypedTicket) - ::size_t total_size = 0; - +PROTOBUF_NOINLINE void TypedTicket::Clear() { +// @@protoc_insertion_point(message_clear_start:io.deephaven.proto.backplane.grpc.TypedTicket) + ::google::protobuf::internal::TSanWrite(&_impl_); ::uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string type = 2; - if (!this->_internal_type().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->_internal_type()); - } - - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + _impl_.type_.ClearToEmpty(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += - 1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.ticket_); + ABSL_DCHECK(_impl_.ticket_ != nullptr); + _impl_.ticket_->Clear(); } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::google::protobuf::Message::ClassData TypedTicket::_class_data_ = { - TypedTicket::MergeImpl, - nullptr, // OnDemandRegisterArenaDtor -}; -const ::google::protobuf::Message::ClassData* TypedTicket::GetClassData() const { - return &_class_data_; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } -void TypedTicket::MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg) { +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::uint8_t* TypedTicket::_InternalSerialize( + const MessageLite& base, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) { + const TypedTicket& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::uint8_t* TypedTicket::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + const TypedTicket& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(serialize_to_array_start:io.deephaven.proto.backplane.grpc.TypedTicket) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + cached_has_bits = this_._impl_._has_bits_[0]; + // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + if (cached_has_bits & 0x00000001u) { + target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage( + 1, *this_._impl_.ticket_, this_._impl_.ticket_->GetCachedSize(), target, + stream); + } + + // string type = 2; + if (!this_._internal_type().empty()) { + const std::string& _s = this_._internal_type(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "io.deephaven.proto.backplane.grpc.TypedTicket.type"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:io.deephaven.proto.backplane.grpc.TypedTicket) + return target; + } + +#if defined(PROTOBUF_CUSTOM_VTABLE) + ::size_t TypedTicket::ByteSizeLong(const MessageLite& base) { + const TypedTicket& this_ = static_cast(base); +#else // PROTOBUF_CUSTOM_VTABLE + ::size_t TypedTicket::ByteSizeLong() const { + const TypedTicket& this_ = *this; +#endif // PROTOBUF_CUSTOM_VTABLE + // @@protoc_insertion_point(message_byte_size_start:io.deephaven.proto.backplane.grpc.TypedTicket) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void)cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(&this_); + { + // string type = 2; + if (!this_._internal_type().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this_._internal_type()); + } + } + { + // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; + cached_has_bits = + this_._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.ticket_); + } + } + return this_.MaybeComputeUnknownFieldsSize(total_size, + &this_._impl_._cached_size_); + } + +void TypedTicket::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::google::protobuf::MessageLite& from_msg) { auto* const _this = static_cast(&to_msg); auto& from = static_cast(from_msg); + ::google::protobuf::Arena* arena = _this->GetArena(); // @@protoc_insertion_point(class_specific_merge_from_start:io.deephaven.proto.backplane.grpc.TypedTicket) ABSL_DCHECK_NE(&from, _this); ::uint32_t cached_has_bits = 0; @@ -552,10 +620,17 @@ void TypedTicket::MergeImpl(::google::protobuf::Message& to_msg, const ::google: if (!from._internal_type().empty()) { _this->_internal_set_type(from._internal_type()); } - if ((from._impl_._has_bits_[0] & 0x00000001u) != 0) { - _this->_internal_mutable_ticket()->::io::deephaven::proto::backplane::grpc::Ticket::MergeFrom( - from._internal_ticket()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + ABSL_DCHECK(from._impl_.ticket_ != nullptr); + if (_this->_impl_.ticket_ == nullptr) { + _this->_impl_.ticket_ = + ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.ticket_); + } else { + _this->_impl_.ticket_->MergeFrom(*from._impl_.ticket_); + } } + _this->_impl_._has_bits_[0] |= cached_has_bits; _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); } @@ -566,13 +641,7 @@ void TypedTicket::CopyFrom(const TypedTicket& from) { MergeFrom(from); } -PROTOBUF_NOINLINE bool TypedTicket::IsInitialized() const { - return true; -} -::_pbi::CachedSize* TypedTicket::AccessCachedSize() const { - return &_impl_._cached_size_; -} void TypedTicket::InternalSwap(TypedTicket* PROTOBUF_RESTRICT other) { using std::swap; auto* arena = GetArena(); @@ -584,9 +653,7 @@ void TypedTicket::InternalSwap(TypedTicket* PROTOBUF_RESTRICT other) { } ::google::protobuf::Metadata TypedTicket::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_deephaven_2fproto_2fticket_2eproto_getter, &descriptor_table_deephaven_2fproto_2fticket_2eproto_once, - file_level_metadata_deephaven_2fproto_2fticket_2eproto[1]); + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); } // @@protoc_insertion_point(namespace_scope) } // namespace grpc @@ -599,4 +666,8 @@ namespace protobuf { } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type + _static_init2_ PROTOBUF_UNUSED = + (::_pbi::AddDescriptors(&descriptor_table_deephaven_2fproto_2fticket_2eproto), + ::std::false_type{}); #include "google/protobuf/port_undef.inc" diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.h index 30855e48332..c72a2636864 100644 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.h +++ b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.h @@ -1,6 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: deephaven/proto/ticket.proto -// Protobuf C++ Version: 4.25.3 +// Protobuf C++ Version: 5.28.1 #ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fticket_2eproto_2epb_2eh #define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fticket_2eproto_2epb_2eh @@ -10,19 +11,12 @@ #include #include -#include "google/protobuf/port_def.inc" -#if PROTOBUF_VERSION < 4025000 -#error "This file was generated by a newer version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please update" -#error "your headers." -#endif // PROTOBUF_VERSION - -#if 4025003 < PROTOBUF_MIN_PROTOC_VERSION -#error "This file was generated by an older version of protoc which is" -#error "incompatible with your Protocol Buffer headers. Please" -#error "regenerate this file with a newer version of protoc." -#endif // PROTOBUF_MIN_PROTOC_VERSION -#include "google/protobuf/port_undef.inc" +#include "google/protobuf/runtime_version.h" +#if PROTOBUF_VERSION != 5028001 +#error "Protobuf C++ gencode is built with an incompatible version of" +#error "Protobuf C++ headers/runtime. See" +#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp" +#endif #include "google/protobuf/io/coded_stream.h" #include "google/protobuf/arena.h" #include "google/protobuf/arenastring.h" @@ -87,21 +81,18 @@ namespace grpc { // ------------------------------------------------------------------- -class Ticket final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Ticket) */ { +class Ticket final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Ticket) */ { public: inline Ticket() : Ticket(nullptr) {} - ~Ticket() override; - template - explicit PROTOBUF_CONSTEXPR Ticket(::google::protobuf::internal::ConstantInitialized); - - inline Ticket(const Ticket& from) - : Ticket(nullptr, from) {} - Ticket(Ticket&& from) noexcept - : Ticket() { - *this = ::std::move(from); - } - + ~Ticket() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR Ticket( + ::google::protobuf::internal::ConstantInitialized); + + inline Ticket(const Ticket& from) : Ticket(nullptr, from) {} + inline Ticket(Ticket&& from) noexcept + : Ticket(nullptr, std::move(from)) {} inline Ticket& operator=(const Ticket& from) { CopyFrom(from); return *this; @@ -109,9 +100,9 @@ class Ticket final : inline Ticket& operator=(Ticket&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -143,22 +134,17 @@ class Ticket final : } static inline const Ticket* internal_default_instance() { return reinterpret_cast( - &_Ticket_default_instance_); - } - static constexpr int kIndexInFileMessages = - 0; - - friend void swap(Ticket& a, Ticket& b) { - a.Swap(&b); + &_Ticket_default_instance_); } + static constexpr int kIndexInFileMessages = 0; + friend void swap(Ticket& a, Ticket& b) { a.Swap(&b); } inline void Swap(Ticket* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -172,52 +158,69 @@ class Ticket final : // implements Message ---------------------------------------------- - Ticket* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + Ticket* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const Ticket& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const Ticket& from) { - Ticket::MergeImpl(*this, from); - } + void MergeFrom(const Ticket& from) { Ticket::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(Ticket* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.Ticket"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.Ticket"; } + + protected: explicit Ticket(::google::protobuf::Arena* arena); Ticket(::google::protobuf::Arena* arena, const Ticket& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + Ticket(::google::protobuf::Arena* arena, Ticket&& from) noexcept + : Ticket(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTicketFieldNumber = 1, }; @@ -240,12 +243,15 @@ class Ticket final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Ticket) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 0, 1, 0, 0, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_Ticket_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -253,36 +259,34 @@ class Ticket final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const Ticket& from_msg); ::google::protobuf::internal::ArenaStringPtr ticket_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; union { Impl_ _impl_; }; friend struct ::TableStruct_deephaven_2fproto_2fticket_2eproto; -};// ------------------------------------------------------------------- +}; +// ------------------------------------------------------------------- -class TypedTicket final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TypedTicket) */ { +class TypedTicket final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.TypedTicket) */ { public: inline TypedTicket() : TypedTicket(nullptr) {} - ~TypedTicket() override; - template - explicit PROTOBUF_CONSTEXPR TypedTicket(::google::protobuf::internal::ConstantInitialized); - - inline TypedTicket(const TypedTicket& from) - : TypedTicket(nullptr, from) {} - TypedTicket(TypedTicket&& from) noexcept - : TypedTicket() { - *this = ::std::move(from); - } - + ~TypedTicket() PROTOBUF_FINAL; + template + explicit PROTOBUF_CONSTEXPR TypedTicket( + ::google::protobuf::internal::ConstantInitialized); + + inline TypedTicket(const TypedTicket& from) : TypedTicket(nullptr, from) {} + inline TypedTicket(TypedTicket&& from) noexcept + : TypedTicket(nullptr, std::move(from)) {} inline TypedTicket& operator=(const TypedTicket& from) { CopyFrom(from); return *this; @@ -290,9 +294,9 @@ class TypedTicket final : inline TypedTicket& operator=(TypedTicket&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE && GetArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE ) { InternalSwap(&from); } else { @@ -324,22 +328,17 @@ class TypedTicket final : } static inline const TypedTicket* internal_default_instance() { return reinterpret_cast( - &_TypedTicket_default_instance_); - } - static constexpr int kIndexInFileMessages = - 1; - - friend void swap(TypedTicket& a, TypedTicket& b) { - a.Swap(&b); + &_TypedTicket_default_instance_); } + static constexpr int kIndexInFileMessages = 1; + friend void swap(TypedTicket& a, TypedTicket& b) { a.Swap(&b); } inline void Swap(TypedTicket* other) { if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetArena() != nullptr && - GetArena() == other->GetArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP +#ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() != nullptr && GetArena() == other->GetArena()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() == other->GetArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP InternalSwap(other); } else { ::google::protobuf::internal::GenericSwap(this, other); @@ -353,52 +352,69 @@ class TypedTicket final : // implements Message ---------------------------------------------- - TypedTicket* New(::google::protobuf::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + TypedTicket* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; void CopyFrom(const TypedTicket& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom( const TypedTicket& from) { - TypedTicket::MergeImpl(*this, from); - } + void MergeFrom(const TypedTicket& from) { TypedTicket::MergeImpl(*this, from); } + private: - static void MergeImpl(::google::protobuf::Message& to_msg, const ::google::protobuf::Message& from_msg); + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); + public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL; + #if defined(PROTOBUF_CUSTOM_VTABLE) + private: + static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg); + static ::uint8_t* _InternalSerialize( + const MessageLite& msg, ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream); + public: + ::size_t ByteSizeLong() const { return ByteSizeLong(*this); } + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + return _InternalSerialize(*this, target, stream); + } + #else // PROTOBUF_CUSTOM_VTABLE ::size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::google::protobuf::internal::ParseContext* ctx) final; ::uint8_t* _InternalSerialize( - ::uint8_t* target, ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + #endif // PROTOBUF_CUSTOM_VTABLE int GetCachedSize() const { return _impl_._cached_size_.Get(); } private: - ::google::protobuf::internal::CachedSize* AccessCachedSize() const final; void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); void InternalSwap(TypedTicket* other); - - private: + private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { - return "io.deephaven.proto.backplane.grpc.TypedTicket"; - } - protected: + static ::absl::string_view FullMessageName() { return "io.deephaven.proto.backplane.grpc.TypedTicket"; } + + protected: explicit TypedTicket(::google::protobuf::Arena* arena); TypedTicket(::google::protobuf::Arena* arena, const TypedTicket& from); - public: - - static const ClassData _class_data_; - const ::google::protobuf::Message::ClassData*GetClassData() const final; - - ::google::protobuf::Metadata GetMetadata() const final; + TypedTicket(::google::protobuf::Arena* arena, TypedTicket&& from) noexcept + : TypedTicket(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL; + static const ::google::protobuf::Message::ClassDataFull _class_data_; + public: + ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- - enum : int { kTypeFieldNumber = 2, kTicketFieldNumber = 1, @@ -437,12 +453,15 @@ class TypedTicket final : // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TypedTicket) private: class _Internal; - friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 1, 58, 2> _table_; + + static constexpr const void* _raw_default_instance_ = + &_TypedTicket_default_instance_; + friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; template @@ -450,13 +469,13 @@ class TypedTicket final : using InternalArenaConstructable_ = void; using DestructorSkippable_ = void; struct Impl_ { - - inline explicit constexpr Impl_( - ::google::protobuf::internal::ConstantInitialized) noexcept; - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena); - inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena, const Impl_& from); + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const TypedTicket& from_msg); ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr type_; @@ -485,7 +504,7 @@ class TypedTicket final : // bytes ticket = 1; inline void Ticket::clear_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticket_.ClearToEmpty(); } inline const std::string& Ticket::ticket() const @@ -496,8 +515,7 @@ inline const std::string& Ticket::ticket() const template inline PROTOBUF_ALWAYS_INLINE void Ticket::set_ticket(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticket_.SetBytes(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Ticket.ticket) } @@ -507,26 +525,24 @@ inline std::string* Ticket::mutable_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& Ticket::_internal_ticket() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.ticket_.Get(); } inline void Ticket::_internal_set_ticket(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticket_.Set(value, GetArena()); } inline std::string* Ticket::_internal_mutable_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.ticket_.Mutable( GetArena()); } inline std::string* Ticket::release_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Ticket.ticket) return _impl_.ticket_.Release(); } inline void Ticket::set_allocated_ticket(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.ticket_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.ticket_.IsDefault()) { @@ -547,12 +563,12 @@ inline bool TypedTicket::has_ticket() const { return value; } inline void TypedTicket::clear_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.ticket_ != nullptr) _impl_.ticket_->Clear(); _impl_._has_bits_[0] &= ~0x00000001u; } inline const ::io::deephaven::proto::backplane::grpc::Ticket& TypedTicket::_internal_ticket() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); const ::io::deephaven::proto::backplane::grpc::Ticket* p = _impl_.ticket_; return p != nullptr ? *p : reinterpret_cast(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); } @@ -561,7 +577,7 @@ inline const ::io::deephaven::proto::backplane::grpc::Ticket& TypedTicket::ticke return _internal_ticket(); } inline void TypedTicket::unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (GetArena() == nullptr) { delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); } @@ -574,7 +590,7 @@ inline void TypedTicket::unsafe_arena_set_allocated_ticket(::io::deephaven::prot // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) } inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::release_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_._has_bits_[0] &= ~0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.ticket_; @@ -593,7 +609,7 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::release_tic return released; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::unsafe_arena_release_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) _impl_._has_bits_[0] &= ~0x00000001u; @@ -602,28 +618,28 @@ inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::unsafe_aren return temp; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::_internal_mutable_ticket() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - _impl_._has_bits_[0] |= 0x00000001u; + ::google::protobuf::internal::TSanWrite(&_impl_); if (_impl_.ticket_ == nullptr) { - auto* p = CreateMaybeMessage<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); + auto* p = ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(p); } return _impl_.ticket_; } inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::mutable_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { + _impl_._has_bits_[0] |= 0x00000001u; ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_ticket(); // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) return _msg; } inline void TypedTicket::set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { ::google::protobuf::Arena* message_arena = GetArena(); - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); if (message_arena == nullptr) { - delete reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(_impl_.ticket_); + delete (_impl_.ticket_); } if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value)->GetArena(); + ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); if (message_arena != submessage_arena) { value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); } @@ -638,7 +654,7 @@ inline void TypedTicket::set_allocated_ticket(::io::deephaven::proto::backplane: // string type = 2; inline void TypedTicket::clear_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.ClearToEmpty(); } inline const std::string& TypedTicket::type() const @@ -649,8 +665,7 @@ inline const std::string& TypedTicket::type() const template inline PROTOBUF_ALWAYS_INLINE void TypedTicket::set_type(Arg_&& arg, Args_... args) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(static_cast(arg), args..., GetArena()); // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TypedTicket.type) } @@ -660,26 +675,24 @@ inline std::string* TypedTicket::mutable_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { return _s; } inline const std::string& TypedTicket::_internal_type() const { - PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.type_.Get(); } inline void TypedTicket::_internal_set_type(const std::string& value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.Set(value, GetArena()); } inline std::string* TypedTicket::_internal_mutable_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); - ; + ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.type_.Mutable( GetArena()); } inline std::string* TypedTicket::release_type() { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TypedTicket.type) return _impl_.type_.Release(); } inline void TypedTicket::set_allocated_type(std::string* value) { - PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race); + ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.type_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING if (_impl_.type_.IsDefault()) { diff --git a/docker/registry/cpp-clients-multi-base/gradle.properties b/docker/registry/cpp-clients-multi-base/gradle.properties index 02d12f80abd..200babd3f69 100644 --- a/docker/registry/cpp-clients-multi-base/gradle.properties +++ b/docker/registry/cpp-clients-multi-base/gradle.properties @@ -1,5 +1,5 @@ io.deephaven.project.ProjectType=DOCKER_REGISTRY deephaven.registry.imageName=ghcr.io/deephaven/cpp-clients-multi-base:latest # When the image version changes, remember to update cpp-client/build-dependencies.sh to match the image's content -deephaven.registry.imageId=ghcr.io/deephaven/cpp-clients-multi-base@sha256:852925d8939b19344f15b9e752e9ed82724c7009f75df8a33912d85cb73e630e +deephaven.registry.imageId=ghcr.io/deephaven/cpp-clients-multi-base@sha256:a383a604611f08d7cdb4a5ab93af529697834719235324e491cb147825610e5c deephaven.registry.platform=linux/amd64